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

11 lines
265 B
Nix
Raw Normal View History

{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;
}