nixpkgs/pkgs/tools/system/colorls/default.nix

19 lines
453 B
Nix
Raw Normal View History

{ lib, bundlerApp, ruby, bundlerUpdateScript }:
2019-05-29 16:55:15 +00:00
2019-08-13 21:52:01 +00:00
bundlerApp {
2019-05-29 16:55:15 +00:00
pname = "colorls";
gemdir = ./.;
exes = [ "colorls" ];
passthru.updateScript = bundlerUpdateScript "colorls";
2019-05-29 16:55:15 +00:00
meta = with lib; {
description = "Prettified LS";
homepage = "https://github.com/athityakumar/colorls";
2019-05-29 16:55:15 +00:00
license = with licenses; mit;
2020-04-30 15:00:48 +00:00
maintainers = with maintainers; [ lukebfox nicknovitski cbley ];
2019-05-29 16:55:15 +00:00
platforms = ruby.meta.platforms;
};
}