aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-10-25 07:23:05 -0400
committerJohn Ericson <git@JohnEricson.me>2019-10-25 07:23:05 -0400
commit70cab0587dcbc2d0600c07c96b477a2ea2fcd6f3 (patch)
tree24a542d4c7f437c598d60edc8421cef61c297661
parent2f96a89646c6e55e2f1bbb80805dcbbe60fa94ae (diff)
Switch to nixpkgs 19.09
-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 0fe683518..8fcf04680 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.03.tar.gz
+, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/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 8167f87a2..9c504f024 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,6 +1,6 @@
{ useClang ? false }:
-with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz) {};
+with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.09.tar.gz) {};
with import ./release-common.nix { inherit pkgs; };