cotp: init at 1.1.0
This commit is contained in:
parent
285d1398d1
commit
54c8b865d7
2 changed files with 35 additions and 0 deletions
31
pkgs/applications/misc/cotp/default.nix
Normal file
31
pkgs/applications/misc/cotp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue