mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 21:24:03 +00:00
10 lines
183 B
Bash
10 lines
183 B
Bash
addInputsHook=addBzip2
|
|
addBzip2() {
|
|
bzip2=$(type -tP bzip2)
|
|
test -n $bzip2 || fail
|
|
buildInputs="$(dirname $(dirname $bzip2)) $buildInputs"
|
|
}
|
|
|
|
. $stdenv/setup
|
|
|
|
genericBuild |