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