2017-10-04 12:02:58 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, vala, glib, libxslt, gtk, wrapGAppsHook
|
2016-09-18 21:35:23 +02:00
|
|
|
, webkitgtk, json_glib, rest, libsecret, dbus_glib, gnome_common
|
2017-06-01 12:53:55 +02:00
|
|
|
, telepathy_glib, intltool, dbus_libs, icu, glib_networking
|
2016-09-18 21:35:23 +02: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";
|
|
|
|
|
2017-12-05 22:11:15 +01:00
|
|
|
outputs = [ "out" "man" "dev" ];
|
|
|
|
|
2016-09-18 21:35:23 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-12-05 22:11:15 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig vala gnome_common intltool wrapGAppsHook
|
|
|
|
libxslt docbook_xsl_ns docbook_xsl
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
glib gtk webkitgtk json_glib rest libsecret dbus_glib telepathy_glib glib_networking icu libsoup
|
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
}
|