[PATCH 1/2]: nongnu: Add wine-mono.

* nongnu/packages/wine-xyz.scm: New file.
This commit is contained in:
Sughosha 2023-06-10 12:46:23 +00:00
parent 3d3b323390
commit 71b92d36ce

View File

@ -0,0 +1,32 @@
;;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Copyright © 2023 Sughosha <sughosha@proton.me>
(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)))