gnu: libffcall: Update to 1.12.
* gnu/packages/libffcall.scm (libffcall): Update to 1.12. [source]: Source code is now stored in git.
This commit is contained in:
parent
fed5502125
commit
70cb7610ca
1 changed files with 10 additions and 9 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io>
|
;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -19,27 +20,27 @@
|
||||||
|
|
||||||
(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 cvs-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.10+cvs-2015-01-15")
|
(version "1.12")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method cvs-fetch)
|
(method git-fetch)
|
||||||
(uri (cvs-reference
|
(uri (git-reference
|
||||||
(root-directory
|
(url "https://git.savannah.gnu.org/r/libffcall.git")
|
||||||
":pserver:anonymous@cvs.savannah.gnu.org:/sources/libffcall")
|
(commit (string-append
|
||||||
(module "ffcall")
|
"ffcall-" (string-replace-substring version "." "-")))))
|
||||||
(revision "2015-01-15")))
|
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1lwdskc2w4rr98x9flr2726lmj4190l16r0izg7gqxy50801wwgd"))))
|
"0p7gg5k4ifcqpmrmdfmr2r4x909cn35g87iff539p6i8891fdfxf"))))
|
||||||
(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")
|
||||||
|
|
Reference in a new issue