wine-staging: 8.17 -> 8.17.1

Upstream rebased the patches wrong, so here's a hotfix release.

K900 456c7870 546637df

+3 -3
+2 -2
pkgs/applications/emulators/wine/sources.nix
··· 116 116 117 117 staging = fetchFromGitHub rec { 118 118 # https://github.com/wine-staging/wine-staging/releases 119 - inherit (unstable) version; 120 - hash = "sha256-8uxXyt3zu+LuFJbTQD+bv+Zmnzb18Dhlo3ign1lFT2s="; 119 + version = "8.17.1"; 120 + hash = "sha256-h36NDFYsI0y8TG41IH10IdF4QEuBkBewQ3knZ9iwDpg="; 121 121 owner = "wine-staging"; 122 122 repo = "wine-staging"; 123 123 rev = "v${version}";
+1 -1
pkgs/applications/emulators/wine/staging.nix
··· 5 5 let patch = (callPackage ./sources.nix {}).staging; 6 6 build-inputs = pkgNames: extra: 7 7 (mkBuildInputs wineUnstable.pkgArches pkgNames) ++ extra; 8 - in assert lib.getVersion wineUnstable == patch.version; 8 + in assert lib.versions.majorMinor wineUnstable.version == lib.versions.majorMinor patch.version; 9 9 10 10 (lib.overrideDerivation wineUnstable (self: { 11 11 buildInputs = build-inputs [ "perl" "util-linux" "autoconf" "gitMinimal" ] self.buildInputs;