forked from mirrors/nixpkgs
ocamlPackages.functoria-runtime: init at 3.1.0
This commit is contained in:
parent
801cd20305
commit
bba5a57c22
17
pkgs/development/ocaml-modules/functoria/runtime.nix
Normal file
17
pkgs/development/ocaml-modules/functoria/runtime.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue