[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add wine-staging.
From: |
Rutger Helling |
Subject: |
01/01: gnu: Add wine-staging. |
Date: |
Sun, 24 Dec 2017 09:09:33 -0500 (EST) |
rhelling pushed a commit to branch master
in repository guix.
commit 7866d8c81985ee70ae79e1dbcd22d049e1fd8ba5
Author: Nicolas Goaziou <address@hidden>
Date: Sun Dec 24 10:36:35 2017 +0100
gnu: Add wine-staging.
* gnu/packages/wine.scm (wine-staging): New variable.
Signed-off-by: Rutger Helling <address@hidden>
---
gnu/packages/wine.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm
index b4f6573..9c99dfd 100644
--- a/gnu/packages/wine.scm
+++ b/gnu/packages/wine.scm
@@ -183,3 +183,31 @@ integrate Windows applications into your desktop.")
(base32
"0g6cwjyqwc660w33453aklh3hpc0b8rrb88dryn23ah6wannvagg"))))))
+(define-public wine-staging
+ (package
+ (inherit wine)
+ (name "wine-staging")
+ (version "2.21")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/wine-compholio/wine-patched/archive/"
+ "staging-" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1pjaxj7h3q6y356np908fvsx0bf7yx5crqvgl4hza6gfssdmsr5r"))))
+ (synopsis "Implementation of the Windows API (staging branch)")
+ (description "Wine-Staging is the testing area of Wine. It
+contains bug fixes and features, which have not been integrated into
+the development branch yet. The idea of Wine-Staging is to provide
+experimental features faster to end users and to give developers the
+possibility to discuss and improve their patches before they are
+integrated into the main branch.")
+ (home-page "https://wine-staging.com")
+ ;; In addition to the regular Wine license (lgpl2.1+), Wine-Staging
+ ;; provides Liberation and WenQuanYi Micro Hei fonts. Those use
+ ;; different licenses. In particular, the latter is licensed under
+ ;; both GPL3+ and Apache 2 License.
+ (license
+ (list license:lgpl2.1+ license:silofl1.1 license:gpl3+ license:asl2.0))))