[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: wine: Update to 5.3.
From: |
guix-commits |
Subject: |
branch master updated: gnu: wine: Update to 5.3. |
Date: |
Tue, 03 Mar 2020 11:27:08 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d810403 gnu: wine: Update to 5.3.
d810403 is described below
commit d8104034bce470c5bbf929f53844124b09e9ea73
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Tue Mar 3 17:26:37 2020 +0100
gnu: wine: Update to 5.3.
* gnu/packages/wine.scm (wine): Update to 5.3.
[native-inputs]: Re-order inputs alphabetically.
---
gnu/packages/wine.scm | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm
index 5eb8133..27de43a 100644
--- a/gnu/packages/wine.scm
+++ b/gnu/packages/wine.scm
@@ -76,21 +76,26 @@
(define-public wine
(package
(name "wine")
- (version "5.0")
+ (version "5.3")
(source
(origin
(method url-fetch)
- (uri (string-append "https://dl.winehq.org/wine/source/"
- (version-major+minor version)
- "/wine-" version ".tar.xz"))
+ (uri (let ((dir (string-append
+ (version-major version)
+ (if (string-suffix? ".0" (version-major+minor version))
+ ".0/"
+ ".x/")))))
+ (string-append "https://dl.winehq.org/wine/source/" dir
+ "wine-" version ".tar.xz"))
(sha256
- (base32 "1d0kcy338radq07hrnzcpc9lc9j2fvzjh37q673002x8d6x5058q"))))
+ (base32 "1pkzj3656ad0vmc7ciwfzn45lb2kxwbyymfwnqaa105dicicf6wv"))))
(build-system gnu-build-system)
- (native-inputs `(("pkg-config" ,pkg-config)
- ("gettext" ,gettext-minimal)
- ("flex" ,flex)
- ("bison" ,bison)
- ("perl" ,perl)))
+ (native-inputs
+ `(("bison" ,bison)
+ ("flex" ,flex)
+ ("gettext" ,gettext-minimal)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)))
(inputs
`(("alsa-lib" ,alsa-lib)
("dbus" ,dbus)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: wine: Update to 5.3.,
guix-commits <=