about summary refs log tree commit diff
path: root/pkgs/development/libraries/spice-protocol
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-09-01 00:47:42 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-09-01 00:47:42 -0700
commitbc7f1b058ab54889ea162153c150f1661cf63cf3 (patch)
tree3679579382efe14bab772427b2a2c2373282fb2d /pkgs/development/libraries/spice-protocol
parent45c4e4d04adb79e21819d124b0156ac81ea3f760 (diff)
downloadnixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.tar
nixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.tar.gz
nixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.tar.bz2
nixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.tar.lz
nixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.tar.xz
nixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.tar.zst
nixlib-bc7f1b058ab54889ea162153c150f1661cf63cf3.zip
spice-protocol: 0.12.6 -> 0.12.7
Diffstat (limited to 'pkgs/development/libraries/spice-protocol')
-rw-r--r--pkgs/development/libraries/spice-protocol/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/libraries/spice-protocol/default.nix b/pkgs/development/libraries/spice-protocol/default.nix
index 162a832c93af..79fe47ff476b 100644
--- a/pkgs/development/libraries/spice-protocol/default.nix
+++ b/pkgs/development/libraries/spice-protocol/default.nix
@@ -1,19 +1,18 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "spice-protocol-0.12.6";
+  name = "spice-protocol-0.12.7";
 
   src = fetchurl {
     url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
-    sha256 = "16r5x2sppiaa6pzawkrvk5q4hmw7ynmlp2xr38f1vaxj5rh4aiwx";
+    sha256 = "1hhn94bw2l76h09sy05a15bs6zalsijnylyqpwcys5hq6rrwpiln";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Protocol headers for the SPICE protocol";
     homepage = http://www.spice-space.org;
-    license = stdenv.lib.licenses.bsd3;
-
-    maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ bluescreen303 ];
+    platforms = platforms.linux;
   };
 }