lol

fishPlugin.fish-git-abbr: init at 0.2.1-unstable-2023-06-19 (#297873)

* fishPlugin.fish-git-abbr: init at 19-06-23

* Update pkgs/shells/fish/plugins/git-abbr.nix

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>

* Update pkgs/shells/fish/plugins/git-abbr.nix

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>

---------

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>

authored by majiy00.tngl.sh

OTABI Tomoya and committed by
GitHub
9039081c d045ae38

+25
+2
pkgs/shells/fish/plugins/default.nix
··· 36 36 37 37 github-copilot-cli-fish = callPackage ./github-copilot-cli-fish.nix { }; 38 38 39 + git-abbr = callPackage ./git-abbr.nix { }; 40 + 39 41 grc = callPackage ./grc.nix { }; 40 42 41 43 gruvbox = callPackage ./gruvbox.nix { };
+23
pkgs/shells/fish/plugins/git-abbr.nix
··· 1 + { 2 + lib, 3 + buildFishPlugin, 4 + fetchFromGitHub, 5 + }: 6 + buildFishPlugin rec { 7 + pname = "fish-git-abbr"; 8 + version = "0.2.1-unstable-2023-06-19"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "lewisacidic"; 12 + repo = "fish-git-abbr"; 13 + rev = "dc590a5b9d9d2095f95f7d90608b48e55bea0b0e"; 14 + hash = "sha256-6z3Wr2t8CP85xVEp6UCYaM2KC9PX4MDyx19f/wjHkb0="; 15 + }; 16 + 17 + meta = with lib; { 18 + description = "Abbreviations for git for the fish shell 🐟"; 19 + homepage = "https://github.com/lewisacidic/fish-git-abbr"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [hmajid2301]; 22 + }; 23 + }