1af17b9d7f
svn path=/nixpkgs/trunk/; revision=2515
15 lines
185 B
Bash
15 lines
185 B
Bash
. $stdenv/setup
|
|
|
|
builder() {
|
|
make -f unix/Makefile generic
|
|
}
|
|
|
|
installer() {
|
|
make -f unix/Makefile prefix=$out install
|
|
}
|
|
|
|
buildPhase=builder
|
|
installPhase=installer
|
|
|
|
genericBuild
|