fishPlugins.colored-man-pages: init at unstable-2022-04-30

This commit is contained in:
Jocelyn Thode 2022-11-17 16:38:55 +01:00
parent b0c6f4ae05
commit e19effe2ec
No known key found for this signature in database
GPG key ID: 29235F70861CA647
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -6,6 +6,8 @@ lib.makeScope newScope (self: with self; {
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
colored-man-pages = callPackage ./colored-man-pages.nix { };
clownfish = callPackage ./clownfish.nix { };
bass = callPackage ./bass.nix { };