nixpkgs/pkgs/tools/system/colorls/default.nix
2019-08-28 11:07:32 +00:00

19 lines
445 B
Nix

{ lib, bundlerApp, ruby, bundlerUpdateScript }:
bundlerApp {
pname = "colorls";
gemdir = ./.;
exes = [ "colorls" ];
passthru.updateScript = bundlerUpdateScript "colorls";
meta = with lib; {
description = "Prettified LS";
homepage = https://github.com/athityakumar/colorls;
license = with licenses; mit;
maintainers = with maintainers; [ lukebfox nicknovitski ];
platforms = ruby.meta.platforms;
};
}