mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
1f6987ce7e
Diff: 2872548075
...23.04.0
25 lines
579 B
Nix
25 lines
579 B
Nix
{ lib, buildFishPlugin, fetchFromGitHub }:
|
|
|
|
buildFishPlugin rec {
|
|
pname = "forgit";
|
|
version = "23.04.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wfxr";
|
|
repo = "forgit";
|
|
rev = version;
|
|
sha256 = "sha256-3lvYIuzuJw0CQlaAQG6hAyfUgSXM+3BOmKRVDNFUN/U=";
|
|
};
|
|
|
|
postInstall = ''
|
|
cp -r bin $out/share/fish/vendor_conf.d/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A utility tool powered by fzf for using git interactively.";
|
|
homepage = "https://github.com/wfxr/forgit";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|