Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
620 B
Nix
29 lines
620 B
Nix
{
|
|
lib,
|
|
buildFishPlugin,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildFishPlugin {
|
|
pname = "grc";
|
|
version = "0-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;
|
|
};
|
|
}
|