2012-08-27 23:36:16 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-04 16:35:52 +01:00
|
|
|
name = "spice-protocol-0.12.6";
|
2012-08-27 23:36:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
2013-07-04 16:35:52 +01:00
|
|
|
sha256 = "16r5x2sppiaa6pzawkrvk5q4hmw7ynmlp2xr38f1vaxj5rh4aiwx";
|
2012-08-27 23:36:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Protocol headers for the SPICE protocol";
|
2012-08-27 23:36:16 +01:00
|
|
|
homepage = http://www.spice-space.org;
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
|
2012-08-30 07:33:10 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
2012-08-29 22:35:39 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-08-27 23:36:16 +01:00
|
|
|
};
|
|
|
|
}
|