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:
|
|
|
|
|
2020-09-11 20:14:07 +01:00
|
|
|
curl -L https://nixos.org/nix/install | sh
|
2018-08-30 14:00:05 +01:00
|
|
|
|
|
|
|
For more information, please see the NixOS release notes at
|
2018-08-30 14:05:57 +01:00
|
|
|
https://nixos.org/nixos/manual or locally at
|
2018-10-08 11:43:15 +01:00
|
|
|
${toString ./nixos/doc/manual/release-notes}.
|
2018-08-30 14:05:57 +01:00
|
|
|
|
|
|
|
If you need further help, see https://nixos.org/nixos/support.html
|
2017-03-18 19:04:07 +00:00
|
|
|
''
|
2014-03-17 10:33:36 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2016-04-26 18:53:31 +01:00
|
|
|
import ./pkgs/top-level/impure.nix
|