summary refs log tree commit diff
path: root/pkgs/development/libraries/spice-protocol
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-05-01 21:39:45 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-05-18 23:14:49 -0400
commitaba04ea5f32ead4e5a5fef07696fcb1ff3b802da (patch)
tree8b3d41e4c1682bb75d191fc8e21e38e0d5d08213 /pkgs/development/libraries/spice-protocol
parent5f7c701eff432048f0ff09f198e2a525dc3d3847 (diff)
downloadnixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.tar
nixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.tar.gz
nixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.tar.bz2
nixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.tar.lz
nixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.tar.xz
nixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.tar.zst
nixpkgs-aba04ea5f32ead4e5a5fef07696fcb1ff3b802da.zip
spice-protocol: 0.12.15 -> 0.14.0
https://gitlab.freedesktop.org/spice/spice-protocol/blob/v0.14.0/CHANGELOG.md
Diffstat (limited to 'pkgs/development/libraries/spice-protocol')
-rw-r--r--pkgs/development/libraries/spice-protocol/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/spice-protocol/default.nix b/pkgs/development/libraries/spice-protocol/default.nix
index 18ec02b4acf..c32f336939c 100644
--- a/pkgs/development/libraries/spice-protocol/default.nix
+++ b/pkgs/development/libraries/spice-protocol/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "spice-protocol-0.12.15";
+  pname = "spice-protocol";
+  version = "0.14.0";
 
   src = fetchurl {
-    url = "https://www.spice-space.org/download/releases/${name}.tar.bz2";
-    sha256 = "06b461i4jv741in8617jjpfk28wk7zs9p7841njkf4sbm8xv4kcb";
+    url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
+    sha256 = "1b3f44c13pqsp7aabmcinfbmgl79038bp5548l5pjs16lcfam95n";
   };
 
   postInstall = ''