3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/kbs2/default.nix

47 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles, python3, libxcb, AppKit }:
2020-07-01 10:58:37 +01:00
rustPlatform.buildRustPackage rec {
pname = "kbs2";
2021-02-23 05:21:13 +00:00
version = "0.2.6";
2020-07-01 10:58:37 +01:00
src = fetchFromGitHub {
owner = "woodruffw";
repo = pname;
rev = "v${version}";
2021-02-23 05:21:13 +00:00
sha256 = "sha256-PtXTC0VufUR5kle9C5KhCHHEQtQZvTTU1Q/cRMCB1g0=";
2020-07-01 10:58:37 +01:00
};
2021-02-23 05:21:13 +00:00
cargoSha256 = "sha256-S2czYglyHRkRN3Dq5reXFOaB1i/oIHXTY8Ile+Twvzo=";
2020-07-01 10:58:37 +01:00
nativeBuildInputs = [ installShellFiles ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ python3 ];
2020-07-01 10:58:37 +01:00
buildInputs = [ ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ libxcb ]
++ lib.optionals stdenv.isDarwin [ AppKit ];
2020-07-01 10:58:37 +01: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 10:58:37 +01:00
postInstall = ''
2020-08-29 10:20:00 +01:00
mkdir -p $out/share/kbs2
cp -r contrib/ $out/share/kbs2
2020-07-01 10:58:37 +01: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 10:58:37 +01: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 10:58:37 +01:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}