Merge pull request #157708 from rembo10/headphones-update

headphones: 0.6.0-alpha.1 -> 0.6.0-beta.5

authored by Renaud and committed by GitHub fc38816b 9463799f

+7 -3
+7 -3
pkgs/servers/headphones/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "headphones"; 5 - version = "0.6.0-alpha.1"; 6 7 src = fetchFromGitHub { 8 owner = "rembo10"; 9 repo = "headphones"; 10 rev = "v${version}"; 11 - sha256 = "sha256-+mWtceQoHSMRkA8izZnKM0cgbt0P5Hr3arKOevpKvqc="; 12 }; 13 14 dontBuild = true; ··· 17 nativeBuildInputs = [ makeWrapper ]; 18 19 installPhase = '' 20 mkdir -p $out/bin $out/opt/headphones 21 cp -R {data,headphones,lib,Headphones.py} $out/opt/headphones 22 23 echo v${version} > $out/opt/headphones/version.txt 24 25 makeWrapper $out/opt/headphones/Headphones.py $out/bin/headphones 26 ''; 27 28 meta = with lib; { 29 description = "Automatic music downloader for SABnzbd"; 30 - license = licenses.gpl3; 31 homepage = "https://github.com/rembo10/headphones"; 32 maintainers = with lib.maintainers; [ rembo10 ]; 33 };
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "headphones"; 5 + version = "0.6.0-beta.5"; 6 7 src = fetchFromGitHub { 8 owner = "rembo10"; 9 repo = "headphones"; 10 rev = "v${version}"; 11 + sha256 = "1ddqk5ch1dlh895cm99li4gb4a596mvq3d0gah9vrbn6fyhp3b4v"; 12 }; 13 14 dontBuild = true; ··· 17 nativeBuildInputs = [ makeWrapper ]; 18 19 installPhase = '' 20 + runHook preInstall 21 + 22 mkdir -p $out/bin $out/opt/headphones 23 cp -R {data,headphones,lib,Headphones.py} $out/opt/headphones 24 25 echo v${version} > $out/opt/headphones/version.txt 26 27 makeWrapper $out/opt/headphones/Headphones.py $out/bin/headphones 28 + 29 + runHook postInstall 30 ''; 31 32 meta = with lib; { 33 description = "Automatic music downloader for SABnzbd"; 34 + license = licenses.gpl3Plus; 35 homepage = "https://github.com/rembo10/headphones"; 36 maintainers = with lib.maintainers; [ rembo10 ]; 37 };