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