1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/development/tools/parsing/byacc/default.nix
Daniel Peebles 933ac5e9f8 Use a more permanent URL for the byacc version we're using
The other one is likely to change with every new release.
2014-09-01 19:26:21 +01:00

17 lines
365 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 = "public domain";
};
}