2009-08-26 17:52:38 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2011-09-05 10:19:59 +01:00
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
isConfig = x:
|
|
|
|
builtins.isAttrs x || builtins.isFunction x;
|
|
|
|
|
|
|
|
optCall = f: x:
|
|
|
|
if builtins.isFunction f
|
|
|
|
then f x
|
|
|
|
else f;
|
|
|
|
|
|
|
|
mergeConfig = lhs: rhs:
|
|
|
|
lhs // rhs //
|
|
|
|
optionalAttrs (lhs ? packageOverrides) {
|
|
|
|
packageOverrides = pkgs:
|
|
|
|
optCall lhs.packageOverrides pkgs //
|
|
|
|
optCall (attrByPath ["packageOverrides"] ({}) rhs) pkgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
configType = mkOptionType {
|
|
|
|
name = "nixpkgs config";
|
|
|
|
check = traceValIfNot isConfig;
|
|
|
|
merge = fold mergeConfig {};
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
|
|
|
nixpkgs.config = pkgs.lib.mkOption {
|
|
|
|
default = {};
|
2011-09-05 10:46:14 +01:00
|
|
|
example =
|
|
|
|
''
|
|
|
|
{ firefox.enableGeckoMediaPlayer = true;
|
|
|
|
packageOverrides = pkgs: {
|
|
|
|
firefox60Pkgs = pkgs.firefox60Pkgs.override {
|
|
|
|
enableOfficialBranding = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
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
|
|
|
|
to a set of new or overriden packages.
|
2009-08-26 17:52:38 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-11-23 16:07:00 +00:00
|
|
|
nixpkgs.system = pkgs.lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Specifies the Nix platform type for which NixOS should be built.
|
|
|
|
If unset, it defaults to the platform type of your host system
|
|
|
|
(<literal>${builtins.currentSystem}</literal>).
|
|
|
|
Specifying this option is useful when doing distributed
|
|
|
|
multi-platform deployment, or when building virtual machines.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
};
|
2010-02-27 18:37:12 +00:00
|
|
|
}
|