guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: vala: Fix tests by setting 'CC'.


From: ???
Subject: 01/02: gnu: vala: Fix tests by setting 'CC'.
Date: Wed, 22 Apr 2015 06:33:54 +0000

iyzsong pushed a commit to branch wip-glib
in repository guix.

commit 1ea90625e4d4bfcd27cd0f3bfcaf67c229355841
Author: 宋文武 <address@hidden>
Date:   Wed Apr 22 14:29:46 2015 +0800

    gnu: vala: Fix tests by setting 'CC'.
    
    This fixes a regression introduced in b19d680.
    
    * gnu/packages/gnome.scm (vala)[arguments]: New field.
---
 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 057fc33..871cde8 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]