Merge pull request #174910 from onny/fish-grc

fishPlugins.grc: init at unstable-2022-05-24
This commit is contained in:
Sandro 2022-05-27 18:16:02 +02:00 committed by GitHub
commit d5cc1e8659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View File

@ -19,6 +19,8 @@ lib.makeScope newScope (self: with self; {
fzf-fish = callPackage ./fzf-fish.nix { };
grc = callPackage ./grc.nix { };
hydro = callPackage ./hydro.nix { };
pisces = callPackage ./pisces.nix { };

View File

@ -0,0 +1,20 @@
{ 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=";
};
meta = with lib; {
description = "grc Colourizer for some commands on Fish shell";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
platforms = with platforms; unix;
};
}