1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/20/propagated-build-inputs-0.bash

13 lines
221 B
Bash
Raw Normal View History

2018-02-23 17:27:25 -05:00
fixupPhase() {
## Elided
if test -n "$propagatedBuildInputs"; then
mkdir -p "$out/nix-support"
2018-02-23 17:27:25 -05:00
echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs"
fi
## Elided
}