colorls: init at 1.2.0

This commit is contained in:
Luke Bentley-Fox 2019-05-29 17:55:15 +01:00
parent d9d5c8d7dc
commit 76c44ebc65
No known key found for this signature in database
GPG key ID: 7F3667C12D2BDC86
5 changed files with 94 additions and 0 deletions

View file

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'colorls'

View 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

View 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;
};
}

View 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";
};
}

View file

@ -1320,6 +1320,8 @@ in
xcbuildHook = xcbuild6Hook;
};
colorls = callPackage ../tools/system/colorls { };
compsize = callPackage ../os-specific/linux/compsize { };
coturn = callPackage ../servers/coturn { };