summary refs log tree commit diff
path: root/pkgs/tools/archivers/zip/default.nix
blob: c6a53b7dafd0e2dcc8347f770e635e139a570bef (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://nix.cs.uu.nl/dist/tarballs/zip232.tar.gz;
    md5 = "8a4da4460386e324debe97f3b7fe4d96";
  };
}