2016-09-16 05:21:50 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, openssl, autoreconfHook }:
|
2013-05-20 23:12:21 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "pkcs11-helper";
|
2018-08-24 08:06:24 +02:00
|
|
|
version = "1.25.1";
|
2016-01-18 00:04:40 +01:00
|
|
|
|
2016-09-16 05:21:50 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenSC";
|
|
|
|
repo = "pkcs11-helper";
|
2019-08-15 14:41:18 +02:00
|
|
|
rev = "${pname}-${version}";
|
2018-08-24 08:06:24 +02:00
|
|
|
sha256 = "1nvj6kdbps860kw64m2rz3v2slyn7jkagfdmskrl6966n99iy2ns";
|
2013-05-20 23:12:21 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ openssl ];
|
2013-05-20 23:12:21 +02:00
|
|
|
|
2017-11-12 22:41:42 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-11-12 22:41:42 +01:00
|
|
|
homepage = https://github.com/OpenSC/pkcs11-helper;
|
2016-09-16 05:21:50 +02:00
|
|
|
license = with licenses; [ bsd3 gpl2 ];
|
2013-05-20 23:12:21 +02:00
|
|
|
description = "Library that simplifies the interaction with PKCS#11 providers";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2013-05-20 23:12:21 +02:00
|
|
|
};
|
|
|
|
}
|