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

stdenv.mkDerivation {
  name = "unzip-5.50";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.info-zip.org/pub/infozip/src/unzip550.tar.gz;
    md5 = "798592d62e37f92571184236947122ed";
  };
}