colorls: init at 1.2.0
This commit is contained in:
parent
d9d5c8d7dc
commit
76c44ebc65
2
pkgs/tools/system/colorls/Gemfile
Normal file
2
pkgs/tools/system/colorls/Gemfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'colorls'
|
21
pkgs/tools/system/colorls/Gemfile.lock
Normal file
21
pkgs/tools/system/colorls/Gemfile.lock
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
clocale (0.0.4)
|
||||||
|
colorls (1.2.0)
|
||||||
|
clocale (~> 0)
|
||||||
|
filesize (~> 0)
|
||||||
|
manpages (~> 0)
|
||||||
|
rainbow (>= 2.2, < 4.0)
|
||||||
|
filesize (0.2.0)
|
||||||
|
manpages (0.6.1)
|
||||||
|
rainbow (3.0.0)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
colorls
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.17.2
|
16
pkgs/tools/system/colorls/default.nix
Normal file
16
pkgs/tools/system/colorls/default.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ lib, bundlerApp, ruby, ... }:
|
||||||
|
|
||||||
|
bundlerApp rec {
|
||||||
|
pname = "colorls";
|
||||||
|
|
||||||
|
gemdir = ./.;
|
||||||
|
exes = [ "colorls" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Prettified LS";
|
||||||
|
homepage = https://github.com/athityakumar/colorls;
|
||||||
|
license = with licenses; mit;
|
||||||
|
maintainers = with maintainers; [ lukebfox ];
|
||||||
|
platforms = ruby.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
53
pkgs/tools/system/colorls/gemset.nix
Normal file
53
pkgs/tools/system/colorls/gemset.nix
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
clocale = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "065pb7hzmd6zndbln4ag94bjpw3hsm71jagsgiqskpxhgrbq03jz";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.0.4";
|
||||||
|
};
|
||||||
|
colorls = {
|
||||||
|
dependencies = ["clocale" "filesize" "manpages" "rainbow"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0bcrig88ipzj43lnkrb5qmimdrml4lx15rcrhr6m2hxb0pks8932";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.2.0";
|
||||||
|
};
|
||||||
|
filesize = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "17p7rf1x7h3ivaznb4n4kmxnnzj25zaviryqgn2n12v2kmibhp8g";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.2.0";
|
||||||
|
};
|
||||||
|
manpages = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "11p6ilnfda6af15ks3xiz2pr0hkvdvadnk1xm4ahqlf84dld3fnd";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.6.1";
|
||||||
|
};
|
||||||
|
rainbow = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0bb2fpjspydr6x0s8pn1pqkzmxszvkfapv0p4627mywl7ky4zkhk";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "3.0.0";
|
||||||
|
};
|
||||||
|
}
|
@ -1320,6 +1320,8 @@ in
|
|||||||
xcbuildHook = xcbuild6Hook;
|
xcbuildHook = xcbuild6Hook;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
colorls = callPackage ../tools/system/colorls { };
|
||||||
|
|
||||||
compsize = callPackage ../os-specific/linux/compsize { };
|
compsize = callPackage ../os-specific/linux/compsize { };
|
||||||
|
|
||||||
coturn = callPackage ../servers/coturn { };
|
coturn = callPackage ../servers/coturn { };
|
||||||
|
Loading…
Reference in New Issue
Block a user