about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/default.nix
blob: 085b1e0f63641f03a01103de5931fb0fe95789b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, m4}:
assert m4 != null;
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;
}