2016-09-18 12:35:23 -07:00
|
|
|
{ stdenv, intltool, fetchurl, pkgconfig, gtk3, glib, nspr, icu
|
|
|
|
, bash, wrapGAppsHook, gnome3, libwnck3, libxml2, libxslt, libtool
|
|
|
|
, webkitgtk, libsoup, glib_networking, libsecret, gnome_desktop, libnotify, p11_kit
|
|
|
|
, sqlite, gcr, avahi, nss, isocodes, itstool, file, which
|
2017-06-25 09:59:23 -07:00
|
|
|
, gdk_pixbuf, librsvg, gnome_common, gst_all_1, json_glib }:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
|
|
|
# Tests need an X display
|
|
|
|
configureFlags = [ "--disable-static --disable-tests" ];
|
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig file wrapGAppsHook ];
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ gtk3 glib intltool libwnck3 libxml2 libxslt file
|
2016-09-18 12:35:23 -07:00
|
|
|
webkitgtk libsoup libsecret gnome_desktop libnotify libtool
|
|
|
|
sqlite isocodes nss itstool p11_kit nspr icu gnome3.yelp_tools
|
|
|
|
gdk_pixbuf gnome3.defaultIconTheme librsvg which gnome_common
|
2016-10-10 12:12:34 -07:00
|
|
|
gcr avahi gnome3.gsettings_desktop_schemas gnome3.dconf
|
2016-11-26 03:50:15 -08:00
|
|
|
gnome3.glib_networking gst_all_1.gstreamer gst_all_1.gst-plugins-base
|
|
|
|
gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly
|
2017-06-25 09:59:23 -07:00
|
|
|
gst_all_1.gst-libav json_glib ];
|
2016-09-18 12:35:23 -07:00
|
|
|
|
2016-10-03 13:21:13 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${nss.dev}/include/nss -I${glib.dev}/include/gio-unix-2.0";
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Epiphany;
|
|
|
|
description = "WebKit based web browser for GNOME";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|