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

15 lines
190 B
Bash
Raw Normal View History

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