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