core/pkgs/build-support/buildenv/default.nix

77 lines
2.5 KiB
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
# buildEnv creates a tree of symlinks to the specified paths. This is
# a fork of the hardcoded buildEnv in the Nix distribution.
{ buildPackages, runCommand, lib, substituteAll }:
let
builder = substituteAll {
src = ./builder.pl;
inherit (builtins) storeDir;
};
2024-05-13 21:24:10 +00:00
in lib.makeOverridable ({ name
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
, # The manifest file (if any). A symlink $out/manifest will be
2024-05-02 00:46:19 +00:00
# created to it.
manifest ? ""
2024-05-13 21:24:10 +00:00
, # The paths to symlink.
2024-05-02 00:46:19 +00:00
paths
2024-05-13 21:24:10 +00:00
, # Whether to ignore collisions or abort.
2024-05-02 00:46:19 +00:00
ignoreCollisions ? false
2024-05-13 21:24:10 +00:00
, # If there is a collision, check whether the contents and permissions match
2024-05-02 00:46:19 +00:00
# and only if not, throw a collision error.
checkCollisionContents ? true
2024-05-13 21:24:10 +00:00
, # The paths (relative to each element of `paths') that we want to
2024-05-02 00:46:19 +00:00
# symlink (e.g., ["/bin"]). Any file not inside any of the
# directories in the list is not symlinked.
2024-05-13 21:24:10 +00:00
pathsToLink ? [ "/" ]
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
, # The package outputs to include. By default, only the default
2024-05-02 00:46:19 +00:00
# output is included.
2024-05-13 21:24:10 +00:00
extraOutputsToInstall ? [ ]
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
, # Root the result in directory "$out${extraPrefix}", e.g. "/share".
2024-05-02 00:46:19 +00:00
extraPrefix ? ""
2024-05-13 21:24:10 +00:00
, # Shell commands to run after building the symlink tree.
2024-05-02 00:46:19 +00:00
postBuild ? ""
2024-05-13 21:24:10 +00:00
# Additional inputs
, nativeBuildInputs ? [ ] # Handy e.g. if using makeWrapper in `postBuild`.
, buildInputs ? [ ]
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
, passthru ? { }, meta ? { } }:
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
runCommand name rec {
inherit manifest ignoreCollisions checkCollisionContents passthru meta
pathsToLink extraPrefix postBuild nativeBuildInputs buildInputs;
2024-05-02 00:46:19 +00:00
pkgs = builtins.toJSON (map (drv: {
paths =
# First add the usual output(s): respect if user has chosen explicitly,
# 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.
2024-05-13 21:24:10 +00:00
(if (!drv ? outputSpecified || !drv.outputSpecified)
&& drv.meta.outputsToInstall or null != null then
map (outName: drv.${outName}) drv.meta.outputsToInstall
else
[ drv ])
2024-05-02 00:46:19 +00:00
# Add any extra outputs specified by the caller of `buildEnv`.
2024-05-13 21:24:10 +00:00
++ lib.filter (p: p != null)
(builtins.map (outName: drv.${outName} or null) extraOutputsToInstall);
2024-05-02 00:46:19 +00:00
priority = drv.meta.priority or 5;
}) paths);
preferLocalBuild = true;
allowSubstitutes = false;
# XXX: The size is somewhat arbitrary
2024-05-13 21:24:10 +00:00
passAsFile =
if builtins.stringLength pkgs >= 128 * 1024 then [ "pkgs" ] else [ ];
} ''
2024-05-02 00:46:19 +00:00
${buildPackages.perl}/bin/perl -w ${builder}
eval "$postBuild"
'')