mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add swig@4.1.
* gnu/packages/swig.scm (swig-next): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
8716f33d98
commit
27fcbf3c81
1 changed files with 18 additions and 0 deletions
|
@ -67,3 +67,21 @@ (define-public swig
|
|||
|
||||
;; See http://www.swig.org/Release/LICENSE for details.
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public swig-next
|
||||
;; a number of packages using swig do not build with this version
|
||||
;; so we need to keep swig 4.0.2 above and place the current release
|
||||
;; as swig-next
|
||||
(package
|
||||
(inherit swig)
|
||||
(name "swig")
|
||||
(version "4.1.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
||||
name "-" version "/"
|
||||
name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16xc767gf5ip40jh698wbdrxrghli5v2c966bkdmrmpwv378mw1a"))))
|
||||
(inputs (list pcre2))))
|
||||
|
|
Loading…
Reference in a new issue