diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-04-22 14:29:46 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-04-22 14:29:46 +0800 |
commit | 1ea90625e4d4bfcd27cd0f3bfcaf67c229355841 (patch) | |
tree | 21f41474dec106ea6b44d966516629e8ad6d4b08 | |
parent | b19d6805a95404750ac90f19d78e29c885daacff (diff) |
gnu: vala: Fix tests by setting 'CC'.
This fixes a regression introduced in b19d680.
* gnu/packages/gnome.scm (vala)[arguments]: New field.
-rw-r--r-- | gnu/packages/gnome.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 057fc33f09..871cde8491 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1374,7 +1374,7 @@ engineering.") (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 @@ engineering.") 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) |