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

bundlerEnv {
  name = "matter_compiler-0.5.1";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  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;
  };
}