2006-11-28 17:46:12 +01:00
|
|
|
# buildEnv creates a tree of symlinks to the specified paths. This is
|
|
|
|
# a fork of the buildEnv in the Nix distribution. Most changes should
|
|
|
|
# eventually be merged back into the Nix distribution.
|
|
|
|
|
2019-02-20 10:41:20 +01:00
|
|
|
{ buildPackages, runCommand, lib, substituteAll }:
|
2006-11-28 17:46:12 +01:00
|
|
|
|
2017-07-30 22:09:12 +02:00
|
|
|
lib.makeOverridable
|
|
|
|
({ name
|
2006-11-28 17:46:12 +01:00
|
|
|
|
|
|
|
, # The manifest file (if any). A symlink $out/manifest will be
|
|
|
|
# created to it.
|
|
|
|
manifest ? ""
|
2015-08-25 00:37:54 +02:00
|
|
|
|
2006-11-28 17:46:12 +01:00
|
|
|
, # The paths to symlink.
|
|
|
|
paths
|
2015-08-25 00:37:54 +02:00
|
|
|
|
2006-11-28 17:46:12 +01:00
|
|
|
, # Whether to ignore collisions or abort.
|
|
|
|
ignoreCollisions ? false
|
|
|
|
|
2014-11-23 20:42:14 +01:00
|
|
|
, # If there is a collision, check whether the contents and permissions match
|
|
|
|
# and only if not, throw a collision error.
|
|
|
|
checkCollisionContents ? true
|
|
|
|
|
2006-11-28 17:46:12 +01:00
|
|
|
, # The paths (relative to each element of `paths') that we want to
|
|
|
|
# symlink (e.g., ["/bin"]). Any file not inside any of the
|
|
|
|
# directories in the list is not symlinked.
|
|
|
|
pathsToLink ? ["/"]
|
2009-02-20 16:40:11 +01:00
|
|
|
|
2016-01-28 11:24:18 +01:00
|
|
|
, # The package outputs to include. By default, only the default
|
|
|
|
# output is included.
|
2016-03-14 12:19:37 +01:00
|
|
|
extraOutputsToInstall ? []
|
2016-01-28 11:24:18 +01:00
|
|
|
|
2015-09-17 17:43:18 +02:00
|
|
|
, # Root the result in directory "$out${extraPrefix}", e.g. "/share".
|
|
|
|
extraPrefix ? ""
|
|
|
|
|
|
|
|
, # Shell commands to run after building the symlink tree.
|
2009-02-20 16:40:11 +01:00
|
|
|
postBuild ? ""
|
2014-07-10 00:07:12 +02:00
|
|
|
|
2015-09-17 17:43:18 +02:00
|
|
|
, # Additional inputs. Handy e.g. if using makeWrapper in `postBuild`.
|
|
|
|
buildInputs ? []
|
|
|
|
|
2014-07-10 00:07:12 +02:00
|
|
|
, passthru ? {}
|
2015-11-29 18:12:39 +01:00
|
|
|
, meta ? {}
|
2006-11-28 17:46:12 +01:00
|
|
|
}:
|
|
|
|
|
2019-02-20 10:41:20 +01:00
|
|
|
let
|
|
|
|
builder = substituteAll {
|
|
|
|
src = ./builder.pl;
|
|
|
|
inherit (builtins) storeDir;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2010-11-03 23:37:00 +01:00
|
|
|
runCommand name
|
2014-11-23 20:42:14 +01:00
|
|
|
rec {
|
|
|
|
inherit manifest ignoreCollisions checkCollisionContents passthru
|
|
|
|
meta pathsToLink extraPrefix postBuild buildInputs;
|
2015-08-25 00:37:54 +02:00
|
|
|
pkgs = builtins.toJSON (map (drv: {
|
2016-01-28 11:24:18 +01:00
|
|
|
paths =
|
2016-03-14 12:15:58 +01:00
|
|
|
# First add the usual output(s): respect if user has chosen explicitly,
|
2016-04-17 08:53:14 +02:00
|
|
|
# and otherwise use `meta.outputsToInstall`. The attribute is guaranteed
|
|
|
|
# to exist in mkDerivation-created cases. The other cases (e.g. runCommand)
|
|
|
|
# aren't expected to have multiple outputs.
|
|
|
|
(if drv.outputUnspecified or false
|
|
|
|
&& drv.meta.outputsToInstall or null != null
|
2016-03-14 12:15:58 +01:00
|
|
|
then map (outName: drv.${outName}) drv.meta.outputsToInstall
|
|
|
|
else [ drv ])
|
|
|
|
# Add any extra outputs specified by the caller of `buildEnv`.
|
2016-01-28 11:24:18 +01:00
|
|
|
++ lib.filter (p: p!=null)
|
2016-03-14 12:19:37 +01:00
|
|
|
(builtins.map (outName: drv.${outName} or null) extraOutputsToInstall);
|
2015-08-25 00:37:54 +02:00
|
|
|
priority = drv.meta.priority or 5;
|
|
|
|
}) paths);
|
2012-04-26 17:17:43 +02:00
|
|
|
preferLocalBuild = true;
|
2019-02-07 23:19:26 +01:00
|
|
|
allowSubstitutes = false;
|
2015-10-31 01:16:07 +01:00
|
|
|
# XXX: The size is somewhat arbitrary
|
|
|
|
passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null;
|
2012-04-26 17:17:43 +02:00
|
|
|
}
|
2010-11-03 23:37:00 +01:00
|
|
|
''
|
2019-02-20 10:41:20 +01:00
|
|
|
${buildPackages.perl}/bin/perl -w ${builder}
|
2010-11-03 23:37:00 +01:00
|
|
|
eval "$postBuild"
|
2017-07-30 22:09:12 +02:00
|
|
|
'')
|