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

66 lines
1.8 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, zlib, readline, openssl
2020-11-24 22:32:03 +00:00
, libiconv, pcsclite, libassuan, libXt
2015-03-03 22:27:19 +00:00
, docbook_xsl, libxslt, docbook_xml_dtd_412
, Carbon, PCSC, buildPackages
, withApplePCSC ? stdenv.isDarwin
2013-12-02 11:37:24 +00:00
}:
stdenv.mkDerivation rec {
pname = "opensc";
2020-11-24 22:32:03 +00:00
version = "0.21.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;
2020-11-24 22:32:03 +00:00
sha256 = "sha256-OjOfA1pIu8NeN+hPuow5UVMKsg0PrsLojw5h05/Qm+o=";
2013-12-02 11:37:24 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config autoreconfHook ];
2015-03-03 22:27:19 +00:00
buildInputs = [
zlib readline openssl libassuan
libXt libxslt libiconv docbook_xml_dtd_412
]
2021-01-15 09:19:50 +00:00
++ lib.optional stdenv.isDarwin Carbon
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
2013-12-02 11:37:24 +00: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"
"--with-pcsc-provider=${
if withApplePCSC then
"${PCSC}/Library/Frameworks/PCSC.framework/PCSC"
else
2021-01-15 09:19:50 +00:00
"${lib.getLib pcsclite}/lib/libpcsclite${stdenv.hostPlatform.extensions.sharedLibrary}"
}"
2021-01-15 09:19:50 +00:00
(lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform)
"XSLTPROC=${buildPackages.libxslt}/bin/xsltproc")
2013-12-02 11:37:24 +00:00
];
2021-01-15 09:19:50 +00:00
PCSC_CFLAGS = lib.optionalString withApplePCSC
"-I${PCSC}/Library/Frameworks/PCSC.framework/Headers";
2015-06-19 05:59:38 +00:00
installFlags = [
"sysconfdir=$(out)/etc"
2018-10-22 08:58:58 +00:00
"completiondir=$(out)/etc"
2015-06-19 05:59:38 +00:00
];
meta = with lib; {
2013-12-02 11:37:24 +00:00
description = "Set of libraries and utilities to access smart cards";
homepage = "https://github.com/OpenSC/OpenSC/wiki";
2015-03-03 22:27:19 +00:00
license = licenses.lgpl21Plus;
platforms = platforms.all;
2019-05-18 20:35:15 +00:00
maintainers = [ maintainers.erictapen ];
2013-12-02 11:37:24 +00:00
};
}