2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2015-12-17 11:45:42 +00:00
|
|
|
|
2019-04-30 16:33:59 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "matter_compiler";
|
2017-01-17 23:26:00 +00:00
|
|
|
gemdir = ./.;
|
2019-04-30 16:33:59 +01:00
|
|
|
exes = [ "matter_compiler" ];
|
2015-12-17 11:45:42 +00:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "matter-compiler";
|
|
|
|
|
2015-12-17 11:45:42 +00: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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/apiaryio/matter_compiler/";
|
2015-12-17 11:45:42 +00:00
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ rvlander manveru nicknovitski ];
|
2015-12-17 11:45:42 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|