2015-12-17 11:45:42 +00:00
|
|
|
|
|
|
|
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "matter_compiler-0.5.1";
|
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-17 23:26:00 +00:00
|
|
|
gemdir = ./.;
|
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.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/apiaryio/matter_compiler/;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ rvlander ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|