biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / shells / zsh / zsh-fzf-history-search / default.nix
blobd85171530a6ae528363b4510cd5d83c229859dc7
1 { lib
2 , stdenvNoCC
3 , fetchFromGitHub
4 }:
6 stdenvNoCC.mkDerivation {
7   pname = "zsh-fzf-history-search";
8   version = "unstable-2023-03-08";
10   src = fetchFromGitHub {
11     owner = "joshskidmore";
12     repo = "zsh-fzf-history-search";
13     rev = "d1aae98ccd6ce153c97a5401d79fd36418cd2958";
14     hash = "sha256-4Dp2ehZLO83NhdBOKV0BhYFIvieaZPqiZZZtxsXWRaQ=";
15   };
17   dontConfigure = true;
18   dontBuild = true;
19   strictDeps = true;
21   installPhase = ''
22     runHook preInstall
24     install -D zsh-fzf-history-search*.zsh  --target-directory=$out/share/zsh-fzf-history-search
26     runHook postInstall
27   '';
29   meta = {
30     description = "Simple zsh plugin that replaces Ctrl+R with an fzf-driven select which includes date/times";
31     homepage = "https://github.com/joshskidmore/zsh-fzf-history-search";
32     license = lib.licenses.mit;
33     platforms = lib.platforms.unix;
34     maintainers = [ ];
35   };