summary refs log tree commit diff
path: root/pkgs/tools/system/colorls/default.nix
blob: 4401d841ff61ad528620d7c8f09341c8c039c8bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerApp, ruby, bundlerUpdateScript }:

bundlerApp {
  pname = "colorls";

  gemdir = ./.;
  exes = [ "colorls" ];

  passthru.updateScript = bundlerUpdateScript "colorls";

  meta = with lib; {
    description = "Prettified LS";
    homepage    = "https://github.com/athityakumar/colorls";
    license     = with licenses; mit;
    maintainers = with maintainers; [ lukebfox nicknovitski ];
    platforms   = ruby.meta.platforms;
  };
}