Files
nixpkgs/pkgs/shells/fish/plugins/plugin-git.nix
2026-04-05 22:26:26 +00:00

29 lines
639 B
Nix

{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "plugin-git";
version = "0.4";
src = fetchFromGitHub {
owner = "jhillyerd";
repo = "plugin-git";
tag = "v${version}";
hash = "sha256-2+CX9ZGNkois7h3m30VG19Cf4ykRdoiPpEVxJMk75I4=";
};
meta = {
description = "Git plugin for fish (similar to oh-my-zsh git)";
homepage = "https://github.com/jhillyerd/plugin-git";
changelog = "https://github.com/jhillyerd/plugin-git/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
GaetanLepage
unsolvedcypher
];
};
}