diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-07-01 17:32:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-07-02 15:59:30 +0200 |
commit | 03671375b6eda0d47452780d91fd3af7bde791aa (patch) | |
tree | b179e999ab03cc75bbd1b32a7de2f2fa104b0e9e /distro | |
parent | a1232d0cb886c96b721d3f83aefdbc921bd95bc3 (diff) | |
download | guix-03671375b6eda0d47452780d91fd3af7bde791aa.tar.gz guix-03671375b6eda0d47452780d91fd3af7bde791aa.zip |
packages: Allow the `arguments' field to be a procedure.
* guix/packages.scm (package-derivation): When ARGS is a procedure, call
(ARGS SYSTEM).
* distro/base.scm (gawk)[arguments]: Turn into a procedure, to disable
tests on Cygwin.
Diffstat (limited to 'distro')
-rw-r--r-- | distro/base.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/distro/base.scm b/distro/base.scm index c9d2ae8033..9570b6d684 100644 --- a/distro/base.scm +++ b/distro/base.scm @@ -62,9 +62,13 @@ handlers, distributed shared memory, and more.") (nix-base32-string->bytevector "0sss7rhpvizi2a88h6giv0i7w5h07s2fxkw3s6n1hqvcnhrfgbb0")))) (build-system gnu-build-system) - (arguments '() - ;; TODO: disable tests on Cygwin - ) + (arguments (case-lambda + ((system) + (if (string=? system "i686-cygwin") + '(#:tests? #f) ; work around test failure on Cygwin + '())) + ((system cross-system) + '()))) (inputs `(("libsigsegv" ,libsigsegv) ; headers ("libsigsegv/lib" ,libsigsegv "lib"))) ; library (home-page "http://www.gnu.org/software/gawk/") |