Merge pull request #286401 from laalsaas/sublime-syntax-converter

Sublime syntax converter
This commit is contained in:
Leona Maroni 2024-07-10 13:19:30 +02:00 committed by GitHub
commit 990ecac19b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,3 @@
source 'https://rubygems.org' do
gem 'sublime_syntax_convertor'
end

View File

@ -0,0 +1,19 @@
GEM
specs:
GEM
remote: https://rubygems.org/
specs:
plist (3.7.1)
sublime_syntax_convertor (0.1.0)
plist
PLATFORMS
ruby
x86_64-linux
DEPENDENCIES
sublime_syntax_convertor!
BUNDLED WITH
2.5.5

View File

@ -0,0 +1,23 @@
{
plist = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0b643i5b7b7galvlb2fc414ifmb78b5lsq47gnvhzl8m27dl559z";
type = "gem";
};
version = "3.7.1";
};
sublime_syntax_convertor = {
dependencies = ["plist"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0gg65xls9rl9df37njja5f7y6mm1cbnf9yafyy3j7cnkcszif43a";
type = "gem";
};
version = "0.1.0";
};
}

View File

@ -0,0 +1,13 @@
{ lib,bundlerApp }:
bundlerApp {
pname = "sublime_syntax_convertor";
gemdir = ./.;
exes = [ "sublime_syntax_convertor" ];
meta = {
description = "Converts tmLanguage to sublime-syntax";
homepage = "https://github.com/aziz/SublimeSyntaxConvertor/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ laalsaas ];
};
}