Merge pull request #263225 from pks-t/pks-ccid-fix-missing-strip

ccid: strip shared object to reduce closure size
This commit is contained in:
Nick Cao 2023-11-14 15:23:59 -05:00 committed by GitHub
commit ab4a6dc639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config perl ];
buildInputs = [ pcsclite libusb1 ];
# The resulting shared object ends up outside of the default paths which are
# usually getting stripped.
stripDebugList = ["pcsc"];
meta = with lib; {
description = "ccid drivers for pcsclite";
homepage = "https://ccid.apdu.fr/";