nixpkgs/pkgs/tools/system/colorls/default.nix
2019-05-30 15:50:53 +01:00

17 lines
362 B
Nix

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