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

83 lines
1.8 KiB
Nix
Raw Normal View History

{ 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
2020-08-16 06:15:11 +00:00
, gobject-introspection, wrapGAppsHook, gnome3 }:
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
gobject-introspection
2017-12-26 03:55:28 +00:00
meson
ninja
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
gobject-introspection
2018-09-12 06:25:31 +00:00
gst-libav
gst-plugins-base
gst-plugins-ugly
gstreamer
2020-08-16 06:15:11 +00:00
gnome3.gnome-settings-daemon
2018-09-12 06:25:31 +00:00
gtk3
gtkspell3
hunspell
libsecret
(webkitgtk.override {enableGLES = false;})
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;
preFixup = ''
buildPythonPath "$out $propagatedBuildInputs"
patchPythonScript "$out/libexec/eolie-sp"
2020-08-16 06:15:11 +00:00
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
2020-08-16 06:15:11 +00:00
strictDeps = false;
meta = with lib; {
2017-12-26 03:55:28 +00:00
description = "A new GNOME web browser";
homepage = "https://wiki.gnome.org/Apps/Eolie";
2018-12-12 08:12:22 +00:00
license = licenses.gpl3Plus;
2018-06-30 13:23:37 +00:00
maintainers = with maintainers; [ samdroid-apps worldofpeace ];
2018-12-12 08:12:22 +00:00
platforms = platforms.linux;
2017-12-26 03:55:28 +00:00
};
}