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

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

37 lines
797 B
Nix
Raw Normal View History

2021-07-01 19:38:25 +00:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
, pkg-config
, gtk3
, wrapGAppsHook
, jansson
, libgcrypt
, libzip
, libpng
, libcotp
, zbar
}:
stdenv.mkDerivation rec {
pname = "otpclient";
2022-04-05 13:42:57 +00:00
version = "2.5.1";
2021-07-01 19:38:25 +00:00
src = fetchFromGitHub {
owner = "paolostivanin";
repo = pname;
rev = "v${version}";
2022-04-05 13:42:57 +00:00
sha256 = "sha256-VUrLbGaDfPE+Ak20ZCJDmO/sgBzdf4S+SqvyQ7F6SQU=";
2021-07-01 19:38:25 +00:00
};
buildInputs = [ gtk3 jansson libgcrypt libzip libpng libcotp zbar ];
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
meta = with lib; {
description = "Highly secure and easy to use OTP client written in C/GTK that supports both TOTP and HOTP";
homepage = "https://github.com/paolostivanin/OTPClient";
license = licenses.gpl3Only;
maintainers = with maintainers; [ alexbakker ];
};
}