nixpkgs/pkgs/tools/security/gnupg-pkcs11-scd/default.nix
Matthias Beyer c2a5bbbc24 gnupg-pkcs11-scd: Take maintainership from lschuermann
This patch changes maintainership for this package from lschuermann to
matthiasbeyer.
Leon has informed me in a private conversation that he has too little
time to take care of the packages, so I will (maybe only temporarly,
maybe not) take maintainership for it.

Suggested-by: Leon Schuermann <leon@is.currently.online>
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-10-28 10:23:21 -07:00

34 lines
1 KiB
Nix

{ stdenv, fetchurl, libgpgerror, libassuan, libgcrypt, pkcs11helper,
pkgconfig, openssl }:
stdenv.mkDerivation rec {
pname = "gnupg-pkcs11-scd";
version = "0.9.2";
src = fetchurl {
url = "https://github.com/alonbl/${pname}/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2";
sha256 = "1mfh9zjbahjd788rq1mzx009pd7p1sq62sbz586rd7szif7pkpgx";
};
buildInputs = [ pkcs11helper pkgconfig openssl ];
configureFlags = [
"--with-libgpg-error-prefix=${libgpgerror.dev}"
"--with-libassuan-prefix=${libassuan.dev}"
"--with-libgcrypt-prefix=${libgcrypt.dev}"
];
meta = with stdenv.lib; {
description = "A smart-card daemon to enable the use of PKCS#11 tokens with GnuPG";
longDescription = ''
gnupg-pkcs11 is a project to implement a BSD-licensed smart-card
daemon to enable the use of PKCS#11 tokens with GnuPG.
'';
homepage = "http://gnupg-pkcs11.sourceforge.net/";
license = licenses.bsd3;
maintainers = with maintainers; [ matthiasbeyer philandstuff ];
platforms = platforms.unix;
};
}