2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-08-26 18:52:38 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2011-09-05 11:19:59 +02:00
|
|
|
|
|
|
|
let
|
2018-01-10 15:19:37 +01:00
|
|
|
cfg = config.nixpkgs;
|
|
|
|
|
2011-09-05 11:19:59 +02:00
|
|
|
isConfig = x:
|
2018-01-31 20:02:19 +01:00
|
|
|
builtins.isAttrs x || lib.isFunction x;
|
2011-09-05 11:19:59 +02:00
|
|
|
|
|
|
|
optCall = f: x:
|
2018-01-31 20:02:19 +01:00
|
|
|
if lib.isFunction f
|
2011-09-05 11:19:59 +02:00
|
|
|
then f x
|
|
|
|
else f;
|
|
|
|
|
2011-09-11 14:41:47 +02:00
|
|
|
mergeConfig = lhs_: rhs_:
|
|
|
|
let
|
|
|
|
lhs = optCall lhs_ { inherit pkgs; };
|
|
|
|
rhs = optCall rhs_ { inherit pkgs; };
|
|
|
|
in
|
2011-09-05 11:19:59 +02:00
|
|
|
lhs // rhs //
|
|
|
|
optionalAttrs (lhs ? packageOverrides) {
|
|
|
|
packageOverrides = pkgs:
|
|
|
|
optCall lhs.packageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["packageOverrides"] ({}) rhs) pkgs;
|
2016-07-21 15:19:11 +02:00
|
|
|
} //
|
|
|
|
optionalAttrs (lhs ? perlPackageOverrides) {
|
|
|
|
perlPackageOverrides = pkgs:
|
|
|
|
optCall lhs.perlPackageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["perlPackageOverrides"] ({}) rhs) pkgs;
|
2011-09-05 11:19:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
configType = mkOptionType {
|
2016-12-25 19:50:00 +01:00
|
|
|
name = "nixpkgs-config";
|
2017-01-15 19:36:50 +01:00
|
|
|
description = "nixpkgs config";
|
2011-09-05 11:19:59 +02:00
|
|
|
check = traceValIfNot isConfig;
|
2013-10-30 14:21:41 +01:00
|
|
|
merge = args: fold (def: mergeConfig def.value) {};
|
2011-09-05 11:19:59 +02:00
|
|
|
};
|
|
|
|
|
2016-12-25 19:50:00 +01:00
|
|
|
overlayType = mkOptionType {
|
|
|
|
name = "nixpkgs-overlay";
|
|
|
|
description = "nixpkgs overlay";
|
2018-01-31 20:02:19 +01:00
|
|
|
check = lib.isFunction;
|
2016-12-25 19:50:00 +01:00
|
|
|
merge = lib.mergeOneOption;
|
|
|
|
};
|
|
|
|
|
2018-01-10 15:19:37 +01:00
|
|
|
pkgsType = mkOptionType {
|
|
|
|
name = "nixpkgs";
|
|
|
|
description = "An evaluation of Nixpkgs; the top level attribute set of packages";
|
|
|
|
check = builtins.isAttrs;
|
|
|
|
};
|
2017-04-26 18:20:38 +02:00
|
|
|
|
2011-09-05 11:19:59 +02:00
|
|
|
in
|
|
|
|
|
2009-08-26 18:52:38 +02:00
|
|
|
{
|
2017-01-31 09:38:02 +01:00
|
|
|
options.nixpkgs = {
|
2018-01-10 15:19:37 +01:00
|
|
|
|
|
|
|
pkgs = mkOption {
|
|
|
|
defaultText = literalExample
|
|
|
|
''import "''${nixos}/.." {
|
|
|
|
inherit (config.nixpkgs) config overlays system;
|
|
|
|
}
|
|
|
|
'';
|
2018-03-01 20:58:15 +01:00
|
|
|
default = import ../../.. { inherit (cfg) config overlays system crossSystem; };
|
2018-01-10 15:19:37 +01: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 09:38:02 +01:00
|
|
|
config = mkOption {
|
2009-08-26 18:52:38 +02:00
|
|
|
default = {};
|
2011-09-05 12:14:42 +02:00
|
|
|
example = literalExample
|
2011-09-05 11:46:14 +02:00
|
|
|
''
|
2018-02-21 05:12:24 +01:00
|
|
|
{ allowBroken = true; allowUnfree = true; }
|
2011-09-05 11:46:14 +02:00
|
|
|
'';
|
2011-09-05 11:19:59 +02:00
|
|
|
type = configType;
|
2009-08-26 18:52:38 +02:00
|
|
|
description = ''
|
2011-09-05 11:46:14 +02:00
|
|
|
The configuration of the Nix Packages collection. (For
|
|
|
|
details, see the Nixpkgs documentation.) It allows you to set
|
2016-12-25 19:50:00 +01:00
|
|
|
package configuration options.
|
2018-01-10 15:19:37 +01:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2016-12-25 19:50:00 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-31 09:38:02 +01:00
|
|
|
overlays = mkOption {
|
2016-12-25 19:50:00 +01:00
|
|
|
default = [];
|
|
|
|
example = literalExample
|
|
|
|
''
|
|
|
|
[ (self: super: {
|
|
|
|
openssh = super.openssh.override {
|
|
|
|
hpnSupport = true;
|
2017-01-15 16:07:29 +01:00
|
|
|
kerberos = self.libkrb5;
|
2016-12-25 19:50:00 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
) ]
|
|
|
|
'';
|
2017-01-15 20:05:22 +01:00
|
|
|
type = types.listOf overlayType;
|
2016-12-25 19:50:00 +01: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 15:19:37 +01:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2009-08-26 18:52:38 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-03-01 20:58:15 +01: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 09:38:02 +01:00
|
|
|
system = mkOption {
|
2015-06-15 18:12:32 +02:00
|
|
|
type = types.str;
|
2015-04-08 23:12:11 +02:00
|
|
|
example = "i686-linux";
|
2010-11-23 17:07:00 +01:00
|
|
|
description = ''
|
|
|
|
Specifies the Nix platform type for which NixOS should be built.
|
2014-04-25 00:14:55 +02:00
|
|
|
If unset, it defaults to the platform type of your host system.
|
2010-11-23 17:07:00 +01:00
|
|
|
Specifying this option is useful when doing distributed
|
|
|
|
multi-platform deployment, or when building virtual machines.
|
2018-01-10 15:19:37 +01:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2010-11-23 17:07:00 +01:00
|
|
|
'';
|
|
|
|
};
|
2009-08-26 18:52:38 +02:00
|
|
|
};
|
2014-05-06 16:31:48 +02:00
|
|
|
|
|
|
|
config = {
|
2017-04-26 18:20:38 +02:00
|
|
|
_module.args = {
|
2018-01-10 15:19:37 +01:00
|
|
|
pkgs = cfg.pkgs;
|
|
|
|
pkgs_i686 = cfg.pkgs.pkgsi686Linux;
|
2017-04-26 18:20:38 +02:00
|
|
|
};
|
2014-05-06 16:31:48 +02:00
|
|
|
};
|
2010-02-27 19:37:12 +01:00
|
|
|
}
|