Files
nixpkgs/pkgs/shells/fish/plugins/git-abbr.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

24 lines
580 B
Nix

{
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 ];
};
}