nixpkgs/pkgs/applications/networking/browsers/eolie/default.nix

68 lines
1.4 KiB
Nix
Raw Normal View History

2018-09-11 23:25:31 -07:00
{ stdenv, fetchgit, meson, ninja, pkgconfig
, python3, gtk3, libsecret, gst_all_1, webkitgtk
, glib-networking, gtkspell3, hunspell, desktop-file-utils
, gobject-introspection, wrapGAppsHook }:
2017-12-25 19:55:28 -08:00
2018-09-11 23:25:31 -07:00
python3.pkgs.buildPythonApplication rec {
2018-12-12 00:12:22 -08:00
pname = "eolie";
2019-09-28 22:47:04 -07:00
version = "0.9.63";
2018-09-11 23:25:31 -07:00
format = "other";
doCheck = false;
2017-12-25 19:55:28 -08:00
src = fetchgit {
2018-06-30 06:23:37 -07:00
url = "https://gitlab.gnome.org/World/eolie";
rev = "refs/tags/${version}";
fetchSubmodules = true;
2019-09-28 22:47:04 -07:00
sha256 = "0z8gcfg7i842rr5p8r3vqa31kf7nnj1yv3afax3jzf4zbnhb8wm0";
2017-12-25 19:55:28 -08:00
};
2018-09-11 23:25:31 -07:00
nativeBuildInputs = [
2018-06-30 06:23:37 -07:00
desktop-file-utils
gobject-introspection
2017-12-25 19:55:28 -08:00
meson
ninja
pkgconfig
wrapGAppsHook
];
2018-09-11 23:25:31 -07:00
buildInputs = with gst_all_1; [
glib-networking
gobject-introspection
2018-09-11 23:25:31 -07:00
gst-libav
gst-plugins-base
gst-plugins-ugly
gstreamer
gtk3
gtkspell3
hunspell
libsecret
webkitgtk
];
2018-06-30 06:23:37 -07:00
2018-12-12 00:12:22 -08:00
propagatedBuildInputs = with python3.pkgs; [
2018-06-30 06:23:37 -07:00
beautifulsoup4
pycairo
pygobject3
python-dateutil
2017-12-25 19:55:28 -08:00
];
2018-03-21 14:58:31 -07:00
postPatch = ''
2018-09-11 23:25:31 -07:00
chmod +x meson_post_install.py
2018-03-21 14:58:31 -07:00
patchShebangs meson_post_install.py
2017-12-25 19:55:28 -08:00
'';
preFixup = ''
buildPythonPath "$out $propagatedBuildInputs"
patchPythonScript "$out/libexec/eolie-sp"
'';
2017-12-25 19:55:28 -08:00
meta = with stdenv.lib; {
description = "A new GNOME web browser";
2018-12-12 00:12:22 -08:00
homepage = https://wiki.gnome.org/Apps/Eolie;
license = licenses.gpl3Plus;
2018-06-30 06:23:37 -07:00
maintainers = with maintainers; [ samdroid-apps worldofpeace ];
2018-12-12 00:12:22 -08:00
platforms = platforms.linux;
2017-12-25 19:55:28 -08:00
};
}