Archived
1
0
Fork 0

gnu: swig: Clean up inputs.

* gnu/packages/swig.scm (swig)[inputs]: Move perl, guile-2.0 ...
[inputs]: ... to here.
This commit is contained in:
Efraim Flashner 2019-12-01 10:31:28 +02:00
parent b7fd304e28
commit 7ed91f8c8d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2,6 +2,7 @@
;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -60,18 +61,12 @@
(("-isystem ") "-I")) (("-isystem ") "-I"))
#t))))) #t)))))
(native-inputs `(("boost" ,boost) (native-inputs `(("boost" ,boost)
("pcre" ,pcre "bin"))) ;for 'pcre-config' ("pcre" ,pcre "bin") ;for 'pcre-config'
(inputs `(;; Provide these to run the corresponding tests. ;; The following are for tests and examples:
("pcre" ,pcre) ("guile" ,guile-2.0)
("guile" ,guile-2.0) ("perl" ,perl)))
("perl" ,perl))) ;;("python" ,python-wrapper)
;; FIXME: reactivate input python as soon as the test failures (inputs `(("pcre" ,pcre)))
;; fatal error: Python.h: No such file or directory
;; # include <Python.h>
;; are fixed.
;; The python part probably never worked and does not seem to
;; be needed for currently dependent packages.
;; ("python" ,python-wrapper)))
(home-page "http://swig.org/") (home-page "http://swig.org/")
(synopsis (synopsis
"Interface compiler that connects C/C++ code to higher-level languages") "Interface compiler that connects C/C++ code to higher-level languages")