prs: add skim to PATH

This commit is contained in:
steveej 2024-11-25 22:47:25 +01:00
parent b782ec6f1d
commit f0ca02815c

View file

@ -246,6 +246,8 @@
cargoHash ? "sha256-T57RqIzurpYLHyeFhvqxmC+DoB6zUf+iTu1YkMmwtp8=",
src,
version,
makeWrapper,
skim,
}:
rustPlatform.buildRustPackage rec {
@ -258,6 +260,7 @@
installShellFiles
pkg-config
python3
makeWrapper
];
cargoBuildFlags = [
@ -277,6 +280,11 @@
done
'';
postFixup = ''
wrapProgram $out/bin/prs \
--prefix PATH : ${lib.makeBinPath [ skim ]}
'';
meta = with lib; {
description = "Secure, fast & convenient password manager CLI using GPG and git to sync";
homepage = "https://gitlab.com/timvisee/prs";