summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorHerwig Hochleitner <herwig@bendlas.net>2017-11-09 19:57:49 +0100
committerHerwig Hochleitner <herwig@bendlas.net>2017-12-30 14:58:50 +0100
commit5fdf1b972a945705a271948f2ca09e56412f941f (patch)
tree18be5943ddff8b581634f3bebfc39968d6163a65 /pkgs
parentea4320d348ef5ec573edc291d1aa1b80c21621d8 (diff)
downloadnixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.tar
nixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.tar.gz
nixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.tar.bz2
nixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.tar.lz
nixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.tar.xz
nixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.tar.zst
nixpkgs-5fdf1b972a945705a271948f2ca09e56412f941f.zip
wine: update stable and unstable
2.0.2 -> 2.0.3
2.19 -> 2.20

additional comments for the update procedure
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/misc/emulators/wine/sources.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix
index 39bd26714e7..cb0561f7655 100644
--- a/pkgs/misc/emulators/wine/sources.nix
+++ b/pkgs/misc/emulators/wine/sources.nix
@@ -1,4 +1,11 @@
 { pkgs ? import <nixpkgs> {} }:
+## we default to importing <nixpkgs> here, so that you can use
+## a simple shell command to insert new sha256's into this file
+## e.g. with emacs C-u M-x shell-command
+##
+##     nix-prefetch-url sources.nix -A {stable{,.mono,.gecko64,.gecko32}, unstable, staging, winetricks}
+
+# here we wrap fetchurl and fetchFromGitHub, in order to be able to pass additional args around it
 let fetchurl = args@{url, sha256, ...}:
   pkgs.fetchurl { inherit url sha256; } // args;
     fetchFromGitHub = args@{owner, repo, rev, sha256, ...}:
@@ -6,9 +13,9 @@ let fetchurl = args@{url, sha256, ...}:
 in rec {
 
   stable = fetchurl rec {
-    version = "2.0.2";
+    version = "2.0.3";
     url = "https://dl.winehq.org/wine/source/2.0/wine-${version}.tar.xz";
-    sha256 = "16iwf48cfi39aqyy8131jz4x7lr551c9yc0mnks7g24j77sq867p";
+    sha256 = "0mmyc94r5drffir8zr8jx6iawhgfzjk96fj494aa18vhz1jcc4d8";
 
     ## see http://wiki.winehq.org/Gecko
     gecko32 = fetchurl rec {