Merge pull request #132666 from SuperSandro2000/SuperSandro2000-patch-1

This commit is contained in:
Sandro 2021-08-04 16:45:36 +02:00 committed by GitHub
commit 659fa39cd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
}