about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/colorls/default.nix
blob: 45c3bdf1f40c4f2cf0b7cfe412987c1e658b90a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
  };
}