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