qemu: enable smartcard support
This commit is contained in:
parent
1ae8d8b793
commit
475da25b40
@ -10,6 +10,7 @@
|
|||||||
, sdlSupport ? !stdenv.isDarwin, SDL2
|
, sdlSupport ? !stdenv.isDarwin, SDL2
|
||||||
, gtkSupport ? !stdenv.isDarwin && !xenSupport, gtk3, gettext, gnome3
|
, gtkSupport ? !stdenv.isDarwin && !xenSupport, gtk3, gettext, gnome3
|
||||||
, vncSupport ? true, libjpeg, libpng
|
, vncSupport ? true, libjpeg, libpng
|
||||||
|
, smartcardSupport ? true, libcacard
|
||||||
, spiceSupport ? !stdenv.isDarwin, spice, spice-protocol
|
, spiceSupport ? !stdenv.isDarwin, spice, spice-protocol
|
||||||
, usbredirSupport ? spiceSupport, usbredir
|
, usbredirSupport ? spiceSupport, usbredir
|
||||||
, xenSupport ? false, xen
|
, xenSupport ? false, xen
|
||||||
@ -58,6 +59,7 @@ stdenv.mkDerivation rec {
|
|||||||
++ optionals sdlSupport [ SDL2 ]
|
++ optionals sdlSupport [ SDL2 ]
|
||||||
++ optionals gtkSupport [ gtk3 gettext gnome3.vte ]
|
++ optionals gtkSupport [ gtk3 gettext gnome3.vte ]
|
||||||
++ optionals vncSupport [ libjpeg libpng ]
|
++ optionals vncSupport [ libjpeg libpng ]
|
||||||
|
++ optionals smartcardSupport [ libcacard ]
|
||||||
++ optionals spiceSupport [ spice-protocol spice ]
|
++ optionals spiceSupport [ spice-protocol spice ]
|
||||||
++ optionals usbredirSupport [ usbredir ]
|
++ optionals usbredirSupport [ usbredir ]
|
||||||
++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ]
|
++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ]
|
||||||
@ -108,6 +110,7 @@ stdenv.mkDerivation rec {
|
|||||||
++ optional stdenv.isDarwin "--cpu=x86_64"
|
++ optional stdenv.isDarwin "--cpu=x86_64"
|
||||||
++ optional numaSupport "--enable-numa"
|
++ optional numaSupport "--enable-numa"
|
||||||
++ optional seccompSupport "--enable-seccomp"
|
++ optional seccompSupport "--enable-seccomp"
|
||||||
|
++ optional smartcardSupport "--enable-smartcard"
|
||||||
++ optional spiceSupport "--enable-spice"
|
++ optional spiceSupport "--enable-spice"
|
||||||
++ optional usbredirSupport "--enable-usb-redir"
|
++ optional usbredirSupport "--enable-usb-redir"
|
||||||
++ optional hostCpuOnly "--target-list=${hostCpuTargets}"
|
++ optional hostCpuOnly "--target-list=${hostCpuTargets}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user