18 lines
452 B
Nix
18 lines
452 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|