at 24.05-pre 515 B view raw
1{ lib, buildFishPlugin, fetchFromGitHub }: 2 3buildFishPlugin rec { 4 pname = "plugin-git"; 5 version = "0.1"; 6 7 src = fetchFromGitHub { 8 owner = "jhillyerd"; 9 repo = "plugin-git"; 10 rev = "v0.1"; 11 sha256 = "sha256-MfrRQdcj7UtIUgtqKjt4lqFLpA6YZgKjE03VaaypNzE"; 12 }; 13 14 meta = with lib; { 15 description = "Git plugin for fish (similar to oh-my-zsh git)"; 16 homepage = "https://github.com/jhillyerd/plugin-git"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ unsolvedcypher ]; 19 }; 20}