2017-10-04 11:02:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, vala, glib, libxslt, gtk, wrapGAppsHook
|
2016-09-18 20:35:23 +01:00
|
|
|
, webkitgtk, json_glib, rest, libsecret, dbus_glib, gnome_common
|
2017-06-01 11:53:55 +01:00
|
|
|
, telepathy_glib, intltool, dbus_libs, icu, glib_networking
|
2016-09-18 20:35:23 +01:00
|
|
|
, libsoup, docbook_xsl_ns, docbook_xsl, gnome3
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib libxslt gtk webkitgtk json_glib rest gnome_common wrapGAppsHook
|
2017-10-04 11:02:58 +01:00
|
|
|
libsecret dbus_glib telepathy_glib glib_networking intltool icu libsoup vala
|
2016-09-18 20:35:23 +01:00
|
|
|
docbook_xsl_ns docbook_xsl gnome3.defaultIconTheme ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
}
|