pcsclite: $out was misspelled

$(out) was evaluated to an empty string and hence pcscd didn't startup:

  configfile.l:234:tok_error() tok_error: invalid value line ...
This commit is contained in:
Arvin Moezzi 2014-03-22 13:34:28 +01:00
parent 451bc020e1
commit 9111ce6be2

View File

@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
# The OS should care on preparing the drivers into this location
configureFlags = [
"--enable-usbdropdir=/var/lib/pcsc/drivers"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
"--enable-confdir=$(out)/etc"
"--with-systemdsystemunitdir=$out/etc/systemd/system"
"--enable-confdir=$out/etc"
];
buildInputs = [ udev dbus_libs perl ];