tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
reason: fix passthru tests
Weijia Wang
2 years ago
ede4f1e8
e1248311
+6
-2
2 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
reason
tests
hello
default.nix
dune-project
+5
-2
pkgs/development/compilers/reason/tests/hello/default.nix
···
1
1
-
{ lib, buildDunePackage, reason }:
1
1
+
{ buildDunePackage, ppxlib, reason }:
2
2
3
3
buildDunePackage rec {
4
4
pname = "helloreason";
···
6
6
7
7
src = ./.;
8
8
9
9
-
useDune2 = true;
9
9
+
nativeBuildInputs = [
10
10
+
reason
11
11
+
];
10
12
11
13
buildInputs = [
14
14
+
ppxlib
12
15
reason
13
16
];
14
17
+1
pkgs/development/compilers/reason/tests/hello/dune-project
···
1
1
+
(lang dune 3.10)