nixpkgs/pkgs/development/compilers/matter-compiler/default.nix

21 lines
619 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2019-04-30 15:33:59 +00:00
bundlerApp {
pname = "matter_compiler";
2017-01-17 23:26:00 +00:00
gemdir = ./.;
2019-04-30 15:33:59 +00:00
exes = [ "matter_compiler" ];
passthru.updateScript = bundlerUpdateScript "matter-compiler";
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 manveru nicknovitski ];
platforms = platforms.unix;
};
}