about summary refs log tree commit diff
path: root/pkgs/tools/archivers/unzip/default.nix
blob: eda3900e39e94ac64b6392927af17fded40fec74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "unzip-5.52";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/unzip552.tar.gz;
    md5 = "9d23919999d6eac9217d1f41472034a9";
  };
}