From 9039081ce7204c895a27615244fa7df396aad2d2 Mon Sep 17 00:00:00 2001 From: Haseeb Majid Date: Sat, 11 May 2024 15:12:00 +0100 Subject: [PATCH] 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 * Update pkgs/shells/fish/plugins/git-abbr.nix Co-authored-by: OTABI Tomoya --------- Co-authored-by: OTABI Tomoya --- pkgs/shells/fish/plugins/default.nix | 2 ++ pkgs/shells/fish/plugins/git-abbr.nix | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/shells/fish/plugins/git-abbr.nix diff --git a/pkgs/shells/fish/plugins/default.nix b/pkgs/shells/fish/plugins/default.nix index d69c2ac2c29e..36a5a59e4398 100644 --- a/pkgs/shells/fish/plugins/default.nix +++ b/pkgs/shells/fish/plugins/default.nix @@ -36,6 +36,8 @@ lib.makeScope newScope (self: with self; { github-copilot-cli-fish = callPackage ./github-copilot-cli-fish.nix { }; + git-abbr = callPackage ./git-abbr.nix { }; + grc = callPackage ./grc.nix { }; gruvbox = callPackage ./gruvbox.nix { }; diff --git a/pkgs/shells/fish/plugins/git-abbr.nix b/pkgs/shells/fish/plugins/git-abbr.nix new file mode 100644 index 000000000000..2ec33f6c7976 --- /dev/null +++ b/pkgs/shells/fish/plugins/git-abbr.nix @@ -0,0 +1,23 @@ +{ + lib, + buildFishPlugin, + fetchFromGitHub, +}: +buildFishPlugin rec { + 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 = with lib; { + description = "Abbreviations for git for the fish shell 🐟"; + homepage = "https://github.com/lewisacidic/fish-git-abbr"; + license = licenses.mit; + maintainers = with maintainers; [hmajid2301]; + }; +}