2017-07-06 03:47:48 +02:00
|
|
|
{ lib, config, stdenv }:
|
2017-07-05 23:56:53 +02:00
|
|
|
|
|
|
|
rec {
|
|
|
|
# `mkDerivation` wraps the builtin `derivation` function to
|
|
|
|
# produce derivations that use this stdenv and its shell.
|
|
|
|
#
|
|
|
|
# See also:
|
|
|
|
#
|
|
|
|
# * https://nixos.org/nixpkgs/manual/#sec-using-stdenv
|
|
|
|
# Details on how to use this mkDerivation function
|
|
|
|
#
|
|
|
|
# * https://nixos.org/nix/manual/#ssec-derivation
|
|
|
|
# Explanation about derivations in general
|
|
|
|
mkDerivation =
|
2017-07-13 01:00:19 +02:00
|
|
|
{ name ? ""
|
|
|
|
|
|
|
|
, nativeBuildInputs ? []
|
2017-07-05 23:56:53 +02:00
|
|
|
, buildInputs ? []
|
|
|
|
|
|
|
|
, propagatedNativeBuildInputs ? []
|
|
|
|
, propagatedBuildInputs ? []
|
|
|
|
|
2017-07-13 01:00:19 +02:00
|
|
|
, configureFlags ? []
|
|
|
|
, # Target is not included by default because most programs don't care.
|
|
|
|
# Including it then would cause needless mass rebuilds.
|
|
|
|
#
|
|
|
|
# TODO(@Ericson2314): Make [ "build" "host" ] always the default.
|
|
|
|
configurePlatforms ? lib.optionals
|
|
|
|
(stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
[ "build" "host" ]
|
2017-07-05 23:56:53 +02:00
|
|
|
, crossConfig ? null
|
|
|
|
, meta ? {}
|
|
|
|
, passthru ? {}
|
|
|
|
, pos ? # position used in error messages and for meta.position
|
|
|
|
(if attrs.meta.description or null != null
|
|
|
|
then builtins.unsafeGetAttrPos "description" attrs.meta
|
|
|
|
else builtins.unsafeGetAttrPos "name" attrs)
|
|
|
|
, separateDebugInfo ? false
|
|
|
|
, outputs ? [ "out" ]
|
|
|
|
, __impureHostDeps ? []
|
|
|
|
, __propagatedImpureHostDeps ? []
|
|
|
|
, sandboxProfile ? ""
|
|
|
|
, propagatedSandboxProfile ? ""
|
2017-08-28 20:56:08 +02:00
|
|
|
|
|
|
|
, hardeningEnable ? []
|
|
|
|
, hardeningDisable ? []
|
2017-07-05 23:56:53 +02:00
|
|
|
, ... } @ attrs:
|
2017-08-28 20:56:08 +02:00
|
|
|
|
|
|
|
# TODO(@Ericson2314): Make this more modular, and not O(n^2).
|
2017-07-05 23:56:53 +02:00
|
|
|
let
|
2017-09-01 02:46:26 +02:00
|
|
|
supportedHardeningFlags = [ "fortify" "stackprotector" "pie" "pic" "strictoverflow" "format" "relro" "bindnow" ];
|
|
|
|
erroneousHardeningFlags = lib.subtractLists supportedHardeningFlags (hardeningEnable ++ lib.remove "all" hardeningDisable);
|
|
|
|
in if builtins.length erroneousHardeningFlags != 0
|
|
|
|
then abort ("mkDerivation was called with unsupported hardening flags: " + lib.generators.toPretty {} {
|
|
|
|
inherit erroneousHardeningFlags hardeningDisable hardeningEnable supportedHardeningFlags;
|
|
|
|
})
|
|
|
|
else let
|
2017-08-15 22:13:30 +02:00
|
|
|
dependencies = map lib.chooseDevOutputs [
|
2017-08-18 04:07:03 +02:00
|
|
|
(map (drv: drv.nativeDrv or drv) nativeBuildInputs
|
2017-08-15 22:13:30 +02:00
|
|
|
++ lib.optional separateDebugInfo ../../build-support/setup-hooks/separate-debug-info.sh
|
|
|
|
++ lib.optional stdenv.hostPlatform.isWindows ../../build-support/setup-hooks/win-dll-link.sh)
|
2017-08-18 04:07:03 +02:00
|
|
|
(map (drv: drv.crossDrv or drv) buildInputs)
|
2017-07-05 23:56:53 +02:00
|
|
|
];
|
2017-08-15 22:13:30 +02:00
|
|
|
propagatedDependencies = map lib.chooseDevOutputs [
|
2017-07-05 23:56:53 +02:00
|
|
|
(map (drv: drv.nativeDrv or drv) propagatedNativeBuildInputs)
|
|
|
|
(map (drv: drv.crossDrv or drv) propagatedBuildInputs)
|
|
|
|
];
|
|
|
|
|
|
|
|
outputs' =
|
|
|
|
outputs ++
|
2017-07-06 03:47:48 +02:00
|
|
|
(if separateDebugInfo then assert stdenv.hostPlatform.isLinux; [ "debug" ] else []);
|
2017-07-05 23:56:53 +02:00
|
|
|
|
|
|
|
derivationArg =
|
|
|
|
(removeAttrs attrs
|
|
|
|
["meta" "passthru" "crossAttrs" "pos"
|
|
|
|
"__impureHostDeps" "__propagatedImpureHostDeps"
|
|
|
|
"sandboxProfile" "propagatedSandboxProfile"])
|
|
|
|
// (let
|
|
|
|
computedSandboxProfile =
|
2017-08-15 17:30:45 +02:00
|
|
|
lib.concatMap (input: input.__propagatedSandboxProfile or [])
|
|
|
|
(stdenv.extraNativeBuildInputs
|
|
|
|
++ stdenv.extraBuildInputs
|
|
|
|
++ lib.concatLists dependencies);
|
2017-07-05 23:56:53 +02:00
|
|
|
computedPropagatedSandboxProfile =
|
2017-08-15 17:30:45 +02:00
|
|
|
lib.concatMap (input: input.__propagatedSandboxProfile or [])
|
|
|
|
(lib.concatLists propagatedDependencies);
|
2017-07-05 23:56:53 +02:00
|
|
|
computedImpureHostDeps =
|
2017-08-15 17:30:45 +02:00
|
|
|
lib.unique (lib.concatMap (input: input.__propagatedImpureHostDeps or [])
|
|
|
|
(stdenv.extraNativeBuildInputs
|
|
|
|
++ stdenv.extraBuildInputs
|
|
|
|
++ lib.concatLists dependencies));
|
2017-07-05 23:56:53 +02:00
|
|
|
computedPropagatedImpureHostDeps =
|
2017-08-15 17:30:45 +02:00
|
|
|
lib.unique (lib.concatMap (input: input.__propagatedImpureHostDeps or [])
|
|
|
|
(lib.concatLists propagatedDependencies));
|
2017-07-05 23:56:53 +02:00
|
|
|
in
|
|
|
|
{
|
2017-07-13 01:00:19 +02:00
|
|
|
name = name + lib.optionalString
|
|
|
|
(stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
stdenv.hostPlatform.config;
|
2017-07-05 23:56:53 +02:00
|
|
|
builder = attrs.realBuilder or stdenv.shell;
|
|
|
|
args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];
|
|
|
|
inherit stdenv;
|
2017-07-06 03:47:48 +02:00
|
|
|
inherit (stdenv) system;
|
2017-07-05 23:56:53 +02:00
|
|
|
userHook = config.stdenv.userHook or null;
|
|
|
|
__ignoreNulls = true;
|
|
|
|
|
2017-08-15 22:13:30 +02:00
|
|
|
nativeBuildInputs = lib.elemAt dependencies 0;
|
|
|
|
buildInputs = lib.elemAt dependencies 1;
|
2017-07-05 23:56:53 +02:00
|
|
|
|
2017-08-15 22:13:30 +02:00
|
|
|
propagatedNativeBuildInputs = lib.elemAt propagatedDependencies 0;
|
|
|
|
propagatedBuildInputs = lib.elemAt propagatedDependencies 1;
|
2017-07-13 01:00:19 +02:00
|
|
|
|
2017-07-15 19:47:21 +02:00
|
|
|
# This parameter is sometimes a string, sometimes null, and sometimes a list, yuck
|
2017-07-13 01:00:19 +02:00
|
|
|
configureFlags = let inherit (lib) optional elem; in
|
2017-07-15 19:47:21 +02:00
|
|
|
(/**/ if lib.isString configureFlags then [configureFlags]
|
|
|
|
else if configureFlags == null then []
|
|
|
|
else configureFlags)
|
2017-07-13 01:00:19 +02:00
|
|
|
++ optional (elem "build" configurePlatforms) "--build=${stdenv.buildPlatform.config}"
|
|
|
|
++ optional (elem "host" configurePlatforms) "--host=${stdenv.hostPlatform.config}"
|
|
|
|
++ optional (elem "target" configurePlatforms) "--target=${stdenv.targetPlatform.config}";
|
|
|
|
|
2017-07-06 03:47:48 +02:00
|
|
|
} // lib.optionalAttrs (stdenv.buildPlatform.isDarwin) {
|
2017-07-05 23:56:53 +02:00
|
|
|
# TODO: remove lib.unique once nix has a list canonicalization primitive
|
|
|
|
__sandboxProfile =
|
2017-07-06 01:58:24 +02:00
|
|
|
let profiles = [ stdenv.extraSandboxProfile ] ++ computedSandboxProfile ++ computedPropagatedSandboxProfile ++ [ propagatedSandboxProfile sandboxProfile ];
|
2017-07-05 23:56:53 +02:00
|
|
|
final = lib.concatStringsSep "\n" (lib.filter (x: x != "") (lib.unique profiles));
|
|
|
|
in final;
|
|
|
|
__propagatedSandboxProfile = lib.unique (computedPropagatedSandboxProfile ++ [ propagatedSandboxProfile ]);
|
2017-07-06 01:58:24 +02:00
|
|
|
__impureHostDeps = computedImpureHostDeps ++ computedPropagatedImpureHostDeps ++ __propagatedImpureHostDeps ++ __impureHostDeps ++ stdenv.__extraImpureHostDeps ++ [
|
2017-07-05 23:56:53 +02:00
|
|
|
"/dev/zero"
|
|
|
|
"/dev/random"
|
|
|
|
"/dev/urandom"
|
|
|
|
"/bin/sh"
|
|
|
|
];
|
|
|
|
__propagatedImpureHostDeps = computedPropagatedImpureHostDeps ++ __propagatedImpureHostDeps;
|
|
|
|
} // (if outputs' != [ "out" ] then {
|
|
|
|
outputs = outputs';
|
|
|
|
} else { }));
|
|
|
|
|
|
|
|
# The meta attribute is passed in the resulting attribute set,
|
|
|
|
# but it's not part of the actual derivation, i.e., it's not
|
|
|
|
# passed to the builder and is not a dependency. But since we
|
|
|
|
# include it in the result, it *is* available to nix-env for queries.
|
|
|
|
meta = { }
|
|
|
|
# If the packager hasn't specified `outputsToInstall`, choose a default,
|
|
|
|
# which is the name of `p.bin or p.out or p`;
|
|
|
|
# if he has specified it, it will be overridden below in `// meta`.
|
|
|
|
# Note: This default probably shouldn't be globally configurable.
|
|
|
|
# Services and users should specify outputs explicitly,
|
|
|
|
# unless they are comfortable with this default.
|
|
|
|
// { outputsToInstall =
|
|
|
|
let
|
|
|
|
outs = outputs'; # the value passed to derivation primitive
|
|
|
|
hasOutput = out: builtins.elem out outs;
|
|
|
|
in [( lib.findFirst hasOutput null (["bin" "out"] ++ outs) )];
|
|
|
|
}
|
|
|
|
// attrs.meta or {}
|
|
|
|
# Fill `meta.position` to identify the source location of the package.
|
|
|
|
// lib.optionalAttrs (pos != null)
|
|
|
|
{ position = pos.file + ":" + toString pos.line; }
|
|
|
|
;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
lib.addPassthru
|
|
|
|
(derivation (import ./check-meta.nix
|
|
|
|
{
|
|
|
|
inherit lib config meta derivationArg;
|
|
|
|
mkDerivationArg = attrs;
|
2017-07-06 03:47:48 +02:00
|
|
|
# Nix itself uses the `system` field of a derivation to decide where
|
|
|
|
# to build it. This is a bit confusing for cross compilation.
|
|
|
|
inherit (stdenv) system;
|
2017-07-05 23:56:53 +02:00
|
|
|
}))
|
|
|
|
( {
|
|
|
|
overrideAttrs = f: mkDerivation (attrs // (f attrs));
|
|
|
|
inherit meta passthru;
|
|
|
|
} //
|
|
|
|
# Pass through extra attributes that are not inputs, but
|
|
|
|
# should be made available to Nix expressions using the
|
|
|
|
# derivation (e.g., in assertions).
|
|
|
|
passthru);
|
|
|
|
}
|