diff options
author | John Ericson <git@JohnEricson.me> | 2019-10-25 07:23:05 -0400 |
---|---|---|
committer | John Ericson <git@JohnEricson.me> | 2019-10-25 07:23:05 -0400 |
commit | 70cab0587dcbc2d0600c07c96b477a2ea2fcd6f3 (patch) | |
tree | 24a542d4c7f437c598d60edc8421cef61c297661 | |
parent | 2f96a89646c6e55e2f1bbb80805dcbbe60fa94ae (diff) |
Switch to nixpkgs 19.09
-rw-r--r-- | release.nix | 2 | ||||
-rw-r--r-- | shell.nix | 2 |
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" ] }: @@ -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; }; |