about summary refs log tree commit diff
path: root/pkgs/tools/archivers/unzip/builder.sh
blob: f0b9d031802c7654c192e5aea992ca7ac867f976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh -e

. $stdenv/setup

builder() {
    make -f unix/Makefile generic
}

installer() {
    make -f unix/Makefile prefix=$out install
}

buildPhase=builder
installPhase=installer

genericBuild