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
29 lines
645 B
Nix
29 lines
645 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sss-cli";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dsprenkels";
|
|
repo = "sss-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-9Wht+t48SsWpj1z2yY6P7G+h9StmuqfMdODtyPffhak=";
|
|
};
|
|
|
|
cargoPatches = [ ./fix-cargo-lock.patch ];
|
|
|
|
cargoHash = "sha256-yutjlaqLf8R8KmdeKF+CHz/s/b6T+GB9bOl2liMBmMQ=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dsprenkels/sss-cli";
|
|
description = "Command line program for secret-sharing strings";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ laalsaas ];
|
|
};
|
|
}
|