diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-04-19T12·41+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-05-17T20·28+0200 |
commit | 14c877b4ab097667734b050a79b45658dcf2695d (patch) | |
tree | 557fffb722d6b0f1c38f03745ef4589a65915875 /release.nix | |
parent | c0559a1d6092b94c7ce46a065d72fc74e4db51dd (diff) |
fetchGit -> fetchTarball
(cherry picked from commit cbfdea685764bf66443a999e672656c54289b8c9)
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix index ab13451ff3d4..78b39108f85e 100644 --- a/release.nix +++ b/release.nix @@ -1,5 +1,5 @@ { nix ? builtins.fetchGit ./. -, nixpkgs ? builtins.fetchGit { url = https://github.com/NixOS/nixpkgs-channels.git; ref = "nixos-19.03"; } +, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz , officialRelease ? false , systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ] }: |