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