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.
|
|
|
|
|
2015-10-30 13:13:47 +00:00
|
|
|
{ perl, runCommand, lib }:
|
2006-11-28 16:46:12 +00:00
|
|
|
|
|
|
|
{ name
|
|
|
|
|
|
|
|
, # 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
|
|
|
|
|
|
|
|
, # 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
|
|
|
|
2015-10-30 13:13:47 +00:00
|
|
|
, # The package outputs to include. By default, only the default
|
|
|
|
# output is included.
|
|
|
|
outputsToLink ? []
|
|
|
|
|
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 ? {}
|
2006-11-28 16:46:12 +00:00
|
|
|
}:
|
|
|
|
|
2010-11-03 22:37:00 +00:00
|
|
|
runCommand name
|
2015-10-31 01:09:30 +00:00
|
|
|
rec { inherit manifest ignoreCollisions passthru pathsToLink extraPrefix postBuild buildInputs;
|
2015-08-24 23:37:54 +01:00
|
|
|
pkgs = builtins.toJSON (map (drv: {
|
2015-10-30 13:13:47 +00:00
|
|
|
paths =
|
|
|
|
[ drv ]
|
|
|
|
++ lib.concatMap (outputName: lib.optional (drv.${outputName}.outPath or null != null) drv.${outputName}) outputsToLink;
|
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;
|
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
|
|
|
''
|
|
|
|
${perl}/bin/perl -w ${./builder.pl}
|
|
|
|
eval "$postBuild"
|
|
|
|
''
|