diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-04-19 14:41:59 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-04-19 14:41:59 +0200 |
commit | cbfdea685764bf66443a999e672656c54289b8c9 (patch) | |
tree | ac28e2dc0785bde4b6c07f678624c372d015f188 /release.nix | |
parent | 3392f1b77869269580b58e4931b7a79f44799ce0 (diff) |
fetchGit -> fetchTarball
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 f52120474..a47ca862f 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" ] }: |