about summary refs log tree commit diff
path: root/shell.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-04-19T12·41+0200
committerEelco Dolstra <edolstra@gmail.com>2019-05-17T20·28+0200
commit14c877b4ab097667734b050a79b45658dcf2695d (patch)
tree557fffb722d6b0f1c38f03745ef4589a65915875 /shell.nix
parentc0559a1d6092b94c7ce46a065d72fc74e4db51dd (diff)
fetchGit -> fetchTarball
(cherry picked from commit cbfdea685764bf66443a999e672656c54289b8c9)
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 73e75fb29c..8167f87a29 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,6 +1,6 @@
 { useClang ? false }:
 
-with import (builtins.fetchGit { url = https://github.com/NixOS/nixpkgs-channels.git; ref = "nixos-19.03"; }) {};
+with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz) {};
 
 with import ./release-common.nix { inherit pkgs; };