blade-formatter: 1.42.0 -> 1.42.1 (#376873)
[NixPkgs.git] / pkgs / development / compilers / matter-compiler / default.nix
blobb00c26c0ba5f4ba900ac7c4942024222f87e6180
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "matter_compiler";
9   gemdir = ./.;
10   exes = [ "matter_compiler" ];
12   passthru.updateScript = bundlerUpdateScript "matter-compiler";
14   meta = with lib; {
15     description = ''
16       Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool.
17       It composes an API blueprint from its serialzed AST media-type.
18     '';
19     homepage = "https://github.com/apiaryio/matter_compiler/";
20     license = licenses.mit;
21     maintainers = with maintainers; [
22       rvlander
23       manveru
24       nicknovitski
25     ];
26     platforms = platforms.unix;
27   };