custom rbw package for latest version

This commit is contained in:
Matt Nish-Lapidus 2025-01-01 14:48:06 -05:00
parent 43d6b50e45
commit 262bfc7aa2
3 changed files with 68 additions and 1 deletions

View file

@ -540,7 +540,10 @@
# enable = true;
# package = pkgs.thunderbird-latest;
# };
rbw.enable = true;
rbw = {
enable = true;
package = pkgs.rbw-latest;
};
};
dconf.settings = {

View file

@ -16,4 +16,6 @@ pkgs: {
mioctl = pkgs.callPackage ./mioctl/mioctl.nix {};
bitwig-studio-beta = pkgs.callPackage ./bitwig-beta/bitwig-studio-beta.nix {};
rbw-latest = pkgs.callPackage ./rbw/rbw.nix {};
}

62
packages/rbw/rbw.nix Normal file
View file

@ -0,0 +1,62 @@
{
lib,
stdenv,
rustPlatform,
fetchzip,
openssl,
pkg-config,
installShellFiles,
darwin,
bash,
# rbw-fzf
fzf,
perl
}:
rustPlatform.buildRustPackage rec {
pname = "rbw-latest";
version = "1.13.1";
src = fetchzip {
url = "https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz";
hash = "sha256-6T1pa+LzgJLaPbWJg7imZZ6KuGJ47YqpSKXxrv4E+1I=";
};
cargoHash = "sha256-NGt60HJwHnP4vwQp8oHpmmTa72lHVDftFo6whu4V9JQ=";
nativeBuildInputs = [
installShellFiles
] ++ lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ];
buildInputs =
[ bash ]; # for git-credential-rbw
preConfigure = lib.optionalString stdenv.hostPlatform.isLinux ''
export OPENSSL_INCLUDE_DIR="${openssl.dev}/include"
export OPENSSL_LIB_DIR="${lib.getLib openssl}/lib"
'';
postInstall =
''
install -Dm755 -t $out/bin bin/git-credential-rbw
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 (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd rbw \
--bash <($out/bin/rbw gen-completions bash) \
--fish <($out/bin/rbw gen-completions fish) \
--zsh <($out/bin/rbw gen-completions zsh)
'';
meta = with lib; {
description = "Unofficial command line client for Bitwarden";
homepage = "https://crates.io/crates/rbw";
changelog = "https://git.tozt.net/rbw/plain/CHANGELOG.md?id=${version}";
license = licenses.mit;
mainProgram = "rbw";
};
}