mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
14 lines
358 B
Nix
14 lines
358 B
Nix
{ 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 ];
|
|
};
|
|
}
|