about summary refs log tree commit diff
path: root/pkgs/tools/misc/yle-dl/default.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-09-21 19:39:59 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-09-21 19:39:59 +0300
commit0e226720f5ec172d6e0b6fa3efa658c1dafb06f2 (patch)
tree862c9dcf74765a4502d3dd9db84dc472a729eb07 /pkgs/tools/misc/yle-dl/default.nix
parentca7808f69643791399d04177b286c513b8a58a87 (diff)
downloadnixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.tar
nixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.tar.gz
nixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.tar.bz2
nixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.tar.lz
nixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.tar.xz
nixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.tar.zst
nixlib-0e226720f5ec172d6e0b6fa3efa658c1dafb06f2.zip
yle-dl: 2.9.1 -> 2.11
Also remove a hack that has been fixed by someone else in the meantime.
Diffstat (limited to 'pkgs/tools/misc/yle-dl/default.nix')
-rw-r--r--pkgs/tools/misc/yle-dl/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/tools/misc/yle-dl/default.nix b/pkgs/tools/misc/yle-dl/default.nix
index c6efac3ffe60..a7f2d445bca5 100644
--- a/pkgs/tools/misc/yle-dl/default.nix
+++ b/pkgs/tools/misc/yle-dl/default.nix
@@ -2,20 +2,17 @@
 
 stdenv.mkDerivation rec {
   name = "yle-dl-${version}";
-  version = "2.9.1";
+  version = "2.11";
 
   src = fetchFromGitHub {
     owner = "aajanki";
     repo = "yle-dl";
     rev = version;
-    sha256 = "1irpcp9iw2cw85sj1kzndmrw8350p9q7cfghjx2xkh2czk9k7whq";
+    sha256 = "1fa2a25j3wwk3m6q1alilklwhqf337ch8rj6bwricc5zqb58qivc";
   };
 
   patchPhase = ''
     substituteInPlace yle-dl --replace '/usr/local/share/' "$out/share/"
-
-    # HACK: work around https://github.com/NixOS/nixpkgs/issues/9593
-    substituteInPlace yle-dl --replace '/usr/bin/env python2' '/usr/bin/env python'
   '';
 
   buildInputs = [ pythonPackages.wrapPython ];