2006-11-28 16:46:12 +00: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 09:41:20 +00:00
|
|
|
{ buildPackages, runCommand, lib, substituteAll }:
|
2006-11-28 16:46:12 +00:00
|
|
|
|
2017-07-30 21:09:12 +01:00
|
|
|
lib.makeOverridable
|
|
|
|
({ name
|
2006-11-28 16:46:12 +00:00
|
|
|
|
|
|
|
, # The manifest file (if any). A symlink $out/manifest will be
|
|
|
|
# created to it.
|
|
|
|
manifest ? ""
|
2015-08-24 23:37:54 +01:00
|
|
|
|
2006-11-28 16:46:12 +00:00
|
|
|
, # The paths to symlink.
|
|
|
|
paths
|
2015-08-24 23:37:54 +01:00
|
|
|
|
2006-11-28 16:46:12 +00:00
|
|
|
, # Whether to ignore collisions or abort.
|
|
|
|
ignoreCollisions ? false
|
|
|
|
|
2014-11-23 19:42:14 +00: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 16:46:12 +00: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 15:40:11 +00:00
|
|
|
|
2016-01-28 10:24:18 +00:00
|
|
|
, # The package outputs to include. By default, only the default
|
|
|
|
# output is included.
|
2016-03-14 11:19:37 +00:00
|
|
|
extraOutputsToInstall ? []
|
2016-01-28 10:24:18 +00:00
|
|
|
|
2015-09-17 16:43:18 +01:00
|
|
|
, # Root the result in directory "$out${extraPrefix}", e.g. "/share".
|
|
|
|
extraPrefix ? ""
|
|
|
|
|
|
|
|
, # Shell commands to run after building the symlink tree.
|
2009-02-20 15:40:11 +00:00
|
|
|
postBuild ? ""
|
2014-07-09 23:07:12 +01:00
|
|
|
|
2015-09-17 16:43:18 +01:00
|
|
|
, # Additional inputs. Handy e.g. if using makeWrapper in `postBuild`.
|
|
|
|
buildInputs ? []
|
|
|
|
|
2014-07-09 23:07:12 +01:00
|
|
|
, passthru ? {}
|
2015-11-29 17:12:39 +00:00
|
|
|
, meta ? {}
|
2006-11-28 16:46:12 +00:00
|
|
|
}:
|
|
|
|
|
2019-02-20 09:41:20 +00:00
|
|
|
let
|
|
|
|
builder = substituteAll {
|
|
|
|
src = ./builder.pl;
|
|
|
|
inherit (builtins) storeDir;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2010-11-03 22:37:00 +00:00
|
|
|
runCommand name
|
2014-11-23 19:42:14 +00:00
|
|
|
rec {
|
|
|
|
inherit manifest ignoreCollisions checkCollisionContents passthru
|
|
|
|
meta pathsToLink extraPrefix postBuild buildInputs;
|
2015-08-24 23:37:54 +01:00
|
|
|
pkgs = builtins.toJSON (map (drv: {
|
2016-01-28 10:24:18 +00:00
|
|
|
paths =
|
2016-03-14 11:15:58 +00:00
|
|
|
# First add the usual output(s): respect if user has chosen explicitly,
|
2016-04-17 07:53:14 +01: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 11:15:58 +00:00
|
|
|
then map (outName: drv.${outName}) drv.meta.outputsToInstall
|
|
|
|
else [ drv ])
|
|
|
|
# Add any extra outputs specified by the caller of `buildEnv`.
|
2016-01-28 10:24:18 +00:00
|
|
|
++ lib.filter (p: p!=null)
|
2016-03-14 11:19:37 +00:00
|
|
|
(builtins.map (outName: drv.${outName} or null) extraOutputsToInstall);
|
2015-08-24 23:37:54 +01:00
|
|
|
priority = drv.meta.priority or 5;
|
|
|
|
}) paths);
|
2012-04-26 16:17:43 +01:00
|
|
|
preferLocalBuild = true;
|
2019-02-07 22:19:26 +00:00
|
|
|
allowSubstitutes = false;
|
2015-10-31 00:16:07 +00:00
|
|
|
# XXX: The size is somewhat arbitrary
|
|
|
|
passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null;
|
2012-04-26 16:17:43 +01:00
|
|
|
}
|
2010-11-03 22:37:00 +00:00
|
|
|
''
|
2019-02-20 09:41:20 +00:00
|
|
|
${buildPackages.perl}/bin/perl -w ${builder}
|
2010-11-03 22:37:00 +00:00
|
|
|
eval "$postBuild"
|
2017-07-30 21:09:12 +01:00
|
|
|
'')
|