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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
684 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";
2022-01-30 18:53:03 +00:00
version = "0.3.0";
2021-09-24 08:16:24 +00:00
src = fetchFromGitHub {
owner = "evansmurithi";
repo = pname;
rev = "v${version}";
2022-01-30 18:53:03 +00:00
hash = "sha256-Pd2aorsXdHB1bs609+S5s+WV5M1ql48yIKaoN8SEvsg=";
2021-09-24 08:16:24 +00:00
};
2022-01-30 18:53:03 +00:00
cargoHash = "sha256-m11A5fcJzWoDZglrr2Es1V5ZJNepEkGeIRVhexJ7jws=";
2021-09-24 08:16:24 +00:00
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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "cloak";
2021-09-24 08:16:24 +00:00
};
}