1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/development/libraries/telepathy-qt/default.nix
Yury G. Kudryashov 199cc0ce51 telepathy-qt-0.9.0
Notice that this is *not* downgrade. This is a new project recently renamed from
telepathy-qt4 (the old telepathy-qt seems to be dead).

svn path=/nixpkgs/trunk/; revision=33046
2012-03-13 19:07:09 +00:00

21 lines
616 B
Nix

{ stdenv, fetchurl, cmake, qt4, pkgconfig, python, libxslt, dbus_glib
, telepathy_farsight, telepathy_glib }:
stdenv.mkDerivation rec {
name = "telepathy-qt-0.9.0";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz";
sha256 = "0v3hnvzm3k2z99rc1znxgriqvf1n7wyjdzzsld0czhbmrz9fhang";
};
buildNativeInputs = [ cmake pkgconfig python libxslt ];
propagatedBuildInputs = [ qt4 dbus_glib telepathy_farsight telepathy_glib ];
patches = [ ./missing-include.patch ];
preBuild = ''
NIX_CFLAGS_COMPILE+=" `pkg-config --cflags farsight2-0.10`"
'';
}