2022-11-11T10:12:58 byacc 20220128 -> 20221106 https://repology.org/metapackage/byacc/versions 2022-11-11T10:13:00 attrpath: byacc 2022-11-11T10:13:00 Checking auto update branch... 2022-11-11T10:13:00 No auto update branch exists 2022-11-11T10:13:01 Old version 20220128" not present in master derivation file with contents: { lib , stdenv , fetchurl }: stdenv.mkDerivation (finalAttrs: { pname = "byacc"; version = "20221106"; src = fetchurl { urls = let inherit (finalAttrs) pname version; in [ "https://invisible-mirror.net/archives/byacc/${pname}-${version}.tgz" "ftp://ftp.invisible-island.net/byacc/${pname}-${version}.tgz" ]; hash = "sha256-qJm+Inu8rJz3cA99u1qElGiPH58GF7UQdi2urOR7nRI="; }; configureFlags = [ "--program-transform-name='s,^,b,'" ]; doCheck = true; postInstall = '' ln -s $out/bin/byacc $out/bin/yacc ''; meta = with lib; { homepage = "https://invisible-island.net/byacc/byacc.html"; description = "Berkeley YACC"; longDescription = '' Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available. In contrast to bison, it is written to avoid dependencies upon a particular compiler. Byacc was written around 1990 by Robert Corbett who is the original author of bison. Byacc is noted in Lex & Yacc by John Levine et al (O'Reilly, 1992) for its compatibility with the original yacc program. Nowadays byacc is maintained by Thomas E. Dickey. ''; changelog = "https://invisible-island.net/byacc/CHANGES.html"; license = licenses.publicDomain; maintainers = with maintainers; [ AndersonTorres ]; platforms = platforms.unix; }; })