about summary refs log tree commit diff
path: root/pkgs/misc/emulators/wine
diff options
context:
space:
mode:
authorHerwig Hochleitner <herwig@bendlas.net>2019-10-12 13:21:59 +0200
committerHerwig Hochleitner <herwig@bendlas.net>2019-10-12 14:57:28 +0200
commit39b7c7e6887c6408a4483967a0f5868d01aed097 (patch)
treea0d9a1975d12965f0d02065a313258e4ee2cdb95 /pkgs/misc/emulators/wine
parent234ea27d52e1ec4995ae2c794f94ca933e68f2e5 (diff)
downloadnixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.tar
nixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.tar.gz
nixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.tar.bz2
nixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.tar.lz
nixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.tar.xz
nixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.tar.zst
nixlib-39b7c7e6887c6408a4483967a0f5868d01aed097.zip
wine: unstable 4.16 -> 4.17
also mono 4.9.2 -> 4.9.3
Diffstat (limited to 'pkgs/misc/emulators/wine')
-rw-r--r--pkgs/misc/emulators/wine/sources.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix
index 7b26bf44cdc2..af71e8fdc73d 100644
--- a/pkgs/misc/emulators/wine/sources.nix
+++ b/pkgs/misc/emulators/wine/sources.nix
@@ -31,24 +31,24 @@ in rec {
 
     ## see http://wiki.winehq.org/Mono
     mono = fetchurl rec {
-      version = "4.9.2";
+      version = "4.9.3";
       url = "http://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}.msi";
-      sha256 = "0x7z0216j21bzc9v1q283qlsvbfzn92yiaf26ilh6bd7zib4c7xr";
+      sha256 = "0va7nbhvfb52g78s9k3zc6xxwsn5whfyn333s6fdxycp8rkvgxkw";
     };
   };
 
   unstable = fetchurl rec {
     # NOTE: Don't forget to change the SHA256 for staging as well.
-    version = "4.16";
+    version = "4.17";
     url = "https://dl.winehq.org/wine/source/4.x/wine-${version}.tar.xz";
-    sha256 = "17qxbddv23ibbayw1ai984m0dlq63cgplms2jhsc09incjhafywd";
+    sha256 = "1bmj4l84q29h4km5ab5zzypns3mpf7pizybcpab6jj47cr1s303l";
     inherit (stable) mono gecko32 gecko64;
   };
 
   staging = fetchFromGitHub rec {
     # https://github.com/wine-staging/wine-staging/releases
     inherit (unstable) version;
-    sha256 = "0zkvwl6rxr6xcqk4a3h43cak67w6bcyqqnajz6azif07ir3z1c61";
+    sha256 = "0cb0w6jwqs70854g1ixfj8r53raln0spyy1l96qv72ymbhzc353h";
     owner = "wine-staging";
     repo = "wine-staging";
     rev = "v${version}";