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

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

56 lines
1.2 KiB
Nix
Raw Normal View History

2022-12-03 20:40:43 +00:00
{ lib
, stdenv
, fetchCrate
, rustPlatform
, installShellFiles
}:
2018-03-03 15:39:16 +00:00
rustPlatform.buildRustPackage rec {
2019-03-19 21:15:01 +00:00
pname = "skim";
2023-03-09 22:56:49 +00:00
version = "0.10.4";
2018-03-03 15:39:16 +00:00
2020-10-20 11:42:42 +00:00
src = fetchCrate {
inherit pname version;
2023-03-09 22:56:49 +00:00
sha256 = "sha256-C2yK+SO8Tpw3BxXXu1jeDzYJ2548RZa7NFWaE0SdNJ0=";
2018-03-03 15:39:16 +00:00
};
2022-12-03 20:40:43 +00:00
nativeBuildInputs = [ installShellFiles ];
2018-03-03 15:39:16 +00:00
outputs = [ "out" "vim" ];
2023-03-09 22:56:49 +00:00
cargoHash = "sha256-jBcgoWbmBOgU7M71lr4OXOe2S6NAXl+I8D+ZtT45Vos=";
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
2022-12-03 20:40:43 +00:00
2018-03-03 15:39:16 +00:00
install -D -m 444 plugin/skim.vim -t $vim/plugin
2022-12-03 20:40:43 +00:00
install -D -m 444 shell/* -t $out/share/skim
2022-12-03 20:40:43 +00:00
installManPage man/man1/*
2018-03-03 15:39:16 +00:00
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 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;
2022-07-27 22:05:24 +00:00
mainProgram = "sk";
2018-06-03 17:02:28 +00:00
maintainers = with maintainers; [ dywedir ];
2018-03-03 15:39:16 +00:00
};
}