reason: fix passthru tests

This commit is contained in:
Weijia Wang 2023-09-22 18:26:46 +02:00
parent e12483116b
commit ede4f1e8f5
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ lib, buildDunePackage, reason }:
{ buildDunePackage, ppxlib, reason }:
buildDunePackage rec {
pname = "helloreason";
@ -6,9 +6,12 @@ buildDunePackage rec {
src = ./.;
useDune2 = true;
nativeBuildInputs = [
reason
];
buildInputs = [
ppxlib
reason
];

View File

@ -0,0 +1 @@
(lang dune 3.10)