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