depot/third_party/nixpkgs/pkgs/by-name/cl/cloak/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

31 lines
713 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "cloak";
version = "0.3.0";
src = fetchFromGitHub {
owner = "evansmurithi";
repo = "cloak";
tag = "v${version}";
hash = "sha256-Pd2aorsXdHB1bs609+S5s+WV5M1ql48yIKaoN8SEvsg=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-PAZOenugZrKYIP7zzxozerjkauwg7VN0mAlex0WPttQ=";
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/evansmurithi/cloak";
description = "Command-line OTP authenticator application";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mvs ];
mainProgram = "cloak";
};
}