mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
13 lines
167 B
Bash
13 lines
167 B
Bash
|
prePhases+=" moveBuildDir"
|
||
|
|
||
|
moveBuildDir() {
|
||
|
mkdir -p $out/.build
|
||
|
cd $out/.build
|
||
|
}
|
||
|
|
||
|
postPhases+=" removeBuildDir"
|
||
|
|
||
|
removeBuildDir() {
|
||
|
rm -rf $out/.build
|
||
|
}
|