Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp rec { 8 pname = "sublime_syntax_convertor"; 9 gemdir = ./.; 10 exes = [ "sublime_syntax_convertor" ]; 11 12 passthru.updateScript = bundlerUpdateScript pname; 13 14 meta = { 15 description = "Converts tmLanguage to sublime-syntax"; 16 homepage = "https://github.com/aziz/SublimeSyntaxConvertor/"; 17 license = lib.licenses.mit; 18 maintainers = with lib.maintainers; [ laalsaas ]; 19 }; 20}