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
|