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

68 lines
1.4 KiB
Nix
Raw Normal View History

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