mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 15:41:16 +00:00
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
30 lines
681 B
Nix
30 lines
681 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 = {
|
|
description = "Grc Colourizer for some commands on Fish shell";
|
|
homepage = "https://github.com/oh-my-fish/plugin-grc";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ onny ];
|
|
platforms = with lib.platforms; unix;
|
|
};
|
|
}
|