telepathy-glib: clean up
This commit is contained in:
parent
a268c6049b
commit
b053afde9a
1 changed files with 10 additions and 4 deletions
|
@ -1,21 +1,27 @@
|
|||
{ stdenv, fetchurl, dbus-glib, glib, python2, pkgconfig, libxslt
|
||||
, gobjectIntrospection, valaSupport ? true, vala_0_38, glibcLocales }:
|
||||
, gobjectIntrospection, vala, glibcLocales }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "telepathy-glib-0.24.1";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
|
||||
sha256 = "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy";
|
||||
};
|
||||
|
||||
configureFlags = stdenv.lib.optional valaSupport "--enable-vala-bindings";
|
||||
configureFlags = [
|
||||
"--enable-vala-bindings"
|
||||
];
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
propagatedBuildInputs = [dbus-glib glib gobjectIntrospection];
|
||||
propagatedBuildInputs = [ dbus-glib glib ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig libxslt ] ++ stdenv.lib.optional valaSupport vala_0_38;
|
||||
nativeBuildInputs = [ pkgconfig libxslt gobjectIntrospection vala ];
|
||||
buildInputs = [ glibcLocales python2 ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace telepathy-glib/telepathy-glib.pc.in --replace Requires.private Requires
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue