summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/grc.nix
blob: 1149c082cac06500ff05d8c72ea62969c03d2db9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin {
  pname = "grc";
  version = "unstable-2022-05-24";

  src = fetchFromGitHub {
    owner = "oh-my-fish";
    repo = "plugin-grc";
    rev = "61de7a8a0d7bda3234f8703d6e07c671992eb079";
    sha256 = "sha256-NQa12L0zlEz2EJjMDhWUhw5cz/zcFokjuCK5ZofTn+Q=";
  };

  postInstall = ''
    cp conf.d/executables $out/share/fish/vendor_conf.d/
  '';

  meta = with lib; {
    description = "grc Colourizer for some commands on Fish shell";
    license = licenses.mit;
    maintainers = with maintainers; [ onny ];
    platforms = with platforms; unix;
  };
}