mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
rbw: 1.4.3 -> 1.5.0
This commit is contained in:
parent
2fe7e66ca0
commit
16f68c3db5
@ -26,61 +26,47 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rbw";
|
||||
version = "1.4.3";
|
||||
version = "1.5.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit version;
|
||||
crateName = pname;
|
||||
sha256 = "sha256-teeGKQNf+nuUcF9BcdiTV/ycENTbcGvPZZ34FdOO31k=";
|
||||
sha256 = "sha256-3kSBE2D+kC9CTbWlCKPro9fLu2tnd6LFTV4EshHMm3Y=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-Soquc3OuGlDsGSwNCvYOWQeraYpkzX1oJwmM03Rc3Jg=";
|
||||
cargoSha256 = "sha256-DL3qaUZxWnzsJOxi8+GtXBbZC7vfsridJWqhOTdcsgM=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
makeWrapper
|
||||
installShellFiles
|
||||
];
|
||||
] ++ lib.optionals stdenv.isLinux [ pkg-config ];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs bin/git-credential-rbw
|
||||
substituteInPlace bin/git-credential-rbw \
|
||||
--replace rbw $out/bin/rbw
|
||||
'' + lib.optionalString withFzf ''
|
||||
patchShebangs bin/rbw-fzf
|
||||
substituteInPlace bin/rbw-fzf \
|
||||
--replace fzf ${fzf}/bin/fzf \
|
||||
--replace perl ${perl}/bin/perl
|
||||
'' + lib.optionalString withRofi ''
|
||||
patchShebangs bin/rbw-rofi
|
||||
substituteInPlace bin/rbw-rofi \
|
||||
--replace rofi ${rofi}/bin/rofi \
|
||||
--replace xclip ${xclip}/bin/xclip
|
||||
'' + lib.optionalString withRofi ''
|
||||
patchShebangs bin/pass-import
|
||||
substituteInPlace bin/pass-import \
|
||||
--replace pass ${pass}/bin/pass
|
||||
'';
|
||||
|
||||
preConfigure = ''
|
||||
preConfigure = lib.optionalString stdenv.isLinux ''
|
||||
export OPENSSL_INCLUDE_DIR="${openssl.dev}/include"
|
||||
export OPENSSL_LIB_DIR="${lib.getLib openssl}/lib"
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
for shell in bash zsh fish; do
|
||||
$out/bin/rbw gen-completions $shell > rbw.$shell
|
||||
installShellCompletion rbw.$shell
|
||||
done
|
||||
cp bin/git-credential-rbw $out/bin
|
||||
install -Dm755 -t $out/bin bin/git-credential-rbw
|
||||
installShellCompletion --cmd rbw \
|
||||
--bash <($out/bin/rbw gen-completions bash) \
|
||||
--fish <($out/bin/rbw gen-completions fish) \
|
||||
--zsh <($out/bin/rbw gen-completions zsh)
|
||||
'' + lib.optionalString withFzf ''
|
||||
cp bin/rbw-fzf $out/bin
|
||||
install -Dm755 -t $out/bin bin/rbw-fzf
|
||||
substituteInPlace $out/bin/rbw-fzf \
|
||||
--replace fzf ${fzf}/bin/fzf \
|
||||
--replace perl ${perl}/bin/perl
|
||||
'' + lib.optionalString withRofi ''
|
||||
cp bin/rbw-rofi $out/bin
|
||||
install -Dm755 -t $out/bin bin/rbw-rofi
|
||||
substituteInPlace $out/bin/rbw-rofi \
|
||||
--replace rofi ${rofi}/bin/rofi \
|
||||
--replace xclip ${xclip}/bin/xclip
|
||||
'' + lib.optionalString withPass ''
|
||||
cp bin/pass-import $out/bin
|
||||
install -Dm755 -t $out/bin bin/pass-import
|
||||
substituteInPlace $out/bin/pass-import \
|
||||
--replace pass ${pass}/bin/pass
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user