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