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