2016-04-26 18:53:31 +01:00
|
|
|
|
/* Impure default args for `pkgs/top-level/default.nix`. See that file
|
|
|
|
|
for the meaning of each argument. */
|
|
|
|
|
|
2017-02-01 14:56:02 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
homeDir = builtins.getEnv "HOME";
|
|
|
|
|
|
|
|
|
|
# Return ‘x’ if it evaluates, or ‘def’ if it throws an exception.
|
2021-12-16 16:46:43 +00:00
|
|
|
|
try = x: def: let res = builtins.tryEval x; in if res.success then res.value else def;
|
2017-02-01 14:56:02 +00:00
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
2021-01-22 21:36:06 +00:00
|
|
|
|
{ # We put legacy `system` into `localSystem`, if `localSystem` was not passed.
|
|
|
|
|
# If neither is passed, assume we are building packages on the current
|
|
|
|
|
# (build, in GNU Autotools parlance) platform.
|
|
|
|
|
localSystem ? { system = args.system or builtins.currentSystem; }
|
2016-04-26 18:53:31 +01:00
|
|
|
|
|
2021-01-22 21:36:06 +00:00
|
|
|
|
# These are needed only because nix's `--arg` command-line logic doesn't work
|
|
|
|
|
# with unnamed parameters allowed by ...
|
|
|
|
|
, system ? localSystem.system
|
|
|
|
|
, crossSystem ? localSystem
|
2017-02-09 16:21:07 +00:00
|
|
|
|
|
2016-04-26 18:53:31 +01:00
|
|
|
|
, # Fallback: The contents of the configuration file found at $NIXPKGS_CONFIG or
|
2017-02-01 15:03:42 +00:00
|
|
|
|
# $HOME/.config/nixpkgs/config.nix.
|
2016-04-26 18:53:31 +01:00
|
|
|
|
config ? let
|
2021-12-16 16:46:43 +00:00
|
|
|
|
configFile = builtins.getEnv "NIXPKGS_CONFIG";
|
2017-02-01 15:03:42 +00:00
|
|
|
|
configFile2 = homeDir + "/.config/nixpkgs/config.nix";
|
|
|
|
|
configFile3 = homeDir + "/.nixpkgs/config.nix"; # obsolete
|
2016-04-26 18:53:31 +01:00
|
|
|
|
in
|
2021-12-16 16:46:43 +00:00
|
|
|
|
if configFile != "" && builtins.pathExists configFile then import configFile
|
|
|
|
|
else if homeDir != "" && builtins.pathExists configFile2 then import configFile2
|
|
|
|
|
else if homeDir != "" && builtins.pathExists configFile3 then import configFile3
|
2016-04-26 18:53:31 +01:00
|
|
|
|
else {}
|
|
|
|
|
|
2016-12-17 18:05:21 +00:00
|
|
|
|
, # Overlays are used to extend Nixpkgs collection with additional
|
|
|
|
|
# collections of packages. These collection of packages are part of the
|
|
|
|
|
# fix-point made by Nixpkgs.
|
|
|
|
|
overlays ? let
|
2021-12-16 16:46:43 +00:00
|
|
|
|
isDir = path: builtins.pathExists (path + "/.");
|
2018-05-04 12:12:09 +01:00
|
|
|
|
pathOverlays = try (toString <nixpkgs-overlays>) "";
|
2017-08-09 19:47:27 +01:00
|
|
|
|
homeOverlaysFile = homeDir + "/.config/nixpkgs/overlays.nix";
|
|
|
|
|
homeOverlaysDir = homeDir + "/.config/nixpkgs/overlays";
|
|
|
|
|
overlays = path:
|
|
|
|
|
# check if the path is a directory or a file
|
|
|
|
|
if isDir path then
|
|
|
|
|
# it's a directory, so the set of overlays from the directory, ordered lexicographically
|
2021-12-16 16:46:43 +00:00
|
|
|
|
let content = builtins.readDir path; in
|
2017-08-09 19:47:27 +01:00
|
|
|
|
map (n: import (path + ("/" + n)))
|
2021-12-16 16:46:43 +00:00
|
|
|
|
(builtins.filter (n: builtins.match ".*\\.nix" n != null || builtins.pathExists (path + ("/" + n + "/default.nix")))
|
|
|
|
|
(builtins.attrNames content))
|
2019-02-03 15:30:14 +00:00
|
|
|
|
else
|
2017-08-09 19:47:27 +01:00
|
|
|
|
# it's a file, so the result is the contents of the file itself
|
|
|
|
|
import path;
|
2016-12-17 18:05:21 +00:00
|
|
|
|
in
|
2021-12-16 16:46:43 +00:00
|
|
|
|
if pathOverlays != "" && builtins.pathExists pathOverlays then overlays pathOverlays
|
|
|
|
|
else if builtins.pathExists homeOverlaysFile && builtins.pathExists homeOverlaysDir then
|
2017-08-09 19:47:27 +01:00
|
|
|
|
throw ''
|
|
|
|
|
Nixpkgs overlays can be specified with ${homeOverlaysFile} or ${homeOverlaysDir}, but not both.
|
|
|
|
|
Please remove one of them and try again.
|
|
|
|
|
''
|
2021-12-16 16:46:43 +00:00
|
|
|
|
else if builtins.pathExists homeOverlaysFile then
|
2019-02-03 15:30:14 +00:00
|
|
|
|
if isDir homeOverlaysFile then
|
2017-08-09 19:47:27 +01:00
|
|
|
|
throw (homeOverlaysFile + " should be a file")
|
|
|
|
|
else overlays homeOverlaysFile
|
2021-12-16 16:46:43 +00:00
|
|
|
|
else if builtins.pathExists homeOverlaysDir then
|
2019-02-03 15:30:14 +00:00
|
|
|
|
if !(isDir homeOverlaysDir) then
|
2017-08-09 19:47:27 +01:00
|
|
|
|
throw (homeOverlaysDir + " should be a directory")
|
|
|
|
|
else overlays homeOverlaysDir
|
2016-12-17 18:05:21 +00:00
|
|
|
|
else []
|
|
|
|
|
|
2019-03-02 21:41:26 +00:00
|
|
|
|
, crossOverlays ? []
|
|
|
|
|
|
2016-04-26 18:53:31 +01:00
|
|
|
|
, ...
|
|
|
|
|
} @ args:
|
|
|
|
|
|
2021-01-22 21:36:06 +00:00
|
|
|
|
# If `localSystem` was explicitly passed, legacy `system` should
|
|
|
|
|
# not be passed, and vice-versa.
|
|
|
|
|
assert args ? localSystem -> !(args ? system);
|
|
|
|
|
assert args ? system -> !(args ? localSystem);
|
2017-02-08 21:43:52 +00:00
|
|
|
|
|
2021-01-22 21:36:06 +00:00
|
|
|
|
import ./. (builtins.removeAttrs args [ "system" ] // {
|
|
|
|
|
inherit config overlays localSystem;
|
2017-02-08 21:43:52 +00:00
|
|
|
|
})
|