3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.functoria-runtime: init at 3.1.0

This commit is contained in:
sternenseemann 2020-05-21 00:46:26 +02:00 committed by Vincent Laporte
parent 801cd20305
commit bba5a57c22
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, buildDunePackage, functoria, cmdliner, fmt, alcotest }:
buildDunePackage {
pname = "functoria-runtime";
inherit (functoria) version src;
propagatedBuildInputs = [ cmdliner fmt ];
checkInputs = [ alcotest functoria];
doCheck = true;
meta = with lib; {
inherit (functoria.meta) homepage license;
description = "Runtime support library for functoria-generated code";
maintainers = [ maintainers.sternenseemann ];
};
}

View file

@ -290,6 +290,8 @@ let
functoria = callPackage ../development/ocaml-modules/functoria { };
functoria-runtime = callPackage ../development/ocaml-modules/functoria/runtime.nix { };
functory = callPackage ../development/ocaml-modules/functory { };
gen = callPackage ../development/ocaml-modules/gen { };