pcsclite: remove isLinux condition from --enable-ipcdir configureFlag

The `--enable-ipcdir=/run/pcscd` flag was added by commit 2b93e96d0b
"pcsclite: add policy kit support".  However the pcscd IPC mechanism is
completely independent from polkit, systemd, and dbus.  There is no reason to
disable the IPC mechanism on all non-Linux platforms.
This commit is contained in:
Adam Joseph 2024-04-15 13:09:11 -07:00 committed by Florian Klink
parent edbe540c28
commit 13270e7feb

View File

@ -37,8 +37,8 @@ stdenv.mkDerivation (finalAttrs: {
"--enable-usbdropdir=/var/lib/pcsc/drivers"
(lib.enableFeature stdenv.isLinux "libsystemd")
(lib.enableFeature polkitSupport "polkit")
] ++ lib.optionals stdenv.isLinux [
"--enable-ipcdir=/run/pcscd"
] ++ lib.optionals stdenv.isLinux [
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
];