nixpkgs/pkgs/tools/security/opensc/default.nix

66 lines
1.8 KiB
Nix
Raw Normal View History

2015-03-03 23:27:19 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, zlib, readline, openssl
2020-11-24 23:32:03 +01:00
, libiconv, pcsclite, libassuan, libXt
2015-03-03 23:27:19 +01:00
, docbook_xsl, libxslt, docbook_xml_dtd_412
, Carbon, PCSC, buildPackages
, withApplePCSC ? stdenv.isDarwin
2013-12-02 12:37:24 +01:00
}:
stdenv.mkDerivation rec {
pname = "opensc";
2020-11-24 23:32:03 +01:00
version = "0.21.0";
2013-12-02 12:37:24 +01:00
2015-03-03 23:27:19 +01:00
src = fetchFromGitHub {
owner = "OpenSC";
repo = "OpenSC";
rev = version;
2020-11-24 23:32:03 +01:00
sha256 = "sha256-OjOfA1pIu8NeN+hPuow5UVMKsg0PrsLojw5h05/Qm+o=";
2013-12-02 12:37:24 +01:00
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2015-03-03 23:27:19 +01:00
buildInputs = [
zlib readline openssl libassuan
libXt libxslt libiconv docbook_xml_dtd_412
]
++ stdenv.lib.optional stdenv.isDarwin Carbon
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
2013-12-02 12:37:24 +01:00
NIX_CFLAGS_COMPILE = "-Wno-error";
2013-12-02 12:37:24 +01:00
configureFlags = [
2015-03-03 23:27:19 +01:00
"--enable-zlib"
"--enable-readline"
2013-12-02 12:37:24 +01:00
"--enable-openssl"
"--enable-pcsc"
"--enable-sm"
2015-03-03 23:27:19 +01:00
"--enable-man"
"--enable-doc"
"--localstatedir=/var"
"--sysconfdir=/etc"
2013-12-02 12:37:24 +01:00
"--with-xsl-stylesheetsdir=${docbook_xsl}/xml/xsl/docbook"
"--with-pcsc-provider=${
if withApplePCSC then
"${PCSC}/Library/Frameworks/PCSC.framework/PCSC"
else
"${stdenv.lib.getLib pcsclite}/lib/libpcsclite${stdenv.hostPlatform.extensions.sharedLibrary}"
}"
(stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform)
"XSLTPROC=${buildPackages.libxslt}/bin/xsltproc")
2013-12-02 12:37:24 +01:00
];
PCSC_CFLAGS = stdenv.lib.optionalString withApplePCSC
"-I${PCSC}/Library/Frameworks/PCSC.framework/Headers";
2015-06-19 07:59:38 +02:00
installFlags = [
"sysconfdir=$(out)/etc"
2018-10-22 10:58:58 +02:00
"completiondir=$(out)/etc"
2015-06-19 07:59:38 +02:00
];
2015-03-03 23:27:19 +01:00
meta = with stdenv.lib; {
2013-12-02 12:37:24 +01:00
description = "Set of libraries and utilities to access smart cards";
homepage = "https://github.com/OpenSC/OpenSC/wiki";
2015-03-03 23:27:19 +01:00
license = licenses.lgpl21Plus;
platforms = platforms.all;
2019-05-18 22:35:15 +02:00
maintainers = [ maintainers.erictapen ];
2013-12-02 12:37:24 +01:00
};
}