diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-10 23:47:53 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-10 23:47:53 -0500 |
commit | a25896bb7576c8232acc7a3fd4da0b1cba89569b (patch) | |
tree | 665b36a25b475fb95d5594784600e1da51d82150 /gnu | |
parent | 3049097ac2f06999a2f5309a5ce1711a3be12ec4 (diff) | |
download | guix-a25896bb7576c8232acc7a3fd4da0b1cba89569b.tar.gz |
gnu: vigra: Raise max-silent-time timeout value to 2 hours.
Fixes <https://issues.guix.gnu.org/40887>. * gnu/packages/image.scm (vigra)[properties]: Add a 'max-silent-time' property, with a value of 7200 seconds (2 hours).
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/image.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 8cba9c298b..935333dee2 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1218,7 +1218,9 @@ processing and analysis library that puts its main emphasis on customizable algorithms and data structures. It is particularly strong for multi-dimensional image processing.") (license license:expat) - (home-page "https://ukoethe.github.io/vigra/"))) + (home-page "https://ukoethe.github.io/vigra/") + (properties '((max-silent-time . 7200))))) ;2 hours, to avoid timing out + (define-public vigra-c (let* ((commit "66ff4fa5a7d4a77415caa676a45c2c6ea16562e7") |