aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/spice
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-10-12 18:59:01 +0000
committerYegor Timoshenko <yegortimoshenko@riseup.net>2018-10-12 20:38:55 +0000
commit02602b2c15eaccf80490168591cf289ac81cc9d5 (patch)
treee5b5f2019fc9a0f76ce63b61e112520e77e96660 /pkgs/development/libraries/spice
parent475da25b40e91d1030d96559b596e42125e4c617 (diff)
spice: enable smartcard support
Diffstat (limited to 'pkgs/development/libraries/spice')
-rw-r--r--pkgs/development/libraries/spice/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/spice/default.nix b/pkgs/development/libraries/spice/default.nix
index ba3791a8a8bd..e9b12d169849 100644
--- a/pkgs/development/libraries/spice/default.nix
+++ b/pkgs/development/libraries/spice/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, pixman, celt, alsaLib
, openssl, libXrandr, libXfixes, libXext, libXrender, libXinerama
, libjpeg, zlib, spice-protocol, python, pyparsing, glib, cyrus_sasl
-, lz4 }:
+, libcacard, lz4 }:
with stdenv.lib;
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ pixman celt alsaLib openssl libjpeg zlib
libXrandr libXfixes libXrender libXext libXinerama
- python pyparsing glib cyrus_sasl lz4 ];
+ python pyparsing glib cyrus_sasl libcacard lz4 ];
nativeBuildInputs = [ pkgconfig spice-protocol ];
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-sasl"
- "--disable-smartcard"
+ "--enable-smartcard"
"--enable-client"
"--enable-lz4"
];