mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
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:
parent
edbe540c28
commit
13270e7feb
@ -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"
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user