From 71b92d36cec52e2f4694c71982dc55497c9fc392 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Sat, 10 Jun 2023 12:46:23 +0000 Subject: [PATCH] [PATCH 1/2]: nongnu: Add wine-mono. * nongnu/packages/wine-xyz.scm: New file. --- nongnu/packages/wine-xyz.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 nongnu/packages/wine-xyz.scm 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)))