2020-05-21 00:46:26 +02:00
|
|
|
{ lib, buildDunePackage, functoria, cmdliner, fmt, alcotest }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "functoria-runtime";
|
|
|
|
|
2020-11-24 08:20:38 +01:00
|
|
|
inherit (functoria) version useDune2 src;
|
2020-05-21 00:46:26 +02:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|