My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/compilers/matter-compiler/default.nix

20 lines
621 B

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "matter_compiler";
gemdir = ./.;
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;
};
}