mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gnome3.geary: add patch for longer client test timeout
I'm see this test timout frequently, most often on aarch64 on hydra. Patch is from debian, which probably noticed the same issue.
This commit is contained in:
parent
75a8cd9930
commit
3c0b03a9d9
1 changed files with 9 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gtk3, vala, enchant2, wrapGAppsHook, meson, ninja
|
||||
, desktop-file-utils, gnome-online-accounts, gsettings-desktop-schemas, adwaita-icon-theme
|
||||
, libcanberra-gtk3, libsecret, gmime, isocodes, libxml2, gettext
|
||||
, libcanberra-gtk3, libsecret, gmime, isocodes, libxml2, gettext, fetchpatch
|
||||
, sqlite, gcr, json-glib, itstool, libgee, gnome3, webkitgtk, python3
|
||||
, xvfb_run, dbus, shared-mime-info, libunwind, libunity, folks, glib-networking
|
||||
, gobject-introspection, gspell, appstream-glib, libytnef, libhandy }:
|
||||
|
@ -33,6 +33,14 @@ stdenv.mkDerivation rec {
|
|||
"-Dcontractor=true" # install the contractor file (Pantheon specific)
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Longer timeout for client test.
|
||||
(fetchpatch {
|
||||
url = "https://salsa.debian.org/gnome-team/geary/raw/04be1e058a2e65075dd8cf8843d469ee45a9e09a/debian/patches/Bump-client-test-timeout-to-300s.patch";
|
||||
sha256 = "1zvnq8bgla160531bjdra8hcg15mp8r1j1n53m1xfgm0ssnj5knx";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
chmod +x build-aux/post_install.py build-aux/git_version.py
|
||||
patchShebangs build-aux/post_install.py build-aux/git_version.py
|
||||
|
|
Loading…
Reference in a new issue