2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-08-26 09:52:38 -07:00
|
|
|
|
2014-04-14 07:26:48 -07:00
|
|
|
with lib;
|
2011-09-05 02:19:59 -07:00
|
|
|
|
|
|
|
let
|
2018-01-10 06:19:37 -08:00
|
|
|
cfg = config.nixpkgs;
|
|
|
|
|
2011-09-05 02:19:59 -07:00
|
|
|
isConfig = x:
|
2018-01-31 11:02:19 -08:00
|
|
|
builtins.isAttrs x || lib.isFunction x;
|
2011-09-05 02:19:59 -07:00
|
|
|
|
|
|
|
optCall = f: x:
|
2018-01-31 11:02:19 -08:00
|
|
|
if lib.isFunction f
|
2011-09-05 02:19:59 -07:00
|
|
|
then f x
|
|
|
|
else f;
|
|
|
|
|
2011-09-11 05:41:47 -07:00
|
|
|
mergeConfig = lhs_: rhs_:
|
|
|
|
let
|
|
|
|
lhs = optCall lhs_ { inherit pkgs; };
|
|
|
|
rhs = optCall rhs_ { inherit pkgs; };
|
|
|
|
in
|
2011-09-05 02:19:59 -07:00
|
|
|
lhs // rhs //
|
|
|
|
optionalAttrs (lhs ? packageOverrides) {
|
|
|
|
packageOverrides = pkgs:
|
|
|
|
optCall lhs.packageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["packageOverrides"] ({}) rhs) pkgs;
|
2016-07-21 06:19:11 -07:00
|
|
|
} //
|
|
|
|
optionalAttrs (lhs ? perlPackageOverrides) {
|
|
|
|
perlPackageOverrides = pkgs:
|
|
|
|
optCall lhs.perlPackageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["perlPackageOverrides"] ({}) rhs) pkgs;
|
2011-09-05 02:19:59 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
configType = mkOptionType {
|
2016-12-25 10:50:00 -08:00
|
|
|
name = "nixpkgs-config";
|
2017-01-15 10:36:50 -08:00
|
|
|
description = "nixpkgs config";
|
2011-09-05 02:19:59 -07:00
|
|
|
check = traceValIfNot isConfig;
|
2013-10-30 06:21:41 -07:00
|
|
|
merge = args: fold (def: mergeConfig def.value) {};
|
2011-09-05 02:19:59 -07:00
|
|
|
};
|
|
|
|
|
2016-12-25 10:50:00 -08:00
|
|
|
overlayType = mkOptionType {
|
|
|
|
name = "nixpkgs-overlay";
|
|
|
|
description = "nixpkgs overlay";
|
2018-01-31 11:02:19 -08:00
|
|
|
check = lib.isFunction;
|
2016-12-25 10:50:00 -08:00
|
|
|
merge = lib.mergeOneOption;
|
|
|
|
};
|
|
|
|
|
2018-01-10 06:19:37 -08:00
|
|
|
pkgsType = mkOptionType {
|
|
|
|
name = "nixpkgs";
|
|
|
|
description = "An evaluation of Nixpkgs; the top level attribute set of packages";
|
|
|
|
check = builtins.isAttrs;
|
|
|
|
};
|
2017-04-26 09:20:38 -07:00
|
|
|
|
2011-09-05 02:19:59 -07:00
|
|
|
in
|
|
|
|
|
2009-08-26 09:52:38 -07:00
|
|
|
{
|
2017-01-31 00:38:02 -08:00
|
|
|
options.nixpkgs = {
|
2018-01-10 06:19:37 -08:00
|
|
|
|
|
|
|
pkgs = mkOption {
|
|
|
|
defaultText = literalExample
|
|
|
|
''import "''${nixos}/.." {
|
|
|
|
inherit (config.nixpkgs) config overlays system;
|
|
|
|
}
|
|
|
|
'';
|
2018-03-01 11:58:15 -08:00
|
|
|
default = import ../../.. { inherit (cfg) config overlays system crossSystem; };
|
2018-01-10 06:19:37 -08:00
|
|
|
type = pkgsType;
|
|
|
|
example = literalExample ''import <nixpkgs> {}'';
|
|
|
|
description = ''
|
|
|
|
This is the evaluation of Nixpkgs that will be provided to
|
|
|
|
all NixOS modules. Defining this option has the effect of
|
|
|
|
ignoring the other options that would otherwise be used to
|
|
|
|
evaluate Nixpkgs, because those are arguments to the default
|
|
|
|
value. The default value imports the Nixpkgs source files
|
|
|
|
relative to the location of this NixOS module, because
|
|
|
|
NixOS and Nixpkgs are distributed together for consistency,
|
|
|
|
so the <code>nixos</code> in the default value is in fact a
|
|
|
|
relative path. The <code>config</code>, <code>overlays</code>
|
|
|
|
and <code>system</code> come from this option's siblings.
|
|
|
|
|
|
|
|
This option can be used by applications like NixOps to increase
|
|
|
|
the performance of evaluation, or to create packages that depend
|
|
|
|
on a container that should be built with the exact same evaluation
|
|
|
|
of Nixpkgs, for example. Applications like this should set
|
|
|
|
their default value using <code>lib.mkDefault</code>, so
|
|
|
|
user-provided configuration can override it without using
|
|
|
|
<code>lib</code>.
|
|
|
|
|
|
|
|
Note that using a distinct version of Nixpkgs with NixOS may
|
|
|
|
be an unexpected source of problems. Use this option with care.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-31 00:38:02 -08:00
|
|
|
config = mkOption {
|
2009-08-26 09:52:38 -07:00
|
|
|
default = {};
|
2011-09-05 03:14:42 -07:00
|
|
|
example = literalExample
|
2011-09-05 02:46:14 -07:00
|
|
|
''
|
2018-02-20 20:12:24 -08:00
|
|
|
{ allowBroken = true; allowUnfree = true; }
|
2011-09-05 02:46:14 -07:00
|
|
|
'';
|
2011-09-05 02:19:59 -07:00
|
|
|
type = configType;
|
2009-08-26 09:52:38 -07:00
|
|
|
description = ''
|
2011-09-05 02:46:14 -07:00
|
|
|
The configuration of the Nix Packages collection. (For
|
|
|
|
details, see the Nixpkgs documentation.) It allows you to set
|
2016-12-25 10:50:00 -08:00
|
|
|
package configuration options.
|
2018-01-10 06:19:37 -08:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2016-12-25 10:50:00 -08:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-31 00:38:02 -08:00
|
|
|
overlays = mkOption {
|
2016-12-25 10:50:00 -08:00
|
|
|
default = [];
|
|
|
|
example = literalExample
|
|
|
|
''
|
|
|
|
[ (self: super: {
|
|
|
|
openssh = super.openssh.override {
|
|
|
|
hpnSupport = true;
|
2017-01-15 07:07:29 -08:00
|
|
|
kerberos = self.libkrb5;
|
2016-12-25 10:50:00 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
) ]
|
|
|
|
'';
|
2017-01-15 11:05:22 -08:00
|
|
|
type = types.listOf overlayType;
|
2016-12-25 10:50:00 -08:00
|
|
|
description = ''
|
|
|
|
List of overlays to use with the Nix Packages collection.
|
|
|
|
(For details, see the Nixpkgs documentation.) It allows
|
|
|
|
you to override packages globally. This is a function that
|
|
|
|
takes as an argument the <emphasis>original</emphasis> Nixpkgs.
|
|
|
|
The first argument should be used for finding dependencies, and
|
|
|
|
the second should be used for overriding recipes.
|
2018-01-10 06:19:37 -08:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2009-08-26 09:52:38 -07:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-03-01 11:58:15 -08:00
|
|
|
crossSystem = mkOption {
|
|
|
|
type = types.nullOr types.attrs;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
The description of the system we're cross-compiling to, or null
|
|
|
|
if this isn't a cross-compile. See the description of the
|
|
|
|
crossSystem argument in the nixpkgs manual.
|
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-31 00:38:02 -08:00
|
|
|
system = mkOption {
|
2015-06-15 09:12:32 -07:00
|
|
|
type = types.str;
|
2015-04-08 14:12:11 -07:00
|
|
|
example = "i686-linux";
|
2010-11-23 08:07:00 -08:00
|
|
|
description = ''
|
|
|
|
Specifies the Nix platform type for which NixOS should be built.
|
2014-04-24 15:14:55 -07:00
|
|
|
If unset, it defaults to the platform type of your host system.
|
2010-11-23 08:07:00 -08:00
|
|
|
Specifying this option is useful when doing distributed
|
|
|
|
multi-platform deployment, or when building virtual machines.
|
2018-01-10 06:19:37 -08:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2010-11-23 08:07:00 -08:00
|
|
|
'';
|
|
|
|
};
|
2009-08-26 09:52:38 -07:00
|
|
|
};
|
2014-05-06 07:31:48 -07:00
|
|
|
|
|
|
|
config = {
|
2017-04-26 09:20:38 -07:00
|
|
|
_module.args = {
|
2018-01-10 06:19:37 -08:00
|
|
|
pkgs = cfg.pkgs;
|
|
|
|
pkgs_i686 = cfg.pkgs.pkgsi686Linux;
|
2017-04-26 09:20:38 -07:00
|
|
|
};
|
2014-05-06 07:31:48 -07:00
|
|
|
};
|
2010-02-27 10:37:12 -08:00
|
|
|
}
|