2018-05-31 20:55:06 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-08-26 17:52:38 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2011-09-05 10:19:59 +01:00
|
|
|
|
|
|
|
let
|
2018-01-10 14:19:37 +00:00
|
|
|
cfg = config.nixpkgs;
|
|
|
|
|
2011-09-05 10:19:59 +01:00
|
|
|
isConfig = x:
|
2018-01-31 19:02:19 +00:00
|
|
|
builtins.isAttrs x || lib.isFunction x;
|
2011-09-05 10:19:59 +01:00
|
|
|
|
|
|
|
optCall = f: x:
|
2018-01-31 19:02:19 +00:00
|
|
|
if lib.isFunction f
|
2011-09-05 10:19:59 +01:00
|
|
|
then f x
|
|
|
|
else f;
|
|
|
|
|
2011-09-11 13:41:47 +01:00
|
|
|
mergeConfig = lhs_: rhs_:
|
|
|
|
let
|
|
|
|
lhs = optCall lhs_ { inherit pkgs; };
|
|
|
|
rhs = optCall rhs_ { inherit pkgs; };
|
|
|
|
in
|
2011-09-05 10:19:59 +01:00
|
|
|
lhs // rhs //
|
|
|
|
optionalAttrs (lhs ? packageOverrides) {
|
|
|
|
packageOverrides = pkgs:
|
|
|
|
optCall lhs.packageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["packageOverrides"] ({}) rhs) pkgs;
|
2016-07-21 14:19:11 +01:00
|
|
|
} //
|
|
|
|
optionalAttrs (lhs ? perlPackageOverrides) {
|
|
|
|
perlPackageOverrides = pkgs:
|
|
|
|
optCall lhs.perlPackageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["perlPackageOverrides"] ({}) rhs) pkgs;
|
2011-09-05 10:19:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configType = mkOptionType {
|
2016-12-25 18:50:00 +00:00
|
|
|
name = "nixpkgs-config";
|
2017-01-15 18:36:50 +00:00
|
|
|
description = "nixpkgs config";
|
2018-04-02 19:45:12 +01:00
|
|
|
check = x:
|
|
|
|
let traceXIfNot = c:
|
|
|
|
if c x then true
|
|
|
|
else lib.traceSeqN 1 x false;
|
|
|
|
in traceXIfNot isConfig;
|
2013-10-30 13:21:41 +00:00
|
|
|
merge = args: fold (def: mergeConfig def.value) {};
|
2011-09-05 10:19:59 +01:00
|
|
|
};
|
|
|
|
|
2016-12-25 18:50:00 +00:00
|
|
|
overlayType = mkOptionType {
|
|
|
|
name = "nixpkgs-overlay";
|
|
|
|
description = "nixpkgs overlay";
|
2018-01-31 19:02:19 +00:00
|
|
|
check = lib.isFunction;
|
2016-12-25 18:50:00 +00:00
|
|
|
merge = lib.mergeOneOption;
|
|
|
|
};
|
|
|
|
|
2018-01-10 14:19:37 +00:00
|
|
|
pkgsType = mkOptionType {
|
|
|
|
name = "nixpkgs";
|
|
|
|
description = "An evaluation of Nixpkgs; the top level attribute set of packages";
|
|
|
|
check = builtins.isAttrs;
|
|
|
|
};
|
2017-04-26 17:20:38 +01:00
|
|
|
|
2011-09-05 10:19:59 +01:00
|
|
|
in
|
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
{
|
2017-01-31 08:38:02 +00:00
|
|
|
options.nixpkgs = {
|
2018-01-10 14:19:37 +00:00
|
|
|
|
|
|
|
pkgs = mkOption {
|
|
|
|
defaultText = literalExample
|
|
|
|
''import "''${nixos}/.." {
|
2018-05-31 20:55:06 +01:00
|
|
|
inherit (config.nixpkgs) config overlays localSystem crossSystem;
|
2018-01-10 14:19:37 +00:00
|
|
|
}
|
|
|
|
'';
|
2018-04-05 20:22:45 +01:00
|
|
|
default = import ../../.. {
|
2018-05-31 20:55:06 +01:00
|
|
|
localSystem = { inherit (cfg) system; } // cfg.localSystem;
|
|
|
|
inherit (cfg) config overlays crossSystem;
|
2018-04-05 20:22:45 +01:00
|
|
|
};
|
2018-01-10 14:19:37 +00: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
|
2018-04-05 20:22:45 +01:00
|
|
|
relative path. The <code>config</code>, <code>overlays</code>,
|
|
|
|
<code>localSystem</code>, and <code>crossSystem</code> come
|
|
|
|
from this option's siblings.
|
2018-01-10 14:19:37 +00:00
|
|
|
|
|
|
|
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 08:38:02 +00:00
|
|
|
config = mkOption {
|
2009-08-26 17:52:38 +01:00
|
|
|
default = {};
|
2011-09-05 11:14:42 +01:00
|
|
|
example = literalExample
|
2011-09-05 10:46:14 +01:00
|
|
|
''
|
2018-02-21 04:12:24 +00:00
|
|
|
{ allowBroken = true; allowUnfree = true; }
|
2011-09-05 10:46:14 +01:00
|
|
|
'';
|
2011-09-05 10:19:59 +01:00
|
|
|
type = configType;
|
2009-08-26 17:52:38 +01:00
|
|
|
description = ''
|
2011-09-05 10:46:14 +01:00
|
|
|
The configuration of the Nix Packages collection. (For
|
|
|
|
details, see the Nixpkgs documentation.) It allows you to set
|
2016-12-25 18:50:00 +00:00
|
|
|
package configuration options.
|
2018-01-10 14:19:37 +00:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2016-12-25 18:50:00 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-31 08:38:02 +00:00
|
|
|
overlays = mkOption {
|
2016-12-25 18:50:00 +00:00
|
|
|
default = [];
|
|
|
|
example = literalExample
|
|
|
|
''
|
|
|
|
[ (self: super: {
|
|
|
|
openssh = super.openssh.override {
|
|
|
|
hpnSupport = true;
|
2017-01-15 15:07:29 +00:00
|
|
|
kerberos = self.libkrb5;
|
2016-12-25 18:50:00 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
) ]
|
|
|
|
'';
|
2017-01-15 19:05:22 +00:00
|
|
|
type = types.listOf overlayType;
|
2016-12-25 18:50:00 +00: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 14:19:37 +00:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2009-08-26 17:52:38 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-04-05 20:22:45 +01:00
|
|
|
localSystem = mkOption {
|
|
|
|
type = types.attrs; # TODO utilize lib.systems.parsedPlatform
|
2018-05-31 20:55:06 +01:00
|
|
|
default = { system = builtins.currentSystem; };
|
2018-04-05 20:22:45 +01:00
|
|
|
example = { system = "aarch64-linux"; config = "aarch64-unknown-linux-gnu"; };
|
|
|
|
defaultText = literalExample
|
|
|
|
''(import "''${nixos}/../lib").lib.systems.examples.aarch64-multiplatform'';
|
|
|
|
description = ''
|
|
|
|
Specifies the platform on which NixOS should be built. When
|
|
|
|
<code>nixpkgs.crossSystem</code> is unset, it also specifies
|
|
|
|
the platform <emphasis>for</emphasis> which NixOS should be
|
|
|
|
built. If this option is unset, it defaults to the platform
|
|
|
|
type of the machine where evaluation happens. Specifying this
|
|
|
|
option is useful when doing distributed multi-platform
|
|
|
|
deployment, or when building virtual machines. See its
|
|
|
|
description in the Nixpkgs manual for more details.
|
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-03-01 19:58:15 +00:00
|
|
|
crossSystem = mkOption {
|
2018-04-05 20:22:45 +01:00
|
|
|
type = types.nullOr types.attrs; # TODO utilize lib.systems.parsedPlatform
|
2018-03-01 19:58:15 +00:00
|
|
|
default = null;
|
2018-04-05 20:22:45 +01:00
|
|
|
example = { system = "aarch64-linux"; config = "aarch64-unknown-linux-gnu"; };
|
|
|
|
defaultText = literalExample
|
|
|
|
''(import "''${nixos}/../lib").lib.systems.examples.aarch64-multiplatform'';
|
2018-03-01 19:58:15 +00:00
|
|
|
description = ''
|
2018-04-05 20:22:45 +01:00
|
|
|
Specifies the platform for which NixOS should be
|
|
|
|
built. Specify this only if it is different from
|
|
|
|
<code>nixpkgs.localSystem</code>, the platform
|
|
|
|
<emphasis>on</emphasis> which NixOS should be built. In other
|
|
|
|
words, specify this to cross-compile NixOS. Otherwise it
|
|
|
|
should be set as null, the default. See its description in the
|
|
|
|
Nixpkgs manual for more details.
|
2018-03-01 19:58:15 +00:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-31 08:38:02 +00:00
|
|
|
system = mkOption {
|
2015-06-15 17:12:32 +01:00
|
|
|
type = types.str;
|
2015-04-08 22:12:11 +01:00
|
|
|
example = "i686-linux";
|
2010-11-23 16:07:00 +00:00
|
|
|
description = ''
|
2018-04-05 20:22:45 +01:00
|
|
|
Specifies the Nix platform type on which NixOS should be built.
|
|
|
|
It is better to specify <code>nixpkgs.localSystem</code> instead.
|
|
|
|
<programlisting>
|
|
|
|
{
|
|
|
|
nixpkgs.system = ..;
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
is the same as
|
|
|
|
<programlisting>
|
|
|
|
{
|
|
|
|
nixpkgs.localSystem.system = ..;
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
See <code>nixpkgs.localSystem</code> for more information.
|
2018-01-10 14:19:37 +00:00
|
|
|
|
|
|
|
Ignored when <code>nixpkgs.pkgs</code> is set.
|
2010-11-23 16:07:00 +00:00
|
|
|
'';
|
|
|
|
};
|
2009-08-26 17:52:38 +01:00
|
|
|
};
|
2014-05-06 15:31:48 +01:00
|
|
|
|
|
|
|
config = {
|
2017-04-26 17:20:38 +01:00
|
|
|
_module.args = {
|
2018-01-10 14:19:37 +00:00
|
|
|
pkgs = cfg.pkgs;
|
|
|
|
pkgs_i686 = cfg.pkgs.pkgsi686Linux;
|
2017-04-26 17:20:38 +01:00
|
|
|
};
|
2014-05-06 15:31:48 +01:00
|
|
|
};
|
2010-02-27 18:37:12 +00:00
|
|
|
}
|