qarte: pname + version, format
This commit is contained in:
parent
f0bac487d3
commit
c99611a8b3
@ -3,7 +3,9 @@
|
||||
let
|
||||
pythonEnv = python3.withPackages (ps: with ps; [ pyqt5_with_qtmultimedia ]);
|
||||
in mkDerivation {
|
||||
name = "qarte-4.12.0";
|
||||
pname = "qarte";
|
||||
version = "4.12.0";
|
||||
|
||||
src = fetchbzr {
|
||||
url = "http://bazaar.launchpad.net/~vincent-vandevyvre/qarte/qarte-4";
|
||||
rev = "56";
|
||||
@ -14,6 +16,7 @@ in mkDerivation {
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin
|
||||
mv qarte $out/bin/
|
||||
substituteInPlace $out/bin/qarte \
|
||||
@ -24,6 +27,7 @@ in mkDerivation {
|
||||
|
||||
mkdir -p $out/share/qarte
|
||||
mv * $out/share/qarte/
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
@ -32,11 +36,11 @@ in mkDerivation {
|
||||
--prefix PATH : ${rtmpdump}/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = "https://launchpad.net/qarte";
|
||||
description = "A recorder for Arte TV Guide and Arte Concert";
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ vbgl ];
|
||||
platforms = lib.platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ vbgl ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user