diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-18 23:23:19 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-19 00:42:16 +0100 |
commit | 1b9e1648f631c2692712f3457e239154955cd371 (patch) | |
tree | 48ef5460173ce6dc5146a99c76548a8577f12d5a | |
parent | 8826b792d81c76571a562cb3d62ed5550e4ae04d (diff) | |
download | guix-1b9e1648f631c2692712f3457e239154955cd371.tar.gz guix-1b9e1648f631c2692712f3457e239154955cd371.zip |
gnu: workrave: Update to 1.10.37.
* gnu/packages/gnome.scm (workrave): Update to 1.10.37.
[arguments]: Disable #:tests?.
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index da3241ad6e..ff82c570d0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9296,7 +9296,7 @@ configurable file renaming. ") (define-public workrave (package (name "workrave") - (version "1.10.34") + (version "1.10.37") (source (origin (method git-fetch) @@ -9307,8 +9307,11 @@ configurable file renaming. ") version))))) (file-name (git-file-name name version)) (sha256 - (base32 "0czwhr7nw523753ajcjjfwrf91mq8pmzr19gp0srqsvb1dsn1zcf")))) + (base32 "01cxy7606hx9wgxl550l4p2xa9hsy0rk7swsp58hyi842z2z0y13")))) (build-system glib-or-gtk-build-system) + (arguments + ;; The only tests are maintainer tests (in po/), which fail. + `(#:tests? #f)) (inputs `(("glib" ,glib) ("gtk+" ,gtk+) ("gdk-pixbuf" ,gdk-pixbuf) |