nixpkgs/pkgs/tools/misc/skim/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchCrate, rustPlatform }:
2018-03-03 15:39:16 +00:00
rustPlatform.buildRustPackage rec {
2019-03-19 21:15:01 +00:00
pname = "skim";
version = "0.9.4";
2018-03-03 15:39:16 +00:00
2020-10-20 11:42:42 +00:00
src = fetchCrate {
inherit pname version;
sha256 = "0yvjzmz2vqc63l8911jflqf5aww7wxsav2yal5wg9ci9hzq6dl7j";
2018-03-03 15:39:16 +00:00
};
outputs = [ "out" "vim" ];
cargoSha256 = "0xh4f8c62kzj2fx7hyhdy13zhay13a6d2d7i9yz0n40dfgf70qx0";
2020-04-07 09:20:00 +00:00
postPatch = ''
2018-03-03 15:39:16 +00:00
sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/skim.vim
'';
postInstall = ''
install -D -m 555 bin/sk-tmux -t $out/bin
2019-03-25 10:03:18 +00:00
install -D -m 644 man/man1/* -t $out/man/man1
2018-03-03 15:39:16 +00:00
install -D -m 444 shell/* -t $out/share/skim
install -D -m 444 plugin/skim.vim -t $vim/plugin
cat <<SCRIPT > $out/bin/sk-share
#! ${stdenv.shell}
# Run this script to find the skim shared folder where all the shell
# integration scripts are living.
echo $out/share/skim
SCRIPT
chmod +x $out/bin/sk-share
'';
meta = with lib; {
2018-10-23 07:31:05 +00:00
description = "Command-line fuzzy finder written in Rust";
2020-01-15 06:51:32 +00:00
homepage = "https://github.com/lotabout/skim";
2018-03-03 15:39:16 +00:00
license = licenses.mit;
2018-06-03 17:02:28 +00:00
maintainers = with maintainers; [ dywedir ];
2018-03-03 15:39:16 +00:00
};
}