2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchgit, meson, ninja, pkg-config, nix-update-script
|
2020-08-16 06:15:11 +00:00
|
|
|
, python3, gtk3, libsecret, gst_all_1, webkitgtk, glib
|
2018-09-12 06:25:31 +00:00
|
|
|
, glib-networking, gtkspell3, hunspell, desktop-file-utils
|
2021-05-07 21:18:14 +00:00
|
|
|
, gobject-introspection, wrapGAppsHook, gnome }:
|
2017-12-26 03:55:28 +00:00
|
|
|
|
2018-09-12 06:25:31 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2018-12-12 08:12:22 +00:00
|
|
|
pname = "eolie";
|
2020-08-16 06:15:11 +00:00
|
|
|
version = "0.9.99";
|
2018-09-12 06:25:31 +00:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
doCheck = false;
|
2017-12-26 03:55:28 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
2018-06-30 13:23:37 +00:00
|
|
|
url = "https://gitlab.gnome.org/World/eolie";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
fetchSubmodules = true;
|
2020-08-16 06:15:11 +00:00
|
|
|
sha256 = "077jww5mqg6bbqbj0j1gss2j3dxlfr2xw8bc43k8vg52drqg6g8w";
|
2017-12-26 03:55:28 +00:00
|
|
|
};
|
|
|
|
|
2018-09-12 06:25:31 +00:00
|
|
|
nativeBuildInputs = [
|
2018-06-30 13:23:37 +00:00
|
|
|
desktop-file-utils
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2017-12-26 03:55:28 +00:00
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2017-12-26 03:55:28 +00:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
2018-09-12 06:25:31 +00:00
|
|
|
buildInputs = with gst_all_1; [
|
|
|
|
glib-networking
|
2019-02-15 09:08:27 +00:00
|
|
|
gobject-introspection
|
2018-09-12 06:25:31 +00:00
|
|
|
gst-libav
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-ugly
|
|
|
|
gstreamer
|
2021-05-07 21:18:14 +00:00
|
|
|
gnome.gnome-settings-daemon
|
2018-09-12 06:25:31 +00:00
|
|
|
gtk3
|
|
|
|
gtkspell3
|
|
|
|
hunspell
|
|
|
|
libsecret
|
2021-12-19 18:40:33 +00:00
|
|
|
webkitgtk
|
2020-08-16 06:15:11 +00:00
|
|
|
glib
|
2018-09-12 06:25:31 +00:00
|
|
|
];
|
2018-06-30 13:23:37 +00:00
|
|
|
|
2018-12-12 08:12:22 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2020-08-16 06:15:11 +00:00
|
|
|
pyfxa
|
2018-06-30 13:23:37 +00:00
|
|
|
beautifulsoup4
|
2020-08-16 06:15:11 +00:00
|
|
|
cryptography
|
2018-06-30 13:23:37 +00:00
|
|
|
pycairo
|
|
|
|
pygobject3
|
|
|
|
python-dateutil
|
2020-08-16 06:15:11 +00:00
|
|
|
pycrypto
|
2017-12-26 03:55:28 +00:00
|
|
|
];
|
|
|
|
|
2018-03-21 21:58:31 +00:00
|
|
|
postPatch = ''
|
2018-09-12 06:25:31 +00:00
|
|
|
chmod +x meson_post_install.py
|
2018-03-21 21:58:31 +00:00
|
|
|
patchShebangs meson_post_install.py
|
2017-12-26 03:55:28 +00:00
|
|
|
'';
|
|
|
|
|
2020-08-16 06:15:11 +00:00
|
|
|
dontWrapGApps = true;
|
2018-12-12 08:28:59 +00:00
|
|
|
preFixup = ''
|
|
|
|
buildPythonPath "$out $propagatedBuildInputs"
|
|
|
|
patchPythonScript "$out/libexec/eolie-sp"
|
2020-08-16 06:15:11 +00:00
|
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
2018-12-12 08:28:59 +00:00
|
|
|
'';
|
|
|
|
|
2020-07-29 16:33:39 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-08-16 06:15:11 +00:00
|
|
|
strictDeps = false;
|
2020-07-29 16:33:39 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-26 03:55:28 +00:00
|
|
|
description = "A new GNOME web browser";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Eolie";
|
2018-12-12 08:12:22 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2021-05-05 09:25:45 +00:00
|
|
|
maintainers = with maintainers; [ samdroid-apps ];
|
2018-12-12 08:12:22 +00:00
|
|
|
platforms = platforms.linux;
|
2017-12-26 03:55:28 +00:00
|
|
|
};
|
|
|
|
}
|