epiphany: 3.38.2 → 40.1

This commit is contained in:
Jan Tojnar 2021-03-21 06:15:45 +01:00
parent 619102f411
commit 0320f7a325
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -19,6 +19,7 @@
, libsecret
, gnome-desktop
, libnotify
, libarchive
, p11-kit
, sqlite
, gcr
@ -36,18 +37,13 @@
stdenv.mkDerivation rec {
pname = "epiphany";
version = "3.38.2";
version = "40.1";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0v8iymg72m83ikxxyhapvz5v8zh8hlr1pw7n215cy3p8q6yg41cb";
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "1l0sb1xg16g4wg3z99xb0w2kbyczbn7q4mphs3w4lxq22xml4sk9";
};
# Tests need an X display
mesonFlags = [
"-Dunit_tests=disabled"
];
nativeBuildInputs = [
desktop-file-utils
gettext
@ -83,6 +79,7 @@ stdenv.mkDerivation rec {
libhandy
libportal
libnotify
libarchive
libsecret
libsoup
libxml2
@ -92,6 +89,11 @@ stdenv.mkDerivation rec {
webkitgtk
];
# Tests need an X display
mesonFlags = [
"-Dunit_tests=disabled"
];
postPatch = ''
chmod +x post_install.py # patchShebangs requires executable file
patchShebangs post_install.py
@ -107,7 +109,7 @@ stdenv.mkDerivation rec {
homepage = "https://wiki.gnome.org/Apps/Epiphany";
description = "WebKit based web browser for GNOME";
maintainers = teams.gnome.members;
license = licenses.gpl2;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}