nixpkgs/pkgs/tools/compression/bzip2/default.nix
Eelco Dolstra 026ff9466a * Rename .fix -> .nix.
svn path=/nixpkgs/trunk/; revision=511
2003-11-18 12:12:56 +00:00

11 lines
270 B
Nix

{stdenv, fetchurl}: derivation {
name = "bzip2-1.0.2";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://sources.redhat.com/pub/bzip2/v102/bzip2-1.0.2.tar.gz;
md5 = "ee76864958d568677f03db8afad92beb";
};
stdenv = stdenv;
}