me
/
guix
Archived
1
0
Fork 0

gnu: swig: Skip tests when building for the Hurd.

* gnu/packages/swig.scm (swig)[arguments]: When building for the Hurd,
set #:tests? to #false.
Janneke Nieuwenhuizen 2023-06-12 13:29:00 +02:00
parent d04db1249c
commit 8236ed2218
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
;;; Copyright © 2018, 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -25,6 +26,7 @@
#:use-module (guix download)
#:use-module (guix licenses)
#:use-module (guix build-system gnu)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages boost)
#:use-module (gnu packages guile)
@ -54,6 +56,7 @@
perl))
;;("python" ,python-wrapper)
(inputs (list pcre))
(arguments (list #:tests? (not (target-hurd?))))
(home-page "https://swig.org/")
(synopsis
"Interface compiler that connects C/C++ code to higher-level languages")