Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 28 lines 641 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "matter_compiler"; 9 gemdir = ./.; 10 exes = [ "matter_compiler" ]; 11 12 passthru.updateScript = bundlerUpdateScript "matter-compiler"; 13 14 meta = with lib; { 15 description = '' 16 Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool. 17 It composes an API blueprint from its serialzed AST media-type. 18 ''; 19 homepage = "https://github.com/apiaryio/matter_compiler/"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ 22 rvlander 23 manveru 24 nicknovitski 25 ]; 26 platforms = platforms.unix; 27 }; 28}