yle-dl: init at 2.9.1

This commit is contained in:
Tuomas Tynkkynen 2015-11-21 23:44:32 +02:00
parent 93d8671e2c
commit 5120601c28
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, fetchFromGitHub, rtmpdump, php, pythonPackages }:
stdenv.mkDerivation rec {
name = "yle-dl-${version}";
version = "2.9.1";
src = fetchFromGitHub {
owner = "aajanki";
repo = "yle-dl";
rev = version;
sha256 = "1irpcp9iw2cw85sj1kzndmrw8350p9q7cfghjx2xkh2czk9k7whq";
};
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 ];
pythonPath = [ rtmpdump php ] ++ (with pythonPackages; [ pycrypto ]);
installPhase = ''
make install prefix=$out
wrapPythonPrograms
'';
meta = with stdenv.lib; {
description = "Downloads videos from Yle (Finnish Broadcasting Company) servers";
homepage = https://aajanki.github.io/yle-dl/;
license = licenses.gpl3;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}

View file

@ -3645,6 +3645,8 @@ let
# To expose more packages for Yi, override the extraPackages arg.
yi = callPackage ../applications/editors/yi/wrapper.nix { };
yle-dl = callPackage ../tools/misc/yle-dl {};
zbackup = callPackage ../tools/backup/zbackup {};
zbar = callPackage ../tools/graphics/zbar {