Merge pull request #256723 from wegank/reason-test

reason: fix passthru tests

authored by Weijia Wang and committed by GitHub 8ad2a44a d89d1ca0

+6 -2
+5 -2
pkgs/development/compilers/reason/tests/hello/default.nix
··· 1 - { lib, buildDunePackage, reason }: 1 + { buildDunePackage, ppxlib, reason }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "helloreason"; ··· 6 6 7 7 src = ./.; 8 8 9 - useDune2 = true; 9 + nativeBuildInputs = [ 10 + reason 11 + ]; 10 12 11 13 buildInputs = [ 14 + ppxlib 12 15 reason 13 16 ]; 14 17
+1
pkgs/development/compilers/reason/tests/hello/dune-project
··· 1 + (lang dune 3.10)