summary refs log tree commit diff
path: root/pkgs/tools/networking/dhcp/builder.sh
blob: 96e8a57fe6a15d4a494b085a0997a8bb9d862064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source $stdenv/setup

export DESTDIR=$out

configurePhase=configurePhase
configurePhase() {
    ./configure
    prefix=$out
}

preBuild=preBuild
preBuild() {
    substituteInPlace client/scripts/linux --replace /bin/bash $shell
}

genericBuild