3
0
Fork 0
forked from mirrors/nixpkgs

epiphany: 3.34.4 -> 3.36.0

This commit is contained in:
Tor Hedin Brønner 2020-02-09 01:13:56 +01:00 committed by Jan Tojnar
parent 052cf17490
commit c4d7d9be22
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -3,6 +3,7 @@
, ninja
, gettext
, fetchurl
, fetchpatch
, pkgconfig
, gtk3
, glib
@ -35,13 +36,22 @@
stdenv.mkDerivation rec {
pname = "epiphany";
version = "3.34.4";
version = "3.36.0";
src = fetchurl {
url = "mirror://gnome/sources/epiphany/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "13ar3s40cds1rplwbzx0fzigf120w0rydiv05r3k6zpc0zy91qb0";
sha256 = "1xjn6jk4dx2kl2llalydcyvibnpwjahp9z3210pflyy4k68pfw6l";
};
patches = [
# Fix downloading files
# https://gitlab.gnome.org/GNOME/epiphany/issues/1127
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/epiphany/commit/8682a084bab7e758a9b8efe1deaf0cb8d55fcf44.patch";
sha256 = "bep+Q8Wpu84KA13a5T3JCz8nyeC13HT/QkMKvWT6vLk=";
})
];
# Tests need an X display
mesonFlags = [
"-Dunit_tests=disabled"