about summary refs log tree commit diff
path: root/pkgs-ng/development/tools/parsing/bison/default.fix
blob: fc8941b76f346cab9261cea3501d0ae9e00df6f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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;
}