summary refs log tree commit diff
path: root/pkgs/tools/archivers/unzip/default.nix
blob: b7114e190bf08ad5026c0b3662dd0367b3f2a12e (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://ftp.info-zip.org/pub/infozip/src/unzip552.tar.gz;
    md5 = "9d23919999d6eac9217d1f41472034a9";
  };
}