diff options
author | lassulus <lassulus@lassul.us> | 2020-10-18 18:53:18 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-10-18 18:53:18 +0200 |
commit | 0be43e62346062304e0cf30dbabdae173f718fcd (patch) | |
tree | b6a5a015abf3c60c7b310caedfecc46faeca392e /krebs | |
parent | 1b521044840b84867e0d886074e07173aeb728ca (diff) |
update-nixpkgs: use nixpkgs remote
Diffstat (limited to 'krebs')
-rwxr-xr-x | krebs/update-nixpkgs-unstable.sh | 2 | ||||
-rwxr-xr-x | krebs/update-nixpkgs.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/krebs/update-nixpkgs-unstable.sh b/krebs/update-nixpkgs-unstable.sh index 592023f20..ab04914c1 100755 --- a/krebs/update-nixpkgs-unstable.sh +++ b/krebs/update-nixpkgs-unstable.sh @@ -2,7 +2,7 @@ dir=$(dirname $0) oldrev=$(cat $dir/nixpkgs-unstable.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') nix-shell -p nix-prefetch-git --run 'nix-prefetch-git \ - --url https://github.com/NixOS/nixpkgs-channels \ + --url https://github.com/NixOS/nixpkgs \ --rev refs/heads/nixos-unstable' \ > $dir/nixpkgs-unstable.json newrev=$(cat $dir/nixpkgs-unstable.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') diff --git a/krebs/update-nixpkgs.sh b/krebs/update-nixpkgs.sh index bb4b54793..b0ffb6adc 100755 --- a/krebs/update-nixpkgs.sh +++ b/krebs/update-nixpkgs.sh @@ -2,7 +2,7 @@ dir=$(dirname $0) oldrev=$(cat $dir/nixpkgs.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') nix-shell -p nix-prefetch-git --run 'nix-prefetch-git \ - --url https://github.com/NixOS/nixpkgs-channels \ + --url https://github.com/NixOS/nixpkgs \ --rev refs/heads/nixos-20.03' \ > $dir/nixpkgs.json newrev=$(cat $dir/nixpkgs.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') |