summary refs log tree commit diff
path: root/pkgs/tools/archivers/zip/default.nix
blob: 9498bf089ff25cedb8d89a5b32d14746b1f57670 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "zip-2.32";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.info-zip.org/pub/infozip/src/zip232.tgz;
    md5 = "8a4da4460386e324debe97f3b7fe4d96";
  };

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