nixpkgs/pkgs/development/ocaml-modules/functoria/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

25 lines
660 B
Nix

{ lib, buildDunePackage, cmdliner
, functoria-runtime
, rresult, astring, fmt, logs, bos, fpath, emile, uri
, alcotest
}:
buildDunePackage {
pname = "functoria";
inherit (functoria-runtime) version src;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ cmdliner rresult astring fmt logs bos fpath emile uri ];
# Tests are not compatible with cmdliner 1.3
doCheck = false;
checkInputs = [ alcotest functoria-runtime ];
meta = with lib; {
description = "DSL to organize functor applications";
homepage = "https://github.com/mirage/functoria";
license = licenses.isc;
maintainers = [ maintainers.vbgl ];
};
}