fishPlugins.fzf: init at unstable-2021-05-12

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-03-09 21:51:12 +01:00
parent e047a2b1bc
commit 196e9745e3
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
2 changed files with 25 additions and 0 deletions

View File

@ -22,6 +22,8 @@ lib.makeScope newScope (self: with self; {
forgit = callPackage ./forgit.nix { };
fzf = callPackage ./fzf.nix { };
fzf-fish = callPackage ./fzf-fish.nix { };
grc = callPackage ./grc.nix { };

View File

@ -0,0 +1,23 @@
{ lib
, buildFishPlugin
, fetchFromGitHub
,
}:
buildFishPlugin rec {
pname = "fzf";
version = "unstable-2021-05-12";
src = fetchFromGitHub {
owner = "jethrokuan";
repo = pname;
rev = "479fa67d7439b23095e01b64987ae79a91a4e283";
sha256 = "sha256-28QW/WTLckR4lEfHv6dSotwkAKpNJFCShxmKFGQQ1Ew=";
};
meta = with lib; {
description = "Ef-fish-ient fish keybindings for fzf";
homepage = "https://github.com/jethrokuan/fzf";
license = licenses.mit;
maintainers = with maintainers; [ Scrumplex ];
};
}