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

14 lines
298 B
Nix

{stdenv, fetchurl, m4}:
assert !isNull m4;
derivation {
name = "bison-1.875";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/bison/bison-1.875.tar.bz2;
md5 = "b7f8027b249ebd4dd0cc948943a71af0";
};
stdenv = stdenv;
m4 = m4;
}