diff options
author | Rutger Helling <rhelling@mykolab.com> | 2017-06-24 08:59:27 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-06-26 01:52:30 -0400 |
commit | cb76c4e316e795a0fff2b8f1535938f028dfb4d6 (patch) | |
tree | 03f676f0517cf4267294e55894dab27285c0c098 /gnu/packages/wine.scm | |
parent | 91cf5fdacd79182ae10ad5f1441f866591d272ec (diff) | |
download | patches-cb76c4e316e795a0fff2b8f1535938f028dfb4d6.tar patches-cb76c4e316e795a0fff2b8f1535938f028dfb4d6.tar.gz |
gnu: wine: Update to 2.11.
* gnu/packages/wine.scm (wine): Update to 2.11
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/wine.scm')
-rw-r--r-- | gnu/packages/wine.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm index 006483e798..1fb2c542cf 100644 --- a/gnu/packages/wine.scm +++ b/gnu/packages/wine.scm @@ -55,14 +55,14 @@ (define-public wine (package (name "wine") - (version "2.10") + (version "2.11") (source (origin (method url-fetch) (uri (string-append "https://dl.winehq.org/wine/source/2.x" "/wine-" version ".tar.xz")) (sha256 (base32 - "0ygiaayi2mv6jl450d03i4x2gd2bg3mwk3s2pxas87g8sbzzg3a8")))) + "0g6cwjyqwc660w33453aklh3hpc0b8rrb88dryn23ah6wannvagg")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("gettext" ,gettext-minimal) @@ -105,8 +105,7 @@ ("unixodbc" ,unixodbc) ("zlib" ,zlib))) (arguments - `(;; The 64-bit build of Wine is reportedly less useful or even usable, - ;; so force a 32-bit build (under the assumption that this package is + `(;; Force a 32-bit build (under the assumption that this package is ;; being used on an IA32-compatible architecture.) #:system "i686-linux" |