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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 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 12:42:42 +01:00
src = fetchCrate {
inherit pname version;
sha256 = "0yvjzmz2vqc63l8911jflqf5aww7wxsav2yal5wg9ci9hzq6dl7j";
2018-03-03 15:39:16 +00:00
};
outputs = [ "out" "vim" ];
cargoSha256 = "1jk2vcm2z6r1xd6md98jzpcy7kdwp5p2fzxvvaz9qscyfnx28x17";
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
'';
2022-01-16 14:07:19 +00:00
# https://github.com/lotabout/skim/issues/440
2022-01-16 14:35:44 +00:00
doCheck = !stdenv.isAarch64;
2022-01-16 14:07:19 +00:00
meta = with 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;
2022-07-27 23:05:24 +01:00
mainProgram = "sk";
2018-06-03 18:02:28 +01:00
maintainers = with maintainers; [ dywedir ];
2018-03-03 15:39:16 +00:00
};
}