ef41fc7f51
Hydra: ?compare=1399476
23 lines
853 B
Nix
23 lines
853 B
Nix
{ stdenv, fetchurl, pkgconfig, vala, glib, libxslt, gtk, wrapGAppsHook
|
|
, webkitgtk, json_glib, rest, libsecret, dbus_glib, gnome_common
|
|
, telepathy_glib, intltool, dbus_libs, icu, glib_networking
|
|
, 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;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib libxslt gtk webkitgtk json_glib rest gnome_common wrapGAppsHook
|
|
libsecret dbus_glib telepathy_glib glib_networking intltool icu libsoup vala
|
|
docbook_xsl_ns docbook_xsl gnome3.defaultIconTheme ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.linux;
|
|
maintainers = gnome3.maintainers;
|
|
};
|
|
}
|