Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
446 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp rec {
pname = "sublime_syntax_convertor";
gemdir = ./.;
exes = [ "sublime_syntax_convertor" ];
passthru.updateScript = bundlerUpdateScript pname;
meta = {
description = "Converts tmLanguage to sublime-syntax";
homepage = "https://github.com/aziz/SublimeSyntaxConvertor/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ laalsaas ];
};
}