2019-04-30 08:33:59 -07:00
|
|
|
{ lib, bundlerApp }:
|
2015-12-17 03:45:42 -08:00
|
|
|
|
2019-04-30 08:33:59 -07:00
|
|
|
bundlerApp {
|
|
|
|
pname = "matter_compiler";
|
2017-01-17 15:26:00 -08:00
|
|
|
gemdir = ./.;
|
2019-04-30 08:33:59 -07:00
|
|
|
exes = [ "matter_compiler" ];
|
2015-12-17 03:45:42 -08:00
|
|
|
|
|
|
|
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;
|
2019-04-30 08:33:59 -07:00
|
|
|
maintainers = with maintainers; [ rvlander manveru ];
|
2015-12-17 03:45:42 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|