mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchCrate
|
|
, rustPlatform
|
|
, installShellFiles
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "skim";
|
|
version = "0.10.4";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-C2yK+SO8Tpw3BxXXu1jeDzYJ2548RZa7NFWaE0SdNJ0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
outputs = [ "out" "vim" ];
|
|
|
|
cargoHash = "sha256-jBcgoWbmBOgU7M71lr4OXOe2S6NAXl+I8D+ZtT45Vos=";
|
|
|
|
postPatch = ''
|
|
sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/skim.vim
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -D -m 555 bin/sk-tmux -t $out/bin
|
|
|
|
install -D -m 444 plugin/skim.vim -t $vim/plugin
|
|
|
|
install -D -m 444 shell/* -t $out/share/skim
|
|
|
|
installManPage man/man1/*
|
|
|
|
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
|
|
'';
|
|
|
|
# https://github.com/lotabout/skim/issues/440
|
|
doCheck = !stdenv.hostPlatform.isAarch64;
|
|
|
|
meta = with lib; {
|
|
description = "Command-line fuzzy finder written in Rust";
|
|
homepage = "https://github.com/lotabout/skim";
|
|
license = licenses.mit;
|
|
mainProgram = "sk";
|
|
maintainers = with maintainers; [ dywedir ];
|
|
};
|
|
}
|