nixpkgs/pkgs/development/tools/parsing/bison/bison-new.nix
Eelco Dolstra 2fcc5fdb08 * "!isNull x" -> "x != null". Done automatically. Hope nothing
broke.

svn path=/nixpkgs/trunk/; revision=870
2004-03-29 10:25:25 +00:00

16 lines
306 B
Nix

{stdenv, fetchurl, m4}:
assert m4 != null;
derivation {
name = "bison-1.875c";
system = stdenv.system;
builder = ./builder-new.sh;
src = fetchurl {
url = ftp://alpha.gnu.org/pub/gnu/bison/bison-1.875c.tar.gz;
md5 = "bba317725fc84013b9d0a6b2576dfaa7";
};
stdenv = stdenv;
m4 = m4;
}