blob: 885a515ba4199bac0669922be73e5037f8d62bf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ buildDunePackage, yojson, ocaml-compiler-libs, ppx_deriving
, ppx_deriving_yojson, ppx_expect, ppxlib }:
buildDunePackage {
pname = "discocaml";
version = "0.1.0";
minimalOcamlVersion = "5.1";
src = ./.;
buildInputs = [ ppx_deriving ppx_deriving_yojson ppx_expect ppxlib yojson ];
doCheck = true;
}
|