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

42 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchCrate, rustPlatform }:
2018-03-03 16:39:16 +01:00
rustPlatform.buildRustPackage rec {
2019-03-19 22:15:01 +01:00
pname = "skim";
version = "0.9.4";
2018-03-03 16:39:16 +01:00
2020-10-20 13:42:42 +02:00
src = fetchCrate {
inherit pname version;
sha256 = "0yvjzmz2vqc63l8911jflqf5aww7wxsav2yal5wg9ci9hzq6dl7j";
2018-03-03 16:39:16 +01:00
};
outputs = [ "out" "vim" ];
cargoSha256 = "1jk2vcm2z6r1xd6md98jzpcy7kdwp5p2fzxvvaz9qscyfnx28x17";
2020-04-07 11:20:00 +02:00
postPatch = ''
2018-03-03 16:39:16 +01: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 11:03:18 +01:00
install -D -m 644 man/man1/* -t $out/man/man1
2018-03-03 16:39:16 +01: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 09:31:05 +02:00
description = "Command-line fuzzy finder written in Rust";
2020-01-15 07:51:32 +01:00
homepage = "https://github.com/lotabout/skim";
2018-03-03 16:39:16 +01:00
license = licenses.mit;
2018-06-03 19:02:28 +02:00
maintainers = with maintainers; [ dywedir ];
2018-03-03 16:39:16 +01:00
};
}