3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/skim/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-20 12:42:42 +01:00
{ 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.2";
2018-03-03 15:39:16 +00:00
2020-10-20 12:42:42 +01:00
src = fetchCrate {
inherit pname version;
sha256 = "0k101ymr6shi8hivf7kv52vwgcad2dwhyma0yg2pnp9q3ll0iszb";
2018-03-03 15:39:16 +00:00
};
outputs = [ "out" "vim" ];
cargoSha256 = "0b4pj30w07p67zvpn5af23ddkvknmfp5a33sy6ai8argfi73bf4c";
2020-04-07 10:20:00 +01: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 stdenv.lib; {
2018-10-23 08:31:05 +01: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 18:02:28 +01:00
maintainers = with maintainers; [ dywedir ];
2018-03-03 15:39:16 +00:00
};
}