2012-08-27 23:36:16 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-02 02:39:45 +01:00
|
|
|
pname = "spice-protocol";
|
|
|
|
version = "0.14.0";
|
2012-08-27 23:36:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-02 02:39:45 +01:00
|
|
|
url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "1b3f44c13pqsp7aabmcinfbmgl79038bp5548l5pjs16lcfam95n";
|
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";
|
2018-11-24 23:01:22 +00:00
|
|
|
homepage = https://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
|
|
|
};
|
|
|
|
}
|