at master 23 lines 582 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin { 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}