summary refs log tree commit diff
path: root/pkgs/tools/archivers/unzip/default.nix
blob: c72def3731a3025d2b2f446e26a5007e1374b5cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "unzip-5.52";
  
  src = fetchurl {
    url = http://nixos.org/tarballs/unzip552.tar.gz;
    md5 = "9d23919999d6eac9217d1f41472034a9";
  };

  buildPhase = "make -f unix/Makefile generic";

  installPhase = "make -f unix/Makefile prefix=$out install";

  meta = {
    homepage = http://www.info-zip.org;
  };
}