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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
453 B
Nix
Raw Normal View History

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