gnu: guile-cairo: Update to 1.11.1.
* gnu/packages/gtk.scm (guile-cairo): Update to 1.11.1. [arguments]: Add make-flag to hide guild warnings.
This commit is contained in:
parent
f91270bf0a
commit
c7a3926ee4
1 changed files with 4 additions and 3 deletions
|
@ -916,14 +916,14 @@ application suites.")
|
||||||
(define-public guile-cairo
|
(define-public guile-cairo
|
||||||
(package
|
(package
|
||||||
(name "guile-cairo")
|
(name "guile-cairo")
|
||||||
(version "1.10.0")
|
(version "1.11.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://savannah/guile-cairo/guile-cairo-"
|
(uri (string-append "mirror://savannah/guile-cairo/guile-cairo-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0p6xrhf2k6n5dybn88050za7h90gnd7534n62l53vsca187pwgdf"))
|
"1gc642r9ndsjhhmh9bl5cbd3dwvy4dpxwhr0zpsw43y9nmz37xpl"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
(begin
|
(begin
|
||||||
|
@ -945,7 +945,8 @@ application suites.")
|
||||||
(arguments
|
(arguments
|
||||||
;; Uses of 'scm_t_uint8' & co. are deprecated; don't stop the build
|
;; Uses of 'scm_t_uint8' & co. are deprecated; don't stop the build
|
||||||
;; because of them.
|
;; because of them.
|
||||||
'(#:configure-flags '("--disable-Werror")))
|
'(#:configure-flags '("--disable-Werror")
|
||||||
|
#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile-lib" ,guile-lib)
|
`(("guile-lib" ,guile-lib)
|
||||||
("expat" ,expat)
|
("expat" ,expat)
|
||||||
|
|
Reference in a new issue