mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
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 ];
|
|
};
|
|
}
|