2016-04-26 19:53:31 +02:00
|
|
|
|
/* Impure default args for `pkgs/top-level/default.nix`. See that file
|
|
|
|
|
for the meaning of each argument. */
|
|
|
|
|
|
2017-02-01 15:56:02 +01:00
|
|
|
|
with builtins;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
homeDir = builtins.getEnv "HOME";
|
|
|
|
|
|
|
|
|
|
# Return ‘x’ if it evaluates, or ‘def’ if it throws an exception.
|
|
|
|
|
try = x: def: let res = tryEval x; in if res.success then res.value else def;
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
2016-04-26 19:53:31 +02:00
|
|
|
|
{ # Fallback: Assume we are building packages for the current (host, in GNU
|
|
|
|
|
# Autotools parlance) system.
|
|
|
|
|
system ? builtins.currentSystem
|
|
|
|
|
|
|
|
|
|
, # Fallback: The contents of the configuration file found at $NIXPKGS_CONFIG or
|
2017-02-01 16:03:42 +01:00
|
|
|
|
# $HOME/.config/nixpkgs/config.nix.
|
2016-04-26 19:53:31 +02:00
|
|
|
|
config ? let
|
|
|
|
|
configFile = getEnv "NIXPKGS_CONFIG";
|
2017-02-01 16:03:42 +01:00
|
|
|
|
configFile2 = homeDir + "/.config/nixpkgs/config.nix";
|
|
|
|
|
configFile3 = homeDir + "/.nixpkgs/config.nix"; # obsolete
|
2016-04-26 19:53:31 +02:00
|
|
|
|
in
|
|
|
|
|
if configFile != "" && pathExists configFile then import configFile
|
|
|
|
|
else if homeDir != "" && pathExists configFile2 then import configFile2
|
2017-02-01 16:03:42 +01:00
|
|
|
|
else if homeDir != "" && pathExists configFile3 then import configFile3
|
2016-04-26 19:53:31 +02:00
|
|
|
|
else {}
|
|
|
|
|
|
2016-12-17 19:05:21 +01: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
|
2017-02-01 15:56:02 +01:00
|
|
|
|
dirPath = try (if pathExists <nixpkgs-overlays> then <nixpkgs-overlays> else "") "";
|
2017-02-01 16:03:42 +01:00
|
|
|
|
dirHome = homeDir + "/.config/nixpkgs/overlays";
|
2016-12-17 19:05:21 +01:00
|
|
|
|
dirCheck = dir: dir != "" && pathExists (dir + "/.");
|
|
|
|
|
overlays = dir:
|
|
|
|
|
let content = readDir dir; in
|
2017-02-01 15:56:02 +01:00
|
|
|
|
map (n: import (dir + ("/" + n)))
|
2017-01-31 15:20:28 +01:00
|
|
|
|
(builtins.filter (n: builtins.match ".*\.nix" n != null)
|
2017-02-01 20:25:58 +01:00
|
|
|
|
(attrNames content));
|
2016-12-17 19:05:21 +01:00
|
|
|
|
in
|
2017-02-01 15:56:02 +01:00
|
|
|
|
if dirPath != "" then
|
|
|
|
|
overlays dirPath
|
2016-12-17 19:05:21 +01:00
|
|
|
|
else if dirCheck dirHome then overlays dirHome
|
|
|
|
|
else []
|
|
|
|
|
|
2016-04-26 19:53:31 +02:00
|
|
|
|
, ...
|
|
|
|
|
} @ args:
|
|
|
|
|
|
2016-12-17 19:05:21 +01:00
|
|
|
|
import ./. (args // { inherit system config overlays; })
|