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

19 lines
445 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;
license = with licenses; mit;
maintainers = with maintainers; [ lukebfox nicknovitski ];
2019-05-29 19:55:15 +03:00
platforms = ruby.meta.platforms;
};
}