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