nixpkgs/pkgs/applications/misc/cloak/default.nix

25 lines
663 B
Nix
Raw Normal View History

2021-11-18 02:27:11 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
2021-09-24 08:16:24 +00:00
rustPlatform.buildRustPackage rec {
pname = "cloak";
version = "0.2.0";
src = fetchFromGitHub {
owner = "evansmurithi";
repo = pname;
rev = "v${version}";
sha256 = "139z2ga0q7a0vwfnn5hpzsz5yrrrr7rgyd32yvfj5sxiywkmczs7";
};
cargoSha256 = "0af38wgwmsamnx63dwfm2nrkd8wmky3ai7zwy0knmifgkn4b7yyj";
2021-11-18 02:27:11 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2021-09-24 08:16:24 +00:00
meta = with lib; {
homepage = "https://github.com/evansmurithi/cloak";
description = "Command-line OTP authenticator application";
license = licenses.mit;
maintainers = with maintainers; [ mvs ];
};
}