mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
c27109efa0
svn path=/nixpkgs/trunk/; revision=3746
10 lines
189 B
Bash
10 lines
189 B
Bash
addInputsHook=addBzip2
|
|
addBzip2() {
|
|
bzip2=$(type -tP bzip2)
|
|
test -n $bzip2 || fail
|
|
buildInputs="$(dirname $(dirname $bzip2)) $buildInputs"
|
|
}
|
|
|
|
source $stdenv/setup
|
|
|
|
genericBuild
|