nixpkgs/pkgs/development/libraries/spice-protocol/default.nix

25 lines
636 B
Nix
Raw Normal View History

2012-08-28 00:36:16 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "spice-protocol";
version = "0.14.0";
2012-08-28 00:36:16 +02:00
src = fetchurl {
url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
sha256 = "1b3f44c13pqsp7aabmcinfbmgl79038bp5548l5pjs16lcfam95n";
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; {
description = "Protocol headers for the SPICE protocol";
homepage = https://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
};
}