3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/spice-protocol/default.nix

24 lines
606 B
Nix
Raw Normal View History

2012-08-27 23:36:16 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-09-24 12:45:12 +01:00
name = "spice-protocol-0.12.12";
2012-08-27 23:36:16 +01:00
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
2016-09-24 12:45:12 +01:00
sha256 = "00wx81f2ml62g3maw63jq9w217zym921rdi38h7lpm5m8ckxraqp";
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; {
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
};
}