nixpkgs/pkgs/desktops/gnome-3/core/epiphany/default.nix

112 lines
1.8 KiB
Nix
Raw Normal View History

2019-09-21 03:39:40 +01:00
{ stdenv
, meson
, ninja
, gettext
, fetchurl
, pkgconfig
, gtk3
, glib
, icu
, wrapGAppsHook
, gnome3
, libxml2
, libxslt
, itstool
, webkitgtk
, libsoup
, glib-networking
, libsecret
, gnome-desktop
, libnotify
, p11-kit
, sqlite
, gcr
, isocodes
, desktop-file-utils
, python3
, nettle
, gdk-pixbuf
, gst_all_1
, json-glib
, libdazzle
, libhandy
2020-02-26 22:11:17 +00:00
, buildPackages
2019-09-21 03:39:40 +01:00
}:
stdenv.mkDerivation rec {
pname = "epiphany";
2020-07-03 20:03:00 +01:00
version = "3.36.3";
src = fetchurl {
url = "mirror://gnome/sources/epiphany/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-07-03 20:03:00 +01:00
sha256 = "0vz1j6yrjv0nmf5lk8prkkm10fbcmd35khy9zsd7d4a86wk5c6v2";
};
# Tests need an X display
2019-09-21 03:39:40 +01:00
mesonFlags = [
"-Dunit_tests=disabled"
];
2018-03-22 14:40:21 +00:00
nativeBuildInputs = [
2019-09-21 03:39:40 +01:00
desktop-file-utils
gettext
itstool
libxslt
meson
ninja
pkgconfig
python3
wrapGAppsHook
2020-02-26 22:11:17 +00:00
buildPackages.glib
buildPackages.gtk3
2018-03-22 14:40:21 +00:00
];
2018-03-22 14:40:21 +00:00
buildInputs = [
2019-09-21 03:39:40 +01:00
gcr
gdk-pixbuf
glib
glib-networking
gnome-desktop
gnome3.adwaita-icon-theme
gst_all_1.gst-libav
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
gst_all_1.gstreamer
gtk3
icu
isocodes
json-glib
libdazzle
libhandy
libnotify
libsecret
libsoup
libxml2
nettle
p11-kit
sqlite
webkitgtk
2018-03-22 14:40:21 +00:00
];
2017-10-04 22:50:14 +01:00
postPatch = ''
chmod +x post_install.py # patchShebangs requires executable file
patchShebangs post_install.py
'';
2018-03-22 14:40:21 +00:00
passthru = {
updateScript = gnome3.updateScript {
2019-09-21 03:39:40 +01:00
packageName = pname;
2018-03-22 14:40:21 +00:00
};
};
meta = with stdenv.lib; {
homepage = "https://wiki.gnome.org/Apps/Epiphany";
description = "WebKit based web browser for GNOME";
maintainers = teams.gnome.members;
license = licenses.gpl2;
platforms = platforms.linux;
};
}