diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-14 20:29:46 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-14 20:33:30 +0100 |
commit | f46d8ef4e34b4a768dc8b49f799bb718c731221c (patch) | |
tree | f18f978638600718306265d7873d052e0052b7a5 | |
parent | 50f74239be8f456e3fda2b0e649d243577683ac0 (diff) | |
download | guix-f46d8ef4e34b4a768dc8b49f799bb718c731221c.tar guix-f46d8ef4e34b4a768dc8b49f799bb718c731221c.tar.gz |
gnu: spice: Add libcacard as an input to enable smartcard support.fix-gnome-boxes-qemu-smartcard-support
This is to fix an issue with gnome-boxes when trying to start a virtual
machine:
unsupported type name: smartcard
* gnu/packages/spice.scm (spice)[inputs]: Add libcacard.
-rw-r--r-- | gnu/packages/spice.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 7d3525def6..2115dd3d0b 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -212,6 +212,7 @@ which allows users to view a desktop computing environment.") `(("cyrus-sasl" ,cyrus-sasl) ("glib" ,glib) ("libjpeg-turbo" ,libjpeg-turbo) + ("libcacard" ,libcacard) ; smartcard support ("lz4" ,lz4) ("opus" ,opus) ("orc" ,orc) |