2015-11-26 03:04:29 +00:00
|
|
|
let requiredVersion = import ./lib/minver.nix; in
|
2014-03-17 10:33:36 +00:00
|
|
|
|
2015-10-15 12:17:37 +01:00
|
|
|
if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then
|
|
|
|
|
2017-03-18 19:04:07 +00:00
|
|
|
abort ''
|
|
|
|
|
|
|
|
This version of Nixpkgs requires Nix >= ${requiredVersion}, please upgrade:
|
|
|
|
|
2018-06-24 23:35:06 +01:00
|
|
|
- If you are running NixOS, `nixos-rebuild' can be used to upgrade your system.
|
|
|
|
|
|
|
|
- Alternatively, with Nix > 2.0 `nix upgrade-nix' can be used to imperatively
|
|
|
|
upgrade Nix. You may use `nix-env --version' to check which version you have.
|
2017-03-18 19:04:07 +00:00
|
|
|
|
|
|
|
- If you installed Nix using the install script (https://nixos.org/nix/install),
|
|
|
|
it is safe to upgrade by running it again:
|
|
|
|
|
|
|
|
curl https://nixos.org/nix/install | sh
|
|
|
|
''
|
2014-03-17 10:33:36 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2016-04-26 18:53:31 +01:00
|
|
|
import ./pkgs/top-level/impure.nix
|