1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6
7buildFishPlugin rec {
8 pname = "plugin-git";
9 version = "0.3";
10
11 src = fetchFromGitHub {
12 owner = "jhillyerd";
13 repo = "plugin-git";
14 rev = "refs/tags/v${version}";
15 hash = "sha256-p7vvwisu3mvVOE1DcALbzuGJqWBcE1h71UjaopGdxE0=";
16 };
17
18 meta = {
19 description = "Git plugin for fish (similar to oh-my-zsh git)";
20 homepage = "https://github.com/jhillyerd/plugin-git";
21 changelog = "https://github.com/jhillyerd/plugin-git/releases/tag/v${version}";
22 license = lib.licenses.mit;
23 maintainers = with lib.maintainers; [
24 GaetanLepage
25 unsolvedcypher
26 ];
27 };
28}