gnu: libffcall: Update to 1.13.
* gnu/packages/libffcall.scm (libffcall): Update to 1.13. [source]: Use url-fetch, download from GNU mirror. [supported-systems]: Remove field.
This commit is contained in:
parent
730c0790fc
commit
6e13e2bd01
|
@ -20,27 +20,22 @@
|
||||||
|
|
||||||
(define-module (gnu packages libffcall)
|
(define-module (gnu packages libffcall)
|
||||||
#:use-module ((guix licenses) #:prefix l:)
|
#:use-module ((guix licenses) #:prefix l:)
|
||||||
#:use-module (guix utils) ; string-replace-substring
|
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu))
|
||||||
|
|
||||||
(define-public libffcall
|
(define-public libffcall
|
||||||
(package
|
(package
|
||||||
(name "libffcall")
|
(name "libffcall")
|
||||||
(version "1.12")
|
(version "1.13")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append
|
||||||
(url "https://git.savannah.gnu.org/r/libffcall.git")
|
"mirror://gnu/libffcall/libffcall-" version ".tar.gz"))
|
||||||
(commit (string-append
|
|
||||||
"ffcall-" (string-replace-substring version "." "-")))))
|
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0p7gg5k4ifcqpmrmdfmr2r4x909cn35g87iff539p6i8891fdfxf"))))
|
"1rxwkfr0p7vdv6q6x8nmn13611nsq0lnk9cspqdpzxdvgmqcw1qp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments `(#:parallel-build? #f))
|
(arguments `(#:parallel-build? #f))
|
||||||
(synopsis "Foreign function calls from interpreters")
|
(synopsis "Foreign function calls from interpreters")
|
||||||
|
@ -48,5 +43,4 @@
|
||||||
"GNU Libffcall is a collection of libraries that can be used to build
|
"GNU Libffcall is a collection of libraries that can be used to build
|
||||||
foreign function call interfaces in embedded interpreters.")
|
foreign function call interfaces in embedded interpreters.")
|
||||||
(home-page "https://www.gnu.org/software/libffcall/")
|
(home-page "https://www.gnu.org/software/libffcall/")
|
||||||
(supported-systems (delete "aarch64-linux" %supported-systems))
|
|
||||||
(license l:gpl2+)))
|
(license l:gpl2+)))
|
||||||
|
|
Loading…
Reference in New Issue