diff --git a/nongnu/packages/wine-xyz.scm b/nongnu/packages/wine-xyz.scm new file mode 100644 index 0000000..358413f --- /dev/null +++ b/nongnu/packages/wine-xyz.scm @@ -0,0 +1,32 @@ +;;; SPDX-License-Identifier: GPL-3.0-or-later +;;; Copyright © 2023 Sughosha + +(define-module (nongnu packages wine-xyz) + #:use-module (gnu packages wine) + #:use-module (guix download) + #:use-module (guix build-system copy) + #:use-module (guix gexp) + #:use-module ((guix licenses) :prefix license:) + #:use-module (guix packages)) + +(define-public wine-mono + (package + (name "wine-mono") + (version "8.0.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://dl.winehq.org/wine/wine-mono/" version + "/wine-mono-" version "-x86.tar.xz")) + (sha256 + (base32 + "0xvsrhl22yzf9mljwvj0n8mk7ynwgag7blfriqnwd7dph1kxgiql")))) + (build-system copy-build-system) + (arguments + (list #:install-plan + #~(list (list "." "share/wine/mono/")))) + (home-page "https://wiki.winehq.org/Mono") + (synopsis "Implementation of the .NET Framework") + (description + "Mono is an implementation of the .NET Framework for Wine.") + (license license:expat)))