about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/matter-compiler/default.nix
blob: 89daf7b27ebaaa66f01a09aab67f675881243e25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "matter_compiler";
  gemdir = ./.;
  exes = [ "matter_compiler" ];

  passthru.updateScript = bundlerUpdateScript "matter-compiler";

  meta = with lib; {
    description = ''
      Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool.
      It composes an API blueprint from its serialzed AST media-type.
    '';
    homepage    = "https://github.com/apiaryio/matter_compiler/";
    license     = licenses.mit;
    maintainers = with maintainers; [ rvlander manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}