2012-08-27 23:36:16 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-10-19 01:20:50 +01:00
|
|
|
name = "spice-protocol-0.12.10";
|
2012-08-27 23:36:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
2015-10-19 01:20:50 +01:00
|
|
|
sha256 = "1yrfacqgnabmx2q768mim892ga2wnlp5cavkf51v3idyjmqhv3vq";
|
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
|
|
|
};
|
|
|
|
}
|