nixpkgs/pkgs/tools/system/colorls/default.nix
2023-11-27 02:17:53 +01:00

20 lines
482 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 cbley ];
platforms = ruby.meta.platforms;
mainProgram = "colorls";
};
}