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