mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
299d1451d8
Removed unnecessary dependencies as described below flvstreamer: not used by get_iplayer rtmpdump: not used by get_iplayer perlPackages: HTMLParser: pulled in by LWP HTMLCookies: pulled in by LWP XMLSimple: not used by get_iplayer Also updated meta.description and meta.homepage - old site is defunct.
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ lib
|
|
, perlPackages
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, stdenv
|
|
, shortenPerlShebang
|
|
, perl
|
|
, atomicparsley
|
|
, ffmpeg
|
|
}:
|
|
|
|
perlPackages.buildPerlPackage rec {
|
|
pname = "get_iplayer";
|
|
version = "3.31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "get-iplayer";
|
|
repo = "get_iplayer";
|
|
rev = "v${version}";
|
|
sha256 = "+ChCF27nmPKbqaZVxsZ6TlbzSdEz6RfMs87NE8xaSRw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ] ++ lib.optional stdenv.isDarwin shortenPerlShebang;
|
|
buildInputs = [ perl ];
|
|
propagatedBuildInputs = with perlPackages; [
|
|
LWP LWPProtocolHttps XMLLibXML Mojolicious
|
|
];
|
|
|
|
preConfigure = "touch Makefile.PL";
|
|
doCheck = false;
|
|
outputs = [ "out" "man" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
cp get_iplayer $out/bin
|
|
wrapProgram $out/bin/get_iplayer --suffix PATH : ${lib.makeBinPath [ atomicparsley ffmpeg ]} --prefix PERL5LIB : $PERL5LIB
|
|
cp get_iplayer.1 $out/share/man/man1
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
shortenPerlShebang $out/bin/.get_iplayer-wrapped
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Downloads TV and radio programmes from BBC iPlayer and BBC Sounds";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "https://github.com/get-iplayer/get_iplayer";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ rika jgarcia ];
|
|
};
|
|
|
|
}
|