1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
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.3";
2018-03-03 15:39:16 +00:00
2020-10-20 12:42:42 +01:00
src = fetchCrate {
inherit pname version;
sha256 = "026mgqcp9sg6wwikghrc3rgh5p6wdbnvav5pb3xvs79lj85d5ga7";
2018-03-03 15:39:16 +00:00
};
outputs = [ "out" "vim" ];
cargoSha256 = "07bs23x2vxzlrca5swwq8khmd9fbdhlhm0avwp9y231df6xdi2ys";
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
};
}