aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-01-13 21:11:56 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-01-13 21:11:56 +0100
commit30c9ca3b055a793339a850fc787fd5974e1405a8 (patch)
tree24fbd296eb8e59ccdf6149f98baefc292ffbc26d
parent6f046fa39ee941c48515cb2e4d1cbb0a962cfed7 (diff)
Fix Nixpkgs dependency
-rw-r--r--release.nix2
-rw-r--r--shell.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/release.nix b/release.nix
index 9202c2ff0..287b5294a 100644
--- a/release.nix
+++ b/release.nix
@@ -1,5 +1,5 @@
{ nix ? builtins.fetchGit ./.
-, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.09.tar.gz
+, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-19.09.tar.gz
, officialRelease ? false
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
}:
diff --git a/shell.nix b/shell.nix
index c709f6a5f..e5a2b2c91 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,6 +1,6 @@
{ useClang ? false }:
-with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/bb1013511e1e5edcf314df8321acf2f3c536df0d.tar.gz) {};
+with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-19.09.tar.gz) {};
with import ./release-common.nix { inherit pkgs; };