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