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

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

33 lines
790 B
Nix
Raw Normal View History

2022-11-12 00:26:40 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, AppKit
, libxcb
}:
rustPlatform.buildRustPackage rec {
2023-01-28 04:20:00 +00:00
pname = "cotp";
2024-03-13 00:40:03 +00:00
version = "1.5.0";
2022-11-12 00:26:40 +00:00
src = fetchFromGitHub {
owner = "replydev";
repo = "cotp";
rev = "v${version}";
2024-03-13 00:40:03 +00:00
hash = "sha256-Zs/RUpyu8GG4koprC+8aSzpPUSLc19p/XinY5fR5Z4A=";
2022-11-12 00:26:40 +00:00
};
2024-03-13 00:40:03 +00:00
cargoHash = "sha256-jYKu1sAzPUfv8gQj3V4zxarRj3XUhyD/5n1WqMuLF/g=";
2022-11-12 00:26:40 +00:00
buildInputs = lib.optionals stdenv.isLinux [ libxcb ]
++ lib.optionals stdenv.isDarwin [ AppKit ];
meta = with lib; {
homepage = "https://github.com/replydev/cotp";
description = "Trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality";
license = licenses.gpl3Only;
maintainers = with maintainers; [ davsanchez ];
2024-02-11 02:19:15 +00:00
mainProgram = "cotp";
2022-11-12 00:26:40 +00:00
};
}