summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/byacc/default.nix
blob: 8842c8723b1ef712614febd9568e2d783699c23d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "byacc-1.9";

  src = fetchurl {
    url = ftp://invisible-island.net/byacc/byacc-20140715.tgz;
    sha256 = "1rbzx5ipkvih9rjfdfv6310wcr6mxjbdlsh9zcv5aaz6yxxxil7c";
  };

  meta = { 
    description = "Berkeley YACC";
    homepage = http://dickey.his.com/byacc/byacc.html;
    license = "public domain";
  };
}