diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-03-20 18:21:58 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-03-20 18:22:44 +0100 |
commit | bb804a0d58687dcb3f3ba904dcb958c84b8b84d5 (patch) | |
tree | 8aac85098ea218ac1ec434a61a34430fe8b31576 | |
parent | b09967bc587dd61c638da3d6fb5bbda7e87ed85c (diff) |
gnu: glib: Increase timeout for armhf builds.
* gnu/packages/glib.scm (glib)[arguments]: Increase timeout for armhf
builds.
-rw-r--r-- | gnu/packages/glib.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 5f710a4a38..a62a31a87b 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -235,7 +235,7 @@ shared NFS home directories.") (lambda _ (substitute* "meson.build" (("test_timeout = 60") - "test_timeout = 90") + "test_timeout = 120") (("test_timeout_slow = 120") "test_timeout_slow = 180"))))) '()) @@ -391,9 +391,10 @@ dynamic loading, and an object system.") (home-page "https://developer.gnome.org/glib/") (license license:lgpl2.1+))) -(define glib/fixed +(define-public glib/fixed (package (inherit glib) + (properties '()) (source (origin (inherit (package-source glib)) (patches |