42 lines
973 B
Nix
42 lines
973 B
Nix
|
{ lib
|
||
|
, rustPlatform
|
||
|
, fetchFromGitHub
|
||
|
, stdenv
|
||
|
, darwin
|
||
|
, xorg
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "safecloset";
|
||
|
version = "1.3.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Canop";
|
||
|
repo = "safecloset";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-ZvJbPbKS7HZ9R4Z9bMrXVjKtIdKE5dkp115dmHv7uJY=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-vyn/rcptkJLjXg8qjAnzc2bDjz2r0LsGa8toyybgdbM=";
|
||
|
|
||
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||
|
darwin.apple_sdk.frameworks.AppKit
|
||
|
] ++ lib.optionals stdenv.isLinux [
|
||
|
xorg.libxcb
|
||
|
];
|
||
|
|
||
|
checkFlags = [
|
||
|
# skip flaky test
|
||
|
"--skip=timer::timer_tests::test_timer_reset"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Cross-platform secure TUI secret locker";
|
||
|
homepage = "https://github.com/Canop/safecloset";
|
||
|
changelog = "https://github.com/Canop/safecloset/blob/${src.rev}/CHANGELOG.md";
|
||
|
license = licenses.agpl3Only;
|
||
|
maintainers = with maintainers; [ figsoda ];
|
||
|
mainProgram = "safecloset";
|
||
|
};
|
||
|
}
|