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

47 lines
1.3 KiB
Nix
Raw Normal View History

2021-05-05 04:20:00 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles, python3, libxcb, AppKit, libiconv }:
2020-07-01 09:58:37 +00:00
rustPlatform.buildRustPackage rec {
pname = "kbs2";
2021-05-04 06:03:23 +00:00
version = "0.3.0";
2020-07-01 09:58:37 +00:00
src = fetchFromGitHub {
owner = "woodruffw";
repo = pname;
rev = "v${version}";
2021-05-04 06:03:23 +00:00
sha256 = "sha256-Mh56VjFHwjiZ0fvOF3fFw+1IU5HwkRdMlFrt3tZjcZY=";
2020-07-01 09:58:37 +00:00
};
2021-05-04 06:03:23 +00:00
cargoSha256 = "sha256-hjUDLA5vNCCIEFQsAhv3hDur1LIGQKYO2rR6AoEb+wA=";
2020-07-01 09:58:37 +00:00
nativeBuildInputs = [ installShellFiles ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ python3 ];
2020-07-01 09:58:37 +00:00
buildInputs = [ ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ libxcb ]
2021-05-05 04:20:00 +00:00
++ lib.optionals stdenv.isDarwin [ AppKit libiconv ];
2020-07-01 09:58:37 +00:00
preCheck = ''
export HOME=$TMPDIR
'';
checkFlags = [ "--skip=kbs2::config::tests::test_find_config_dir" ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isDarwin [ "--skip=test_ragelib_rewrap_keyfile" ];
2020-07-01 09:58:37 +00:00
postInstall = ''
2020-08-29 09:20:00 +00:00
mkdir -p $out/share/kbs2
cp -r contrib/ $out/share/kbs2
2020-07-01 09:58:37 +00:00
for shell in bash fish zsh; do
$out/bin/kbs2 --completions $shell > kbs2.$shell
installShellCompletion kbs2.$shell
done
'';
meta = with lib; {
2020-07-01 09:58:37 +00:00
description = "A secret manager backed by age";
homepage = "https://github.com/woodruffw/kbs2";
changelog = "https://github.com/woodruffw/kbs2/blob/v${version}/CHANGELOG.md";
2020-07-01 09:58:37 +00:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}