nixpkgs/pkgs/tools/security/rbw/default.nix

84 lines
2 KiB
Nix
Raw Normal View History

2020-05-19 16:10:52 +00:00
{ lib
2020-10-01 04:20:00 +00:00
, stdenv
2020-05-19 16:10:52 +00:00
, rustPlatform
, fetchCrate
, openssl
2021-01-17 03:51:22 +00:00
, pkg-config
2020-05-19 16:10:52 +00:00
, makeWrapper
2021-04-25 04:20:00 +00:00
, installShellFiles
2020-10-01 04:20:00 +00:00
, Security
2021-03-08 04:20:00 +00:00
, libiconv
2020-05-19 16:10:52 +00:00
# rbw-fzf
, withFzf ? false, fzf, perl
# rbw-rofi
, withRofi ? false, rofi, xclip
# pass-import
, withPass ? false, pass
}:
rustPlatform.buildRustPackage rec {
pname = "rbw";
2021-04-25 04:20:00 +00:00
version = "1.2.0";
2020-05-19 16:10:52 +00:00
src = fetchCrate {
inherit version;
crateName = pname;
2021-04-25 04:20:00 +00:00
sha256 = "14cnqc5cf6qm2g9ypv2pbqbvymawyrqn3fc778labgqg24khqcyq";
2020-05-19 16:10:52 +00:00
};
2021-04-25 04:20:00 +00:00
cargoSha256 = "0izn5bcvk1rx69sjwyfc49nmvw7k0jysqb0bpdpwdliaa06ggl86";
2020-05-19 16:10:52 +00:00
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
2020-05-19 16:10:52 +00:00
makeWrapper
2021-04-25 04:20:00 +00:00
installShellFiles
2020-05-19 16:10:52 +00:00
];
2021-03-08 04:20:00 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
2020-10-01 04:20:00 +00:00
postPatch = lib.optionalString withFzf ''
2020-05-19 16:10:52 +00:00
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 = ''
export OPENSSL_INCLUDE_DIR="${openssl.dev}/include"
export OPENSSL_LIB_DIR="${openssl.out}/lib"
'';
2021-04-25 04:20:00 +00:00
postInstall = ''
for shell in bash zsh fish; do
$out/bin/rbw gen-completions $shell > rbw.$shell
installShellCompletion rbw.$shell
done
'' + lib.optionalString withFzf ''
2020-05-19 16:10:52 +00:00
cp bin/rbw-fzf $out/bin
'' + lib.optionalString withRofi ''
cp bin/rbw-rofi $out/bin
'' + lib.optionalString withPass ''
cp bin/pass-import $out/bin
'';
meta = with lib; {
description = "Unofficial command line client for Bitwarden";
homepage = "https://crates.io/crates/rbw";
2020-12-02 04:20:00 +00:00
changelog = "https://git.tozt.net/rbw/plain/CHANGELOG.md?id=${version}";
2020-05-19 16:10:52 +00:00
license = licenses.mit;
2020-10-17 04:20:00 +00:00
maintainers = with maintainers; [ albakham luc65r marsam ];
2020-05-19 16:10:52 +00:00
};
}