mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
skim: refactor
This commit is contained in:
parent
20df93568e
commit
2a7fae33a4
1 changed files with 15 additions and 3 deletions
|
@ -1,4 +1,9 @@
|
|||
{ lib, stdenv, fetchCrate, rustPlatform }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchCrate
|
||||
, rustPlatform
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "skim";
|
||||
|
@ -9,6 +14,8 @@ rustPlatform.buildRustPackage rec {
|
|||
sha256 = "sha256-LkPkwYsaSLfaZktHF23Fgaks+fDlbB1S6SRgXtJRBqQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
outputs = [ "out" "vim" ];
|
||||
|
||||
cargoSha256 = "sha256-lG26dgvjqCZ/4KgzurMrlhl+JKec+xLt/5uA6XcsSPk=";
|
||||
|
@ -19,10 +26,15 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
postInstall = ''
|
||||
install -D -m 555 bin/sk-tmux -t $out/bin
|
||||
install -D -m 644 man/man1/* -t $out/man/man1
|
||||
install -D -m 444 shell/* -t $out/share/skim
|
||||
|
||||
install -D -m 444 plugin/skim.vim -t $vim/plugin
|
||||
|
||||
install -D -m 444 shell/* -t $out/share/skim
|
||||
install -D shell/key-bindings.fish $out/share/fish/vendor_functions.d/sk_key_bindings.fish
|
||||
mkdir -p $out/share/fish/vendor_conf.d
|
||||
echo sk_key_bindings > $out/share/fish/vendor_conf.d/load-sk-key-bindings.fish
|
||||
installManPage man/man1/*
|
||||
|
||||
cat <<SCRIPT > $out/bin/sk-share
|
||||
#! ${stdenv.shell}
|
||||
# Run this script to find the skim shared folder where all the shell
|
||||
|
|
Loading…
Reference in a new issue