mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
64 lines
1.7 KiB
Nix
64 lines
1.7 KiB
Nix
{ stdenv
|
|
, lib
|
|
, bash
|
|
, bat
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, findutils
|
|
, fzf
|
|
, gawk
|
|
, git
|
|
, gnugrep
|
|
, gnused
|
|
, tmux
|
|
, util-linux
|
|
, xdg-utils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fzf-git-sh";
|
|
version = "unstable-2022-09-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "junegunn";
|
|
repo = "fzf-git.sh";
|
|
rev = "9190e1bf7273d85f435fa759a5c3b20e588e9f7e";
|
|
sha256 = "sha256-2CGjk1oTXip+eAJMuOk/X3e2KTwfwzcKTcGToA2xPd4=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
postPatch = ''
|
|
sed -i \
|
|
-e "s,\bawk\b,${gawk}/bin/awk," \
|
|
-e "s,\bbash\b,${bash}/bin/bash," \
|
|
-e "s,\bbat\b,${bat}/bin/bat," \
|
|
-e "s,\bcat\b,${coreutils}/bin/cat," \
|
|
-e "s,\bcut\b,${coreutils}/bin/cut," \
|
|
-e "s,\bhead\b,${coreutils}/bin/head," \
|
|
-e "s,\buniq\b,${coreutils}/bin/uniq," \
|
|
-e "s,\bcolumn\b,${util-linux}/bin/column," \
|
|
-e "s,\bfzf-tmux\b,${fzf}/bin/fzf-tmux," \
|
|
-e "/display-message/!s,\bgit\b,${git}/bin/git,g" \
|
|
-e "s,\bgrep\b,${gnugrep}/bin/grep," \
|
|
-e "s,\bsed\b,${gnused}/bin/sed," \
|
|
-e "/fzf-tmux/!s,\btmux\b,${tmux}/bin/tmux," \
|
|
-e "s,\bxargs\b,${findutils}/bin/xargs," \
|
|
-e "s,\bxdg-open\b,${xdg-utils}/bin/xdg-open," \
|
|
-e "s,__fzf_git=.*BASH_SOURCE.*,__fzf_git=$out/share/${pname}/fzf-git.sh," \
|
|
-e "/__fzf_git=.*readlink.*/d" \
|
|
fzf-git.sh
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D fzf-git.sh $out/share/${pname}/fzf-git.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/junegunn/fzf-git.sh";
|
|
description = "Bash and zsh key bindings for Git objects, powered by fzf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ deejayem ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|