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

19 lines
449 B
Nix
Raw Normal View History

{ lib, bundlerApp, ruby, bundlerUpdateScript }:
2019-05-29 16:55:15 +00:00
bundlerApp rec {
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;
license = with licenses; mit;
maintainers = with maintainers; [ lukebfox nicknovitski ];
2019-05-29 16:55:15 +00:00
platforms = ruby.meta.platforms;
};
}