2012-08-28 00:36:16 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-10-03 03:19:36 +02:00
|
|
|
name = "spice-protocol-0.12.13";
|
2012-08-28 00:36:16 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
2017-10-03 03:19:36 +02:00
|
|
|
sha256 = "0cwrgkp558mblcf4vrhacb3iizz12khsrrl82w38w9nj0ar13vl9";
|
2012-08-28 00:36:16 +02:00
|
|
|
};
|
|
|
|
|
2015-09-18 20:16:44 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
ln -sv ../share/pkgconfig $out/lib/pkgconfig
|
|
|
|
'';
|
|
|
|
|
2014-09-01 09:47:42 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Protocol headers for the SPICE protocol";
|
2012-08-28 00:36:16 +02:00
|
|
|
homepage = http://www.spice-space.org;
|
2014-09-01 09:47:42 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bluescreen303 ];
|
|
|
|
platforms = platforms.linux;
|
2012-08-28 00:36:16 +02:00
|
|
|
};
|
|
|
|
}
|