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