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