summary refs log tree commit diff
path: root/pkgs/tools/security/pcsclite
diff options
context:
space:
mode:
authorArvin Moezzi <moezzia@gmail.com>2014-03-22 13:34:28 +0100
committerArvin Moezzi <moezzia@gmail.com>2014-03-22 13:37:15 +0100
commit9111ce6be281a72751d18e1d664b52f12cef19c4 (patch)
tree698a6a757644c960248f106c9564ecd46270b9ef /pkgs/tools/security/pcsclite
parent451bc020e1b7027ba65399f560e26e72ade73647 (diff)
downloadnixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.tar
nixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.tar.gz
nixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.tar.bz2
nixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.tar.lz
nixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.tar.xz
nixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.tar.zst
nixpkgs-9111ce6be281a72751d18e1d664b52f12cef19c4.zip
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 ...
Diffstat (limited to 'pkgs/tools/security/pcsclite')
-rw-r--r--pkgs/tools/security/pcsclite/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/pcsclite/default.nix b/pkgs/tools/security/pcsclite/default.nix
index d069c183842..7f13ffc8db5 100644
--- a/pkgs/tools/security/pcsclite/default.nix
+++ b/pkgs/tools/security/pcsclite/default.nix
@@ -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 ];