summary refs log tree commit diff
path: root/pkgs/misc/emulators/wine/sources.nix
diff options
context:
space:
mode:
authorStefan Frijters <sfrijters@gmail.com>2022-02-13 11:55:02 +0100
committerStefan Frijters <sfrijters@gmail.com>2022-02-13 11:55:02 +0100
commit3507b350065e6e25e769a153f8a0b16c694f472e (patch)
tree388aea9dd5e491fa4a7b9f18cc4e0c193cce7c99 /pkgs/misc/emulators/wine/sources.nix
parentb931937e841e72a2e17defd7cf0d700c26ea01cc (diff)
downloadnixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.tar
nixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.tar.gz
nixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.tar.bz2
nixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.tar.lz
nixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.tar.xz
nixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.tar.zst
nixpkgs-3507b350065e6e25e769a153f8a0b16c694f472e.zip
wine{Unstable,Staging}: 7.1 -> 7.2
Diffstat (limited to 'pkgs/misc/emulators/wine/sources.nix')
-rw-r--r--pkgs/misc/emulators/wine/sources.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix
index 5dcb0295ffe..b98aceddbd4 100644
--- a/pkgs/misc/emulators/wine/sources.nix
+++ b/pkgs/misc/emulators/wine/sources.nix
@@ -46,16 +46,22 @@ in rec {
 
   unstable = fetchurl rec {
     # NOTE: Don't forget to change the SHA256 for staging as well.
-    version = "7.1";
+    version = "7.2";
     url = "https://dl.winehq.org/wine/source/7.x/wine-${version}.tar.xz";
-    sha256 = "sha256-ETwTDu0vMlbJMv+7f0gqBTPtOsXGLJeWIqKm33+fY2o=";
-    inherit (stable) gecko32 gecko64 mono patches;
+    sha256 = "sha256-38ZBUjyNvGZBaLYXREFjPZcSdUVr9n3i3KqZyNql7hU=";
+    inherit (stable) gecko32 gecko64 patches;
+
+    mono = fetchurl rec {
+      version = "7.1.1";
+      url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
+      sha256 = "sha256-ncjlYDt7xkNU65SuTqD2ghQkdno/9E/w0Z40akkMEeo=";
+    };
   };
 
   staging = fetchFromGitHub rec {
     # https://github.com/wine-staging/wine-staging/releases
     inherit (unstable) version;
-    sha256 = "sha256-exMQG/T6ZJggd6S1yN4wyWuNqr6GjjdG4VutGUcqZhE=";
+    sha256 = "sha256-Ec9rienlsDg+2QkJqPrGorDb5NycG1/iGWhnqLZOrwg=";
     owner = "wine-staging";
     repo = "wine-staging";
     rev = "v${version}";