diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-25 23:56:09 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-25 23:56:23 +0200 |
commit | 19cf83426a2e8c07669c0b5f801977b707c645ac (patch) | |
tree | aba501fb181a1b3c96e4fd421cafe3acc24c3570 | |
parent | fa0c17749376d700b1eafdda4772f8f3b229fb3d (diff) | |
download | guix-19cf83426a2e8c07669c0b5f801977b707c645ac.tar.gz guix-19cf83426a2e8c07669c0b5f801977b707c645ac.zip |
gnu: nomad: Fix build.
* gnu/packages/guile-xyz.scm (nomad)[inputs]: Use Guile 2.2 library packages.
[arguments]: Treat warnings as warnings.
-rw-r--r-- | gnu/packages/guile-xyz.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 3f05c0e4c7..a26ea48f59 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2972,9 +2972,9 @@ perform geometrical transforms on JPEG images.") ("perl" ,perl))) (inputs `(("guile" ,guile-2.2) - ("guile-lib" ,guile-lib) - ("guile-gcrypt" ,guile-gcrypt) - ("guile-readline" ,guile-readline) + ("guile-lib" ,guile2.2-lib) + ("guile-gcrypt" ,guile2.2-gcrypt) + ("guile-readline" ,guile2.2-readline) ("gnutls" ,gnutls) ("shroud" ,shroud) ("emacsy" ,emacsy-minimal) @@ -2994,6 +2994,9 @@ perform geometrical transforms on JPEG images.") (ice-9 popen) (ice-9 rdelim) (srfi srfi-26)) + #:configure-flags + ;; Ignore ‘error: ‘GTimeVal’ is deprecated: Use 'GDateTime' instead.’ + (list "CFLAGS=-Wno-error") #:phases (modify-phases %standard-phases (add-before 'check 'start-xorg-server |