summary refs log tree commit diff
path: root/pkgs/development/libraries/dclib/builder.sh
blob: 9c6bbf5b1f60095173d4ef25b954df4dec6fc61c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
addInputsHook=addBzip2
addBzip2() {
    bzip2=$(type -tP bzip2)
    test -n $bzip2 || fail
    buildInputs="$(dirname $(dirname $bzip2)) $buildInputs"
}

source $stdenv/setup

genericBuild