mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
sublime_syntax_convertor: Add bundler updater to easily update gems.
This commit is contained in:
parent
f78a20aa5c
commit
6cf1923dad
3 changed files with 13 additions and 7 deletions
|
@ -4,16 +4,15 @@ GEM
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
plist (3.7.1)
|
||||
plist (3.7.2)
|
||||
sublime_syntax_convertor (0.1.0)
|
||||
plist
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
sublime_syntax_convertor!
|
||||
|
||||
BUNDLED WITH
|
||||
2.5.5
|
||||
2.6.6
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
platforms = [ ];
|
||||
source = {
|
||||
remotes = [ "https://rubygems.org" ];
|
||||
sha256 = "0b643i5b7b7galvlb2fc414ifmb78b5lsq47gnvhzl8m27dl559z";
|
||||
sha256 = "0hlaf4b3d8grxm9fqbnam5gwd55wvghl0jyzjd1hc5hirhklaynk";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.7.1";
|
||||
version = "3.7.2";
|
||||
};
|
||||
sublime_syntax_convertor = {
|
||||
dependencies = [ "plist" ];
|
||||
|
|
|
@ -1,9 +1,16 @@
|
|||
{ lib, bundlerApp }:
|
||||
bundlerApp {
|
||||
{
|
||||
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/";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue