0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge pull request #204352 from laalsaas/skim

skim: refactor and init module
This commit is contained in:
Anderson Torres 2022-12-04 07:51:43 -03:00 committed by GitHub
commit b793d48515
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 3 deletions

View file

@ -216,6 +216,7 @@
./programs/screen.nix ./programs/screen.nix
./programs/sedutil.nix ./programs/sedutil.nix
./programs/seahorse.nix ./programs/seahorse.nix
./programs/skim.nix
./programs/slock.nix ./programs/slock.nix
./programs/shadow.nix ./programs/shadow.nix
./programs/spacefm.nix ./programs/spacefm.nix

View file

@ -0,0 +1,30 @@
{ pkgs, config, lib, ... }:
let
inherit (lib) mdDoc mkEnableOption mkPackageOption optional optionalString;
cfg = config.programs.skim;
in
{
options = {
programs.skim = {
fuzzyCompletion = mkEnableOption (mdDoc "fuzzy Completion with skim");
keybindings = mkEnableOption (mdDoc "skim keybindings");
package = mkPackageOption pkgs "skim" {};
};
};
config = {
environment.systemPackages = optional (cfg.keybindings || cfg.fuzzyCompletion) cfg.package;
programs.bash.interactiveShellInit = optionalString cfg.fuzzyCompletion ''
source ${cfg.package}/share/skim/completion.bash
'' + optionalString cfg.keybindings ''
source ${cfg.package}/share/skim/key-bindings.bash
'';
programs.zsh.interactiveShellInit = optionalString cfg.fuzzyCompletion ''
source ${cfg.package}/share/skim/completion.zsh
'' + optionalString cfg.keybindings ''
source ${cfg.package}/share/skim/key-bindings.zsh
'';
};
}

View file

@ -1,4 +1,9 @@
{ lib, stdenv, fetchCrate, rustPlatform }: { lib
, stdenv
, fetchCrate
, rustPlatform
, installShellFiles
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "skim"; pname = "skim";
@ -9,6 +14,8 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-LkPkwYsaSLfaZktHF23Fgaks+fDlbB1S6SRgXtJRBqQ="; sha256 = "sha256-LkPkwYsaSLfaZktHF23Fgaks+fDlbB1S6SRgXtJRBqQ=";
}; };
nativeBuildInputs = [ installShellFiles ];
outputs = [ "out" "vim" ]; outputs = [ "out" "vim" ];
cargoSha256 = "sha256-lG26dgvjqCZ/4KgzurMrlhl+JKec+xLt/5uA6XcsSPk="; cargoSha256 = "sha256-lG26dgvjqCZ/4KgzurMrlhl+JKec+xLt/5uA6XcsSPk=";
@ -19,10 +26,15 @@ rustPlatform.buildRustPackage rec {
postInstall = '' postInstall = ''
install -D -m 555 bin/sk-tmux -t $out/bin 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 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 cat <<SCRIPT > $out/bin/sk-share
#! ${stdenv.shell} #! ${stdenv.shell}
# Run this script to find the skim shared folder where all the shell # Run this script to find the skim shared folder where all the shell