nixpkgs/pkgs/desktops/pantheon/update.nix

19 lines
637 B
Nix
Raw Normal View History

{ runCommand, nix, bash, git, jq, nix-prefetch-scripts, coreutils, common-updater-scripts, gnugrep, gnused, curl }:
2018-08-20 20:31:18 +00:00
{ repoName, attrPath ? repoName, versionPolicy ? "release" }:
let
script = ./update.sh;
updateScript = runCommand "update.sh" {
inherit bash git jq nix coreutils gnugrep gnused curl;
# These weren't being substituted
nix_prefetch_scripts = nix-prefetch-scripts;
common_updater_scripts = common-updater-scripts;
} ''
substituteAll ${script} $out
chmod +x $out
'';
versionFlag = { "release" = "-r"; "master" = "-m"; }.${versionPolicy};
in [ updateScript versionFlag repoName attrPath ]