Merge pull request #168921 from risicle/ris-re2c-passthru-tests

re2c: add some key reverse dependencies to passthru.tests

authored by

Sandro and committed by
GitHub
5d589feb 6951b5c1

+8
+8
pkgs/development/tools/parsing/re2c/default.nix
··· 4 4 , autoreconfHook 5 5 , nix-update-script 6 6 , python3 7 + 8 + # for passthru.tests 9 + , ninja 10 + , php 11 + , spamassassin 7 12 }: 8 13 9 14 stdenv.mkDerivation rec { ··· 32 37 passthru = { 33 38 updateScript = nix-update-script { 34 39 attrPath = pname; 40 + }; 41 + tests = { 42 + inherit ninja php spamassassin; 35 43 }; 36 44 }; 37 45