cotp: init at 1.1.0

This commit is contained in:
David Sánchez 2022-11-12 00:26:40 +00:00
parent 285d1398d1
commit 54c8b865d7
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, AppKit
, libxcb
}:
rustPlatform.buildRustPackage rec {
name = "cotp";
version = "1.1.0";
src = fetchFromGitHub {
owner = "replydev";
repo = "cotp";
rev = "v${version}";
hash = "sha256-SbS+ch7/45kZb49jW2mnRWQruLrfrNfeZFqEPHQKGUg=";
};
cargoHash = "sha256-2lIR3K4/hr4XSmNGFd/dhwoFOtEB9KSnUrZkcaCyc9k=";
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 ];
};
}

View file

@ -388,6 +388,10 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
cotp = callPackage ../applications/misc/cotp {
inherit (darwin.apple_sdk.frameworks) AppKit;
};
cmark = callPackage ../development/libraries/cmark { };
cmark-gfm = callPackage ../development/libraries/cmark-gfm { };