headphones 0.6.0-beta.5 -> 0.6.0 https://github.com/rembo10/headphones/releases attrpath: headphones Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1xndc9xbmqvrj8q6bn07q9lvrijqld6f-packages.json.drv building '/nix/store/1xndc9xbmqvrj8q6bn07q9lvrijqld6f-packages.json.drv'... Going to be running update for following packages: - headphones-0.6.0-beta.5 Press Enter key to continue... Running update for: - headphones-0.6.0-beta.5: UPDATING ... - headphones-0.6.0-beta.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/servers/headphones/default.nix b/pkgs/servers/headphones/default.nix index 9ebf04b80bd..8f0f8b60afd 100644 --- a/pkgs/servers/headphones/default.nix +++ b/pkgs/servers/headphones/default.nix @@ -2,14 +2,14 @@ python3.pkgs.buildPythonApplication rec { pname = "headphones"; - version = "0.6.0-beta.5"; + version = "0.6.0"; format = "other"; src = fetchFromGitHub { owner = "rembo10"; repo = "headphones"; - rev = "v${version}"; - sha256 = "1ddqk5ch1dlh895cm99li4gb4a596mvq3d0gah9vrbn6fyhp3b4v"; + rev = "refs/tags/v${version}"; + sha256 = "sha256-PIISTk/bPccQCHcZ5ZfHR+TH0rgVEtZciqSxvJKcoHM="; }; dontBuild = true; Old version "0.6.0-beta.5"" not present in master derivation file with contents: { lib, fetchFromGitHub, python3, makeWrapper }: python3.pkgs.buildPythonApplication rec { pname = "headphones"; version = "0.6.0-beta.5"; format = "other"; src = fetchFromGitHub { owner = "rembo10"; repo = "headphones"; rev = "v${version}"; sha256 = "1ddqk5ch1dlh895cm99li4gb4a596mvq3d0gah9vrbn6fyhp3b4v"; }; dontBuild = true; doCheck = false; nativeBuildInputs = [ makeWrapper ]; installPhase = '' runHook preInstall mkdir -p $out/bin $out/opt/headphones cp -R {data,headphones,lib,Headphones.py} $out/opt/headphones echo v${version} > $out/opt/headphones/version.txt makeWrapper $out/opt/headphones/Headphones.py $out/bin/headphones runHook postInstall ''; meta = with lib; { description = "Automatic music downloader for SABnzbd"; license = licenses.gpl3Plus; homepage = "https://github.com/rembo10/headphones"; maintainers = with lib.maintainers; [ rembo10 ]; }; }