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

bundlerEnv {
  name = "matter_compiler-0.5.1";

  inherit ruby;
  gemdir = ./.;

  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 ];
    platforms   = platforms.unix;
  };
}