biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / cloak / default.nix
blob61f307edd5554e96ba277f30d7b3a669af7c7d30
1 { lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cloak";
5   version = "0.3.0";
7   src = fetchFromGitHub {
8     owner = "evansmurithi";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-Pd2aorsXdHB1bs609+S5s+WV5M1ql48yIKaoN8SEvsg=";
12   };
14   cargoHash = "sha256-m11A5fcJzWoDZglrr2Es1V5ZJNepEkGeIRVhexJ7jws=";
16   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
18   meta = with lib; {
19     homepage = "https://github.com/evansmurithi/cloak";
20     description = "Command-line OTP authenticator application";
21     license = licenses.mit;
22     maintainers = with maintainers; [ mvs ];
23     mainProgram = "cloak";
24   };