mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
24 lines
574 B
Nix
24 lines
574 B
Nix
{ lib, buildFishPlugin, fetchFromGitHub }:
|
|
|
|
buildFishPlugin rec {
|
|
pname = "forgit";
|
|
version = "24.09.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wfxr";
|
|
repo = "forgit";
|
|
rev = version;
|
|
hash = "sha256-8QgnEu41BHeX6heP2slQT+X+Dti+7Ij+J2zqmU4dm3I=";
|
|
};
|
|
|
|
postInstall = ''
|
|
cp -r bin $out/share/fish/vendor_conf.d/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utility tool powered by fzf for using git interactively";
|
|
homepage = "https://github.com/wfxr/forgit";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|