Adds Qarte
Qarte allows you to browse into the archives of arte+7 & arteLiveWeb sites and to record your preferred videos. Homepage: https://launchpad.net/qarte
This commit is contained in:
parent
9402dbe25d
commit
d38c414d94
37
pkgs/applications/video/qarte/default.nix
Normal file
37
pkgs/applications/video/qarte/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchbzr, python, pyqt4, sip, rtmpdump, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "qarte-2.2.0";
|
||||
src = fetchbzr {
|
||||
url = http://bazaar.launchpad.net/~vincent-vandevyvre/qarte/trunk;
|
||||
rev = "146";
|
||||
sha256 = "0vqhxrzb3d7id81sr02h78hn0m7k2x0yxk9cl36pr5vx3vjnsyi9";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv qarte $out/bin/
|
||||
substituteInPlace $out/bin/qarte \
|
||||
--replace '/usr/bin/python' "${python.interpreter}" \
|
||||
--replace '/usr/share' "$out/share"
|
||||
wrapProgram $out/bin/qarte \
|
||||
--prefix PYTHONPATH : "${pyqt4}/lib/${python.libPrefix}/site-packages:${sip}/lib/${python.libPrefix}/site-packages" \
|
||||
--prefix PATH : "${rtmpdump}/bin"
|
||||
|
||||
mkdir -p $out/share/man/man1/
|
||||
mv qarte.1 $out/share/man/man1/
|
||||
|
||||
mkdir -p $out/share/qarte
|
||||
mv * $out/share/qarte/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://launchpad.net/qarte;
|
||||
description = "A recorder for Arte TV Guide and Arte Concert";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -2440,6 +2440,10 @@ let
|
||||
|
||||
openmpi = callPackage ../development/libraries/openmpi { };
|
||||
|
||||
qarte = callPackage ../applications/video/qarte {
|
||||
sip = pythonPackages.sip_4_16;
|
||||
};
|
||||
|
||||
qastools = callPackage ../tools/audio/qastools {
|
||||
qt = qt4;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user