2012-08-27 23:36:16 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-10-03 02:19:36 +01:00
|
|
|
name = "spice-protocol-0.12.13";
|
2012-08-27 23:36:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
2017-10-03 02:19:36 +01:00
|
|
|
sha256 = "0cwrgkp558mblcf4vrhacb3iizz12khsrrl82w38w9nj0ar13vl9";
|
2012-08-27 23:36:16 +01:00
|
|
|
};
|
|
|
|
|
2015-09-18 19:16:44 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
ln -sv ../share/pkgconfig $out/lib/pkgconfig
|
|
|
|
'';
|
|
|
|
|
2014-09-01 08:47:42 +01:00
|
|
|
meta = with stdenv.lib; {
|
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;
|
2014-09-01 08:47:42 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bluescreen303 ];
|
|
|
|
platforms = platforms.linux;
|
2012-08-27 23:36:16 +01:00
|
|
|
};
|
|
|
|
}
|