2012-08-27 15:36:16 -07:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-01 18:39:45 -07:00
|
|
|
pname = "spice-protocol";
|
2020-03-09 15:44:06 -07:00
|
|
|
version = "0.14.1";
|
2012-08-27 15:36:16 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-01 18:39:45 -07:00
|
|
|
url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
|
2020-03-09 15:44:06 -07:00
|
|
|
sha256 = "0ahk5hlanwhbc64r80xmchdav3ls156cvh9l68a0l22bhdhxmrkr";
|
2012-08-27 15:36:16 -07:00
|
|
|
};
|
|
|
|
|
2015-09-18 11:16:44 -07:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
ln -sv ../share/pkgconfig $out/lib/pkgconfig
|
|
|
|
'';
|
|
|
|
|
2014-09-01 00:47:42 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Protocol headers for the SPICE protocol";
|
2020-03-09 15:44:06 -07:00
|
|
|
homepage = "https://www.spice-space.org/";
|
2014-09-01 00:47:42 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bluescreen303 ];
|
|
|
|
platforms = platforms.linux;
|
2012-08-27 15:36:16 -07:00
|
|
|
};
|
|
|
|
}
|