guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#27546] [PATCH] Add wine stable release


From: Nicolas Goaziou
Subject: [bug#27546] [PATCH] Add wine stable release
Date: Sat, 01 Jul 2017 13:53:26 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)

Hello,

Not so long ago, I realized, painfully, we were distributing development
version of wine (currently 2.11), but not the stable one (currently
2.0.1).

The following patch attempts to provide the missing release. Ideally,
I think this variable should be named "wine" and the other "wine-dev" or
some such. However, so as to limit fuss, this patches leaves "wine"
as-is, and introduce "wine-2.0.1" instead.


Regards,

-- 
Nicolas Goaziou                                                0x80A93738
>From 24e94a9109717df9aca8c1f8c4810e2f57e5a682 Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou <address@hidden>
Date: Sat, 1 Jul 2017 13:42:34 +0200
Subject: [PATCH] gnu: wine: Add stable release

* gnu/packages/wine.scm (wine-2.0.1): New variable.
---
 gnu/packages/wine.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm
index 1fb2c542c..e3ca11c40 100644
--- a/gnu/packages/wine.scm
+++ b/gnu/packages/wine.scm
@@ -147,6 +147,18 @@ integrate Windows applications into your desktop.")
     ;; effect as building on i686 anyway.
     (supported-systems '("i686-linux" "x86_64-linux"))))
 
+(define-public wine-2.0.1
+  (package (inherit wine)
+    (name "wine")
+    (version "2.0.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://dl.winehq.org/wine/source/2.0";
+                                  "/wine-" version ".tar.xz"))
+              (sha256
+               (base32
+                "10qm0xxqzvl4y3mhvaxcaacrcs8d5kdz5wf0gbxpmp36wnm4xyvc"))))))
+
 (define-public wine64
   (package
     (inherit wine)
-- 
2.13.2


reply via email to

[Prev in Thread] Current Thread [Next in Thread]