mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-06 05:13:37 +00:00
29 lines
639 B
Nix
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
|
|
];
|
|
};
|
|
}
|