about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-10-18 17:21:13 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-10-18 17:23:51 -0700
commit95557d776ec5fa0fec2409b633261dff13282ac7 (patch)
treeccef2b74910f44fdfb9624bb570fbeddb7339dc9
parent1381d575001dc1ae3d2d7e525067c746ac9f279b (diff)
downloadnixlib-95557d776ec5fa0fec2409b633261dff13282ac7.tar
nixlib-95557d776ec5fa0fec2409b633261dff13282ac7.tar.gz
nixlib-95557d776ec5fa0fec2409b633261dff13282ac7.tar.bz2
nixlib-95557d776ec5fa0fec2409b633261dff13282ac7.tar.lz
nixlib-95557d776ec5fa0fec2409b633261dff13282ac7.tar.xz
nixlib-95557d776ec5fa0fec2409b633261dff13282ac7.tar.zst
nixlib-95557d776ec5fa0fec2409b633261dff13282ac7.zip
spice: 0.12.5 -> 0.12.6
-rw-r--r--pkgs/development/libraries/spice/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/spice/default.nix b/pkgs/development/libraries/spice/default.nix
index 2353eec73485..8e1227e46ff9 100644
--- a/pkgs/development/libraries/spice/default.nix
+++ b/pkgs/development/libraries/spice/default.nix
@@ -1,29 +1,30 @@
 { stdenv, fetchurl, pkgconfig, pixman, celt, alsaLib, openssl
 , libXrandr, libXfixes, libXext, libXrender, libXinerama, libjpeg, zlib
-, spice_protocol, python, pyparsing, glib }:
+, spice_protocol, python, pyparsing, glib, cyrus_sasl, lz4 }:
 
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  name = "spice-0.12.5";
+  name = "spice-0.12.6";
 
   src = fetchurl {
     url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
-    sha256 = "10gmqaanfg929aamf11n4si4r3d1g7z9qjdclsl9kjv7iw6s42a2";
+    sha256 = "1dk9hp78ldqb0a52kdlqq0scnk3drnhj7rsw8r7hmy2v2cqflj7i";
   };
 
   buildInputs = [ pixman celt alsaLib openssl libjpeg zlib
                   libXrandr libXfixes libXrender libXext libXinerama
-                  python pyparsing glib ];
+                  python pyparsing glib cyrus_sasl lz4 ];
 
   nativeBuildInputs = [ pkgconfig spice_protocol ];
 
   NIX_CFLAGS_COMPILE = "-fno-stack-protector";
 
   configureFlags = [
-    "--with-sasl=no"
+    "--with-sasl"
     "--disable-smartcard"
     "--enable-client"
+    "--enable-lz4"
   ];
 
   postInstall = ''