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
-
{ lib, buildDunePackage, reason }:
2
3
buildDunePackage rec {
4
pname = "helloreason";
···
6
7
src = ./.;
8
9
-
useDune2 = true;
0
0
10
11
buildInputs = [
0
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
···
0
···
1
+
(lang dune 3.10)