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