nixpkgs/pkgs/tools/archivers/unzip/default.nix
Eelco Dolstra 7953d11e3a * Added unzip.
svn path=/nixpkgs/trunk/; revision=541
2003-11-25 14:40:02 +00:00

11 lines
265 B
Nix

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