2015-03-03 22:27:19 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, zlib, readline, openssl
|
2019-05-24 14:58:12 +01:00
|
|
|
, libiconv, pcsclite, libassuan, libXt, fetchpatch
|
2015-03-03 22:27:19 +00:00
|
|
|
, docbook_xsl, libxslt, docbook_xml_dtd_412
|
2019-05-16 21:54:49 +01:00
|
|
|
, Carbon, PCSC, buildPackages
|
2019-05-03 09:08:40 +01:00
|
|
|
, withApplePCSC ? stdenv.isDarwin
|
2013-12-02 11:37:24 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opensc";
|
2018-10-22 09:58:58 +01:00
|
|
|
version = "0.19.0";
|
2013-12-02 11:37:24 +00:00
|
|
|
|
2015-03-03 22:27:19 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenSC";
|
|
|
|
repo = "OpenSC";
|
|
|
|
rev = version;
|
2018-10-22 09:58:58 +01:00
|
|
|
sha256 = "10575gb9l38cskq7swyjp0907wlziyxg4ppq33ndz319dsx69d87";
|
2013-12-02 11:37:24 +00:00
|
|
|
};
|
|
|
|
|
2019-05-24 14:58:12 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2019-6502.patch";
|
|
|
|
url = "https://github.com/OpenSC/OpenSC/commit/0d7967549751b7032f22b437106b41444aff0ba9.patch";
|
|
|
|
sha256 = "1y42lmz8i9w99hgpakdncnv8f94cqjfabz0v4xg6wfz9akl3ff7d";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-05-16 21:54:49 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2015-03-03 22:27:19 +00:00
|
|
|
buildInputs = [
|
2019-05-16 21:54:49 +01:00
|
|
|
zlib readline openssl libassuan
|
2014-11-26 23:16:50 +00:00
|
|
|
libXt libxslt libiconv docbook_xml_dtd_412
|
2019-05-03 09:08:40 +01:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin Carbon
|
|
|
|
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
|
2013-12-02 11:37:24 +00:00
|
|
|
|
2019-04-23 03:36:35 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
2013-12-02 11:37:24 +00:00
|
|
|
configureFlags = [
|
2015-03-03 22:27:19 +00:00
|
|
|
"--enable-zlib"
|
|
|
|
"--enable-readline"
|
2013-12-02 11:37:24 +00:00
|
|
|
"--enable-openssl"
|
|
|
|
"--enable-pcsc"
|
|
|
|
"--enable-sm"
|
2015-03-03 22:27:19 +00:00
|
|
|
"--enable-man"
|
|
|
|
"--enable-doc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
2013-12-02 11:37:24 +00:00
|
|
|
"--with-xsl-stylesheetsdir=${docbook_xsl}/xml/xsl/docbook"
|
2019-05-03 09:08:40 +01:00
|
|
|
"--with-pcsc-provider=${
|
|
|
|
if withApplePCSC then
|
|
|
|
"${PCSC}/Library/Frameworks/PCSC.framework/PCSC"
|
|
|
|
else
|
|
|
|
"${stdenv.lib.getLib pcsclite}/lib/libpcsclite${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
|
|
}"
|
2019-05-16 21:54:49 +01:00
|
|
|
(stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
"XSLTPROC=${buildPackages.libxslt}/bin/xsltproc")
|
2013-12-02 11:37:24 +00:00
|
|
|
];
|
|
|
|
|
2019-05-03 09:08:40 +01:00
|
|
|
PCSC_CFLAGS = stdenv.lib.optionalString withApplePCSC
|
|
|
|
"-I${PCSC}/Library/Frameworks/PCSC.framework/Headers";
|
|
|
|
|
2015-06-19 06:59:38 +01:00
|
|
|
installFlags = [
|
2017-03-05 22:31:37 +00:00
|
|
|
"sysconfdir=$(out)/etc"
|
2018-10-22 09:58:58 +01:00
|
|
|
"completiondir=$(out)/etc"
|
2015-06-19 06:59:38 +01:00
|
|
|
];
|
|
|
|
|
2015-03-03 22:27:19 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-12-02 11:37:24 +00:00
|
|
|
description = "Set of libraries and utilities to access smart cards";
|
2015-03-03 22:27:19 +00:00
|
|
|
homepage = https://github.com/OpenSC/OpenSC/wiki;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.all;
|
2019-05-18 21:35:15 +01:00
|
|
|
maintainers = [ maintainers.erictapen ];
|
2013-12-02 11:37:24 +00:00
|
|
|
};
|
|
|
|
}
|