about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-12-21 22:06:29 +0000
committerGitHub <noreply@github.com>2021-12-21 22:06:29 +0000
commitaada45dcb08c27602c3d78bf13b6e718471c9159 (patch)
tree285c091a2c11f11bee447e8a070b6c1d94c9f3f5 /pkgs/misc
parent9e1b85b91fe00e267fcc2d9fe1aafa1715e51d42 (diff)
parent9917520058bae00601ca680f64ec54d64ce35fb6 (diff)
Merge pull request #150221 from SFrijters/wine-7.0-rc1
wine{Unstable,Staging}: 6.22 -> 7.0-rc2, fix mono version
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/wine/sources.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix
index 167e881901b9d..41b019461a811 100644
--- a/pkgs/misc/emulators/wine/sources.nix
+++ b/pkgs/misc/emulators/wine/sources.nix
@@ -44,16 +44,16 @@ in rec {
 
   unstable = fetchurl rec {
     # NOTE: Don't forget to change the SHA256 for staging as well.
-    version = "6.22";
-    url = "https://dl.winehq.org/wine/source/6.x/wine-${version}.tar.xz";
-    sha256 = "sha256-gmBCoYGph5cyo9rLv4FnYF8wUpG/z6r16qDslSXXZO8=";
+    version = "7.0-rc2";
+    url = "https://dl.winehq.org/wine/source/7.0/wine-${version}.tar.xz";
+    sha256 = "sha256-D92OOa9fFdBd0wZbtRLz9oOhhJ3AtHcSZP0EaWyW7X0=";
     inherit (stable) gecko32 gecko64;
 
     ## see http://wiki.winehq.org/Mono
     mono = fetchurl rec {
-      version = "6.4.0";
+      version = "7.0.0";
       url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
-      sha256 = "sha256-24uF87kQWQ9hrb+gAFqZXWE+KZocxz0AVT1w3IEBDjY=";
+      sha256 = "sha256-s35vyeWQ5YIkPcJdcqX8wzDDp5cN/cmKeoHSOEW6iQA=";
     };
 
     patches = [
@@ -65,7 +65,7 @@ in rec {
   staging = fetchFromGitHub rec {
     # https://github.com/wine-staging/wine-staging/releases
     inherit (unstable) version;
-    sha256 = "sha256-dGyaos6xITiAQdU65/PJQKRl5Rr5xBpgQhXii9iwb+E=";
+    sha256 = "sha256-UkwvKKRXyFjLfYbL8Ienpp5pxUzMQY1bEyAkoP7Xdz4=";
     owner = "wine-staging";
     repo = "wine-staging";
     rev = "v${version}";