2018-06-30 14:23:37 +01:00
|
|
|
{ stdenv, fetchgit, meson, ninja, pkgconfig, wrapGAppsHook
|
|
|
|
, desktop-file-utils, gobjectIntrospection, python36Packages
|
|
|
|
, gnome3, gst_all_1, gtkspell3, hunspell }:
|
2017-12-26 03:55:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "eolie-${version}";
|
2018-06-30 14:23:37 +01:00
|
|
|
version = "0.9.35";
|
2017-12-26 03:55:28 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
2018-06-30 14:23:37 +01:00
|
|
|
url = "https://gitlab.gnome.org/World/eolie";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
sha256 = "0x3p1fgx1fhrnr7vkkpnl34401r6k6xg2mrjff7ncb1k57q522k7";
|
2017-12-26 03:55:28 +00:00
|
|
|
};
|
|
|
|
|
2018-06-30 14:23:37 +01:00
|
|
|
nativeBuildInputs = with python36Packages; [
|
|
|
|
desktop-file-utils
|
|
|
|
gobjectIntrospection
|
2017-12-26 03:55:28 +00:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
2018-06-30 14:23:37 +01:00
|
|
|
wrapPython
|
2017-12-26 03:55:28 +00:00
|
|
|
];
|
|
|
|
|
2018-06-30 14:23:37 +01:00
|
|
|
buildInputs = [ gtkspell3 hunspell python36Packages.pygobject3 ] ++ (with gnome3; [
|
2018-07-22 03:03:24 +01:00
|
|
|
glib glib-networking gsettings-desktop-schemas gtk3 webkitgtk libsecret
|
2018-06-30 14:23:37 +01:00
|
|
|
]) ++ (with gst_all_1; [
|
|
|
|
gst-libav gst-plugins-base gst-plugins-ugly gstreamer
|
|
|
|
]);
|
|
|
|
|
|
|
|
pythonPath = with python36Packages; [
|
|
|
|
beautifulsoup4
|
|
|
|
pycairo
|
|
|
|
pygobject3
|
|
|
|
python-dateutil
|
2017-12-26 03:55:28 +00:00
|
|
|
];
|
|
|
|
|
2018-06-30 14:23:37 +01:00
|
|
|
postFixup = "wrapPythonPrograms";
|
2017-12-26 03:55:28 +00:00
|
|
|
|
2018-03-21 21:58:31 +00:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_post_install.py
|
2017-12-26 03:55:28 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A new GNOME web browser";
|
2018-06-30 14:23:37 +01:00
|
|
|
homepage = https://wiki.gnome.org/Apps/Eolie;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ samdroid-apps worldofpeace ];
|
|
|
|
platforms = platforms.linux;
|
2017-12-26 03:55:28 +00:00
|
|
|
};
|
|
|
|
}
|