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

authored by

Sandro and committed by
GitHub
659fa39c 5c717aad

+9 -5
+9 -5
pkgs/applications/video/qarte/default.nix
··· 3 let 4 pythonEnv = python3.withPackages (ps: with ps; [ pyqt5_with_qtmultimedia ]); 5 in mkDerivation { 6 - name = "qarte-4.12.0"; 7 src = fetchbzr { 8 url = "http://bazaar.launchpad.net/~vincent-vandevyvre/qarte/qarte-4"; 9 rev = "56"; ··· 14 15 installPhase = '' 16 runHook preInstall 17 mkdir -p $out/bin 18 mv qarte $out/bin/ 19 substituteInPlace $out/bin/qarte \ ··· 24 25 mkdir -p $out/share/qarte 26 mv * $out/share/qarte/ 27 runHook postInstall 28 ''; 29 ··· 32 --prefix PATH : ${rtmpdump}/bin 33 ''; 34 35 - meta = { 36 homepage = "https://launchpad.net/qarte"; 37 description = "A recorder for Arte TV Guide and Arte Concert"; 38 - license = lib.licenses.gpl3; 39 - maintainers = with lib.maintainers; [ vbgl ]; 40 - platforms = lib.platforms.linux; 41 }; 42 }
··· 3 let 4 pythonEnv = python3.withPackages (ps: with ps; [ pyqt5_with_qtmultimedia ]); 5 in mkDerivation { 6 + pname = "qarte"; 7 + version = "4.12.0"; 8 + 9 src = fetchbzr { 10 url = "http://bazaar.launchpad.net/~vincent-vandevyvre/qarte/qarte-4"; 11 rev = "56"; ··· 16 17 installPhase = '' 18 runHook preInstall 19 + 20 mkdir -p $out/bin 21 mv qarte $out/bin/ 22 substituteInPlace $out/bin/qarte \ ··· 27 28 mkdir -p $out/share/qarte 29 mv * $out/share/qarte/ 30 + 31 runHook postInstall 32 ''; 33 ··· 36 --prefix PATH : ${rtmpdump}/bin 37 ''; 38 39 + meta = with lib; { 40 homepage = "https://launchpad.net/qarte"; 41 description = "A recorder for Arte TV Guide and Arte Concert"; 42 + license = licenses.gpl3; 43 + maintainers = with maintainers; [ vbgl ]; 44 + platforms = platforms.linux; 45 }; 46 }