opensc: move to pkgs/by-name, format, add updateScript

This commit is contained in:
Michael Adler 2024-10-01 10:06:04 +02:00
parent 6733601f45
commit e6e7bee101
2 changed files with 45 additions and 22 deletions

View File

@ -1,8 +1,23 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, zlib, readline, openssl
, libiconv, pcsclite, libassuan, libXt
, docbook_xsl, libxslt, docbook_xml_dtd_412
, Carbon, PCSC, buildPackages
, withApplePCSC ? stdenv.hostPlatform.isDarwin
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
zlib,
readline,
openssl,
libiconv,
pcsclite,
libassuan,
libXt,
docbook_xsl,
libxslt,
docbook_xml_dtd_412,
darwin,
buildPackages,
nix-update-script,
withApplePCSC ? stdenv.hostPlatform.isDarwin,
}:
stdenv.mkDerivation rec {
@ -16,13 +31,23 @@ stdenv.mkDerivation rec {
sha256 = "sha256-Ktvp/9Hca87qWmDlQhFzvWsr7TvNpIAvOFS+4zTZbB8=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [
zlib readline openssl libassuan
libXt libxslt libiconv docbook_xml_dtd_412
]
++ lib.optional stdenv.hostPlatform.isDarwin Carbon
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs =
[
zlib
readline
openssl
libassuan
libXt
libxslt
libiconv
docbook_xml_dtd_412
]
++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Carbon
++ (if withApplePCSC then [ darwin.apple_sdk.frameworks.PCSC ] else [ pcsclite ]);
env.NIX_CFLAGS_COMPILE = "-Wno-error";
@ -39,22 +64,24 @@ stdenv.mkDerivation rec {
"--with-xsl-stylesheetsdir=${docbook_xsl}/xml/xsl/docbook"
"--with-pcsc-provider=${
if withApplePCSC then
"${PCSC}/Library/Frameworks/PCSC.framework/PCSC"
"${darwin.apple_sdk.frameworks.PCSC}/Library/Frameworks/PCSC.framework/PCSC"
else
"${lib.getLib pcsclite}/lib/libpcsclite${stdenv.hostPlatform.extensions.sharedLibrary}"
}"
(lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform)
"XSLTPROC=${buildPackages.libxslt}/bin/xsltproc")
}"
(lib.optionalString (
stdenv.hostPlatform != stdenv.buildPlatform
) "XSLTPROC=${buildPackages.libxslt}/bin/xsltproc")
];
PCSC_CFLAGS = lib.optionalString withApplePCSC
"-I${PCSC}/Library/Frameworks/PCSC.framework/Headers";
PCSC_CFLAGS = lib.optionalString withApplePCSC "-I${darwin.apple_sdk.frameworks.PCSC}/Library/Frameworks/PCSC.framework/Headers";
installFlags = [
"sysconfdir=$(out)/etc"
"completiondir=$(out)/etc"
];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Set of libraries and utilities to access smart cards";
homepage = "https://github.com/OpenSC/OpenSC/wiki";

View File

@ -4754,10 +4754,6 @@ with pkgs;
openrgb-plugin-hardwaresync = libsForQt5.callPackage ../applications/misc/openrgb-plugins/hardwaresync { };
opensc = callPackage ../tools/security/opensc {
inherit (darwin.apple_sdk.frameworks) Carbon PCSC;
};
toastify = darwin.apple_sdk_11_0.callPackage ../tools/misc/toastify {};
opensshPackages = dontRecurseIntoAttrs (callPackage ../tools/networking/openssh {});