From f84b8178aa2f9b03c42d6ddc3379b7f5adb65b02 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 23 Apr 2017 20:21:26 +0200 Subject: [PATCH] wine-staging: Fix SHA256 hash In c6b3c66277ff97d77d51c3a822458f19982b922a, the unstable version has been bumped to 2.6. Unfortunately the staging source is re-using the version attribute from the unstable source and thus has been bumped as well. I have built wineStaging on x86_64-linux and it now succeeds. Signed-off-by: aszlig Cc: @FRidh --- pkgs/misc/emulators/wine/sources.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index 42d99a39eee8..8c04b4fc433c 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -31,6 +31,7 @@ in rec { }; unstable = fetchurl rec { + # NOTE: Don't forget to change the SHA256 for staging as well. version = "2.6"; url = "https://dl.winehq.org/wine/source/2.x/wine-${version}.tar.xz"; sha256 = "1h5ajw50fax2pg9p4wch6824zxdd85g2gh9nkbllfxj3ixsn9zz6"; @@ -39,7 +40,7 @@ in rec { staging = fetchFromGitHub rec { inherit (unstable) version; - sha256 = "1l0sjbsajr4m7w3ar2ljwr3ffmwyv57g85a068ard3v8fv4nil22"; + sha256 = "1j1fsq7pb7rxi7ppagrk93gmg5wk3anr9js0civxiqd3h8d4lsz2"; owner = "wine-compholio"; repo = "wine-staging"; rev = "v${version}";