nixpkgs/pkgs/tools/archivers/unzip/builder.sh

15 lines
185 B
Bash
Raw Normal View History

. $stdenv/setup
builder() {
make -f unix/Makefile generic
}
installer() {
make -f unix/Makefile prefix=$out install
}
buildPhase=builder
installPhase=installer
genericBuild