3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/parsing/byacc/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

17 lines
381 B
Nix

{ 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 = stdenv.lib.licenses.publicDomain;
};
}