nixpkgs/pkgs/tools/archivers/unzip/5.52.nix

19 lines
363 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "unzip-5.52";
src = fetchurl {
url = http://nixos.org/tarballs/unzip552.tar.gz;
md5 = "9d23919999d6eac9217d1f41472034a9";
};
buildPhase = "make -f unix/Makefile generic";
installPhase = "make -f unix/Makefile prefix=$out install";
meta = {
homepage = http://www.info-zip.org;
};
}