pcsclite: Enable building on Darwin

This commit is contained in:
John Wiegley 2015-12-03 13:13:31 -05:00
parent 31e5abf788
commit 95f6a9e147

View File

@ -11,18 +11,18 @@ stdenv.mkDerivation rec {
configureFlags = [ configureFlags = [
# The OS should care on preparing the drivers into this location # The OS should care on preparing the drivers into this location
"--enable-usbdropdir=/var/lib/pcsc/drivers" "--enable-usbdropdir=/var/lib/pcsc/drivers"
"--with-systemdsystemunitdir=\${out}/etc/systemd/system"
"--enable-confdir=/etc" "--enable-confdir=/etc"
]; ] ++ stdenv.lib.optional stdenv.isLinux
"--with-systemdsystemunitdir=\${out}/etc/systemd/system";
nativeBuildInputs = [ pkgconfig perl python2 ]; nativeBuildInputs = [ pkgconfig perl python2 ];
buildInputs = [ udev dbus_libs ]; buildInputs = stdenv.lib.optionals stdenv.isLinux [ udev dbus_libs ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Middleware to access a smart card using SCard API (PC/SC)"; description = "Middleware to access a smart card using SCard API (PC/SC)";
homepage = http://pcsclite.alioth.debian.org/; homepage = http://pcsclite.alioth.debian.org/;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ viric wkennington ]; maintainers = with maintainers; [ viric wkennington ];
platforms = platforms.linux; platforms = with platforms; unix;
}; };
} }