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

24 lines
606 B
Nix
Raw Normal View History

2012-08-28 02:36:16 +04:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-10-19 03:20:50 +03:00
name = "spice-protocol-0.12.10";
2012-08-28 02:36:16 +04:00
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
2015-10-19 03:20:50 +03:00
sha256 = "1yrfacqgnabmx2q768mim892ga2wnlp5cavkf51v3idyjmqhv3vq";
2012-08-28 02:36:16 +04:00
};
2015-09-18 21:16:44 +03:00
postInstall = ''
mkdir -p $out/lib
ln -sv ../share/pkgconfig $out/lib/pkgconfig
'';
2014-09-01 11:47:42 +04:00
meta = with stdenv.lib; {
description = "Protocol headers for the SPICE protocol";
2012-08-28 02:36:16 +04:00
homepage = http://www.spice-space.org;
2014-09-01 11:47:42 +04:00
license = licenses.bsd3;
maintainers = with maintainers; [ bluescreen303 ];
platforms = platforms.linux;
2012-08-28 02:36:16 +04:00
};
}