diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-01-18 12:40:28 -0600 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-01-18 12:40:28 -0600 |
commit | c3efede502f0f9ba3b03195ac8f30fff0376c8ab (patch) | |
tree | a5897c077b3300eae1c1db3d2bca1b13f9e5e25d /discocaml/default.nix | |
parent | 00d0bfced902e97eeae5257c14134d4bc7efc710 (diff) |
Libify ocaml, add buttons to interaction.
Diffstat (limited to 'discocaml/default.nix')
-rw-r--r-- | discocaml/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/discocaml/default.nix b/discocaml/default.nix index 392c146..885a515 100644 --- a/discocaml/default.nix +++ b/discocaml/default.nix @@ -1,10 +1,11 @@ { buildDunePackage, yojson, ocaml-compiler-libs, ppx_deriving -, ppx_deriving_yojson, ppx_import, ppxlib }: +, ppx_deriving_yojson, ppx_expect, ppxlib }: buildDunePackage { pname = "discocaml"; version = "0.1.0"; minimalOcamlVersion = "5.1"; src = ./.; - buildInputs = [ ppx_deriving ppx_deriving_yojson ppx_import ppxlib yojson ]; + buildInputs = [ ppx_deriving ppx_deriving_yojson ppx_expect ppxlib yojson ]; + doCheck = true; } |