nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

endgame-singularity: remove unused updater and use tag instead of rev (#418552)

authored by

Wolfgang Walther and committed by
GitHub
29c4b78a 6a13148e

+2 -11
+2 -11
pkgs/by-name/en/endgame-singularity/package.nix
··· 5 5 unzip, 6 6 python3, 7 7 enableDefaultMusicPack ? true, 8 - unstableGitUpdater, 9 8 }: 10 9 11 10 let ··· 14 15 main_src = fetchFromGitHub { 15 16 owner = "singularity"; 16 17 repo = "singularity"; 17 - rev = "8bbc2322ad1a0e83f78f5af731dfa97b6bd63f9c"; 18 - hash = "sha256-HiFE746JtGjZJbiKhB3ubfb376tJmz78jUfdu3/RQic="; 18 + tag = "v${version}"; 19 + hash = "sha256-wYXuhlGp7gisgN2iRXKTpe0Om2AA8u0eBwKHHIYuqbk="; 19 20 }; 20 21 21 22 music_src = fetchurl { ··· 43 44 "$(echo $out/lib/python*/site-packages/singularity)/music" 44 45 # ↑ we cannot glob on [...]/music, it doesn't exist yet 45 46 ''; 46 - 47 - passthru = { 48 - # for the updater 49 - src = main_src; 50 - updateScript = unstableGitUpdater { 51 - tagPrefix = "v"; 52 - }; 53 - }; 54 47 55 48 meta = { 56 49 homepage = "http://www.emhsoft.com/singularity/";