summary refs log tree commit diff
path: root/pkgs/development/libraries/telepathy/glib/default.nix
blob: ca6a4997abf4aeb30ede2c8f493df8965e981c8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, dbus-glib, glib, python2, pkgconfig, libxslt
, gobjectIntrospection, valaSupport ? true, vala_0_38, glibcLocales }:

stdenv.mkDerivation rec {
  name = "telepathy-glib-0.24.1";

  src = fetchurl {
    url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
    sha256 = "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy";
  };

  configureFlags = stdenv.lib.optional valaSupport "--enable-vala-bindings";
  LC_ALL = "en_US.UTF-8";
  propagatedBuildInputs = [dbus-glib glib gobjectIntrospection];

  nativeBuildInputs = [ pkgconfig libxslt ] ++ stdenv.lib.optional valaSupport vala_0_38;
  buildInputs = [ glibcLocales python2 ];

  preConfigure = ''
    substituteInPlace telepathy-glib/telepathy-glib.pc.in --replace Requires.private Requires
  '';

  passthru.python = python2;

  meta = with stdenv.lib; {
    homepage = https://telepathy.freedesktop.org;
    platforms = platforms.unix;
    license = with licenses; [ bsd2 bsd3 lgpl21Plus ];
  };
}