summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-04-25 14:06:51 +0200
committerRobin Gloster <mail@glob.in>2017-08-04 04:09:19 +0200
commit07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e (patch)
tree971f89078ba1de10f7bad11a5e7745bb02074801 /pkgs/applications
parent82d4963ab5ff7f1975a8e0ca1070a14505face14 (diff)
downloadnixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.tar
nixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.tar.gz
nixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.tar.bz2
nixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.tar.lz
nixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.tar.xz
nixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.tar.zst
nixlib-07106fb5084f3e3e9e5e3b7d3682a3ddbe245d7e.zip
mpv: bump waf version to 1.9.8
The bootstrap.py file from mpv downloads this exact version.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/mpv/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix
index d21a8ab6dcc9..27ce61eec6d1 100644
--- a/pkgs/applications/video/mpv/default.nix
+++ b/pkgs/applications/video/mpv/default.nix
@@ -73,11 +73,11 @@ assert drmSupport         -> available libdrm;
 let
   # Purity: Waf is normally downloaded by bootstrap.py, but
   # for purity reasons this behavior should be avoided.
-  wafVersion = "1.8.12";
+  wafVersion = "1.9.8";
   waf = fetchurl {
     urls = [ "http://waf.io/waf-${wafVersion}"
              "http://www.freehackers.org/~tnagy/release/waf-${wafVersion}" ];
-    sha256 = "12y9c352zwliw0zk9jm2lhynsjcf5jy0k1qch1c1av8hnbm2pgq1";
+    sha256 = "1gsd3zza1wixv2vhvq3inp4vb71i41a1kbwqnwixhnvdmcmw8z8n";
   };
 in stdenv.mkDerivation rec {
   name = "mpv-${version}";