uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
93
pkgs/tools/security/rbw/default.nix
Normal file
93
pkgs/tools/security/rbw/default.nix
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
, openssl
|
||||
, pkg-config
|
||||
, makeWrapper
|
||||
, installShellFiles
|
||||
, Security
|
||||
, libiconv
|
||||
|
||||
# rbw-fzf
|
||||
, withFzf ? false
|
||||
, fzf
|
||||
, perl
|
||||
|
||||
# rbw-rofi
|
||||
, withRofi ? false
|
||||
, rofi
|
||||
, xclip
|
||||
|
||||
# pass-import
|
||||
, withPass ? false
|
||||
, pass
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rbw";
|
||||
version = "1.4.3";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit version;
|
||||
crateName = pname;
|
||||
sha256 = "sha256-teeGKQNf+nuUcF9BcdiTV/ycENTbcGvPZZ34FdOO31k=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-Soquc3OuGlDsGSwNCvYOWQeraYpkzX1oJwmM03Rc3Jg=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
makeWrapper
|
||||
installShellFiles
|
||||
];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
|
||||
|
||||
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 = ''
|
||||
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
|
||||
'' + lib.optionalString withFzf ''
|
||||
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";
|
||||
changelog = "https://git.tozt.net/rbw/plain/CHANGELOG.md?id=${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ albakham luc65r marsam ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue