2014-04-14 15:26:48 +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
|
|
|
|
isConfig = x:
|
|
|
|
builtins.isAttrs x || builtins.isFunction x;
|
|
|
|
|
|
|
|
optCall = f: x:
|
|
|
|
if builtins.isFunction f
|
|
|
|
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 {
|
|
|
|
name = "nixpkgs config";
|
|
|
|
check = traceValIfNot isConfig;
|
2013-10-30 13:21:41 +00:00
|
|
|
merge = args: fold (def: mergeConfig def.value) {};
|
2011-09-05 10:19:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
2011-09-05 11:14:42 +01:00
|
|
|
nixpkgs.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
|
|
|
''
|
|
|
|
{ firefox.enableGeckoMediaPlayer = true;
|
|
|
|
packageOverrides = pkgs: {
|
|
|
|
firefox60Pkgs = pkgs.firefox60Pkgs.override {
|
|
|
|
enableOfficialBranding = true;
|
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
};
|
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
|
|
|
|
package configuration options, and to override packages
|
|
|
|
globally through the <varname>packageOverrides</varname>
|
|
|
|
option. The latter is a function that takes as an argument
|
|
|
|
the <emphasis>original</emphasis> Nixpkgs, and must evaluate
|
2013-08-10 22:07:13 +01:00
|
|
|
to a set of new or overridden packages.
|
2009-08-26 17:52:38 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-09-05 11:14:42 +01:00
|
|
|
nixpkgs.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 = ''
|
|
|
|
Specifies the Nix platform type for which NixOS should be built.
|
2014-04-24 23:14:55 +01:00
|
|
|
If unset, it defaults to the platform type of your host system.
|
2010-11-23 16:07:00 +00:00
|
|
|
Specifying this option is useful when doing distributed
|
|
|
|
multi-platform deployment, or when building virtual machines.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
};
|
2014-05-06 15:31:48 +01:00
|
|
|
|
|
|
|
config = {
|
2015-08-05 16:29:08 +01:00
|
|
|
_module.args.pkgs = import ../../.. {
|
2014-05-06 15:31:48 +01:00
|
|
|
system = config.nixpkgs.system;
|
|
|
|
|
|
|
|
inherit (config.nixpkgs) config;
|
|
|
|
};
|
|
|
|
};
|
2010-02-27 18:37:12 +00:00
|
|
|
}
|