2012-08-28 00:36:16 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "spice-protocol-0.10.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
|
|
|
sha256 = "0drmy2ws7qwmvjxfynhssbvh1y954rfik99hnl789g7yg6vcpxp5";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Protocol headers for the SPICE protocol.";
|
|
|
|
homepage = http://www.spice-space.org;
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
|
2012-08-30 08:33:10 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
2012-08-29 23:35:39 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-08-28 00:36:16 +02:00
|
|
|
};
|
|
|
|
}
|