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