mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: vala: Fix tests by setting 'CC'.
This fixes a regression introduced in b19d680
.
* gnu/packages/gnome.scm (vala)[arguments]: New field.
This commit is contained in:
parent
b19d6805a9
commit
1ea90625e4
1 changed files with 9 additions and 2 deletions
|
@ -1374,7 +1374,7 @@ (define-public gnome-themes-standard
|
|||
(define-public vala
|
||||
(package
|
||||
(name "vala")
|
||||
(version "0.26.1")
|
||||
(version "0.28.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
|
@ -1382,8 +1382,15 @@ (define-public vala
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0swyym2papln0f62ah05dpvq3vv6fssap26jq2zqp9dkkaqsn1w4"))))
|
||||
"0zwpzhkhfk3piya14m7p2hl2vaabahprphppfm46ci91z39kp7hd"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'set-cc
|
||||
(lambda _
|
||||
(setenv "CC" "gcc")
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("flex" ,flex)
|
||||
|
|
Loading…
Reference in a new issue