mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
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/'
25 lines
660 B
Nix
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 ];
|
|
};
|
|
}
|