yle-dl: init at 2.9.1
This commit is contained in:
parent
93d8671e2c
commit
5120601c28
36
pkgs/tools/misc/yle-dl/default.nix
Normal file
36
pkgs/tools/misc/yle-dl/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user