Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
906 B
Nix
40 lines
906 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
xorg,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "safecloset";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Canop";
|
|
repo = "safecloset";
|
|
rev = "v${version}";
|
|
hash = "sha256-pTfslMZmP8YzLzTru3b64qQ9qefkPzo9V8/S6eSQBgM=";
|
|
};
|
|
|
|
cargoHash = "sha256-b0MD30IJRp06qkYsQsiEI7c4ArY3GCSIh8I16/4eom0=";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.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";
|
|
};
|
|
}
|