about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/colored-man-pages.nix
blob: 435ce6e5c410c5ac85bd11c03f7362b0165d98e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin rec {
  pname = "colored-man-pages";
  version = "unstable-2022-04-30";

  src = fetchFromGitHub {
    owner = "patrickf1";
    repo = "colored_man_pages.fish";
    rev = "f885c2507128b70d6c41b043070a8f399988bc7a";
    sha256 = "0ifqdbaw09hd1ai0ykhxl8735fcsm0x2fwfzsk7my2z52ds60bwa";
  };

  meta = with lib; {
    description = "Fish shell plugin to colorize man pages";
    homepage = "https://github.com/PatrickF1/colored_man_pages.fish";
    license = licenses.mit;
    maintainers = [ maintainers.jocelynthode ];
  };
}