base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / system / colorls / default.nix
blob3dc460140cb63a40959435d4e203bc73483acd28
1 { lib, bundlerApp, ruby, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "colorls";
6   gemdir = ./.;
7   exes = [ "colorls" ];
9   passthru.updateScript = bundlerUpdateScript "colorls";
11   meta = with lib; {
12     description = "Prettified LS";
13     homepage    = "https://github.com/athityakumar/colorls";
14     license     = with licenses; mit;
15     maintainers = with maintainers; [ lukebfox nicknovitski cbley ];
16     platforms   = ruby.meta.platforms;
17     mainProgram = "colorls";
18   };