summaryrefslogtreecommitdiff
path: root/pkgs/shells/fish/plugins/git-abbr.nix
blob: c9a0d588c0e40cb854ce1a04b9c341ae8e3cc29e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
}:
buildFishPlugin {
  pname = "fish-git-abbr";
  version = "0.2.1-unstable-2023-06-19";

  src = fetchFromGitHub {
    owner = "lewisacidic";
    repo = "fish-git-abbr";
    rev = "dc590a5b9d9d2095f95f7d90608b48e55bea0b0e";
    hash = "sha256-6z3Wr2t8CP85xVEp6UCYaM2KC9PX4MDyx19f/wjHkb0=";
  };

  meta = {
    description = "Abbreviations for git for the fish shell 🐟";
    homepage = "https://github.com/lewisacidic/fish-git-abbr";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ hmajid2301 ];
  };
}