summary refs log tree commit diff
diff options
context:
space:
mode:
authorStefan Frijters <sfrijters@gmail.com>2023-05-01 15:17:18 +0200
committerMartino Fontana <tinozzo123@tutanota.com>2023-06-11 16:29:15 +0200
commit7c37217a76ffc97c7dc5535d919f22dcc71f0d9b (patch)
treef446a1b5cef2a9fa189bdc315db4f7eca703df11
parenta9428cb1d996e5c6ea033a0d84499555747d5381 (diff)
downloadnixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.tar
nixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.tar.gz
nixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.tar.bz2
nixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.tar.lz
nixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.tar.xz
nixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.tar.zst
nixpkgs-7c37217a76ffc97c7dc5535d919f22dcc71f0d9b.zip
winePackages.{unstable,staging}: 8.5 -> 8.10
-rw-r--r--pkgs/applications/emulators/wine/sources.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/emulators/wine/sources.nix b/pkgs/applications/emulators/wine/sources.nix
index 78bc98cb20f..e35428a5a0d 100644
--- a/pkgs/applications/emulators/wine/sources.nix
+++ b/pkgs/applications/emulators/wine/sources.nix
@@ -69,28 +69,28 @@ in rec {
 
   unstable = fetchurl rec {
     # NOTE: Don't forget to change the hash for staging as well.
-    version = "8.5";
+    version = "8.10";
     url = "https://dl.winehq.org/wine/source/8.x/wine-${version}.tar.xz";
-    hash = "sha256-wJdmQBswu0JeEy4RSyba+kJ2SX5AzL4V+3fnUfsJvhc=";
+    hash = "sha256-xPNt1zwXbO+OcBbKQTnudvW0mKSv1+21F+FMDVOUc28=";
     inherit (stable) patches;
 
     ## see http://wiki.winehq.org/Gecko
     gecko32 = fetchurl rec {
-      version = "2.47.3";
+      version = "2.47.4";
       url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86.msi";
-      hash = "sha256-5bmwbTzjVWRqjS5y4ETjfh4MjRhGTrGYWtzRh6f0jgE=";
+      hash = "sha256-Js7MR3BrCRkI9/gUvdsHTGG+uAYzGOnvxaf3iYV3k9Y=";
     };
     gecko64 = fetchurl rec {
-      version = "2.47.3";
+      version = "2.47.4";
       url = "https://dl.winehq.org/wine/wine-gecko/${version}/wine-gecko-${version}-x86_64.msi";
-      hash = "sha256-pT7pVDkrbR/j1oVF9uTiqXr7yNyLA6i0QzSVRc4TlnU=";
+      hash = "sha256-5ZC32YijLWqkzx2Ko6o9M3Zv3Uz0yJwtzCCV7LKNBm8=";
     };
 
     ## see http://wiki.winehq.org/Mono
     mono = fetchurl rec {
-      version = "7.4.0";
+      version = "8.0.0";
       url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi";
-      hash = "sha256-ZBP/Mo679+x2icZI/rNUbYEC3thlB50fvwMxsUs6sOw=";
+      hash = "sha256-dbP0XcodyJhX/p6TLaeHEPZMxtSe8asMcjoXcIW0cRs=";
     };
 
     updateScript = writeShellScript "update-wine-unstable" ''
@@ -117,7 +117,7 @@ in rec {
   staging = fetchFromGitHub rec {
     # https://github.com/wine-staging/wine-staging/releases
     inherit (unstable) version;
-    hash = "sha256-vHV7x2U9B4P0E4tcQuMXHSS4NqN7rlnhC6v/t+0Qlh0=";
+    hash = "sha256-4EHzverfPu4PoRvbeH/iaGqNoXk6XgneDpKOuMf9P1g=";
     owner = "wine-staging";
     repo = "wine-staging";
     rev = "v${version}";