nixpkgs/pkgs/tools/archivers/unzip/default.nix
Eelco Dolstra aa84bce64d * Get rid of all references to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=13299
2008-11-14 16:57:19 +00:00

15 lines
273 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "unzip-5.52";
builder = ./builder.sh;
src = fetchurl {
url = http://nixos.org/tarballs/unzip552.tar.gz;
md5 = "9d23919999d6eac9217d1f41472034a9";
};
meta = {
homepage = http://www.info-zip.org;
};
}