mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: sbcl-stmx: Update to 2.0.5-2.f71e742.
* gnu/packages/lisp-xyz.scm (sbcl-stmx): Update to 2.0.5-2.f71e742. [arguments]: Add 'fix-build' phase.
This commit is contained in:
parent
b30c60316c
commit
9ad8b0c2ef
1 changed files with 16 additions and 4 deletions
|
@ -21176,9 +21176,10 @@ (define-public cl-cepl
|
|||
(sbcl-package->cl-source-package sbcl-cepl))
|
||||
|
||||
(define-public sbcl-stmx
|
||||
;; No release for years and recent commits contain fixes for revent SBCL versions.
|
||||
(let ((commit "a7bb44082cd53ee968965adff03d4351750711a1")
|
||||
(revision "1"))
|
||||
;; No release for years and recent commits contain fixes for recent SBCL
|
||||
;; versions.
|
||||
(let ((commit "f71e742a50b85e3abc0af9bb5f02802f218a1705")
|
||||
(revision "2"))
|
||||
(package
|
||||
(name "sbcl-stmx")
|
||||
(version (git-version "2.0.5" revision commit))
|
||||
|
@ -21190,11 +21191,22 @@ (define-public sbcl-stmx
|
|||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1hfmh4vj271jdilir97qs6nqbi5nmn5alyls0w3d3xxqwi6ffqjs"))))
|
||||
(base32 "0q739mlw3s3z5kclzccz4r64ag38ks11fmd38109qwjv5knn69jv"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
(list sbcl-alexandria sbcl-bordeaux-threads sbcl-log4cl
|
||||
sbcl-closer-mop sbcl-trivial-garbage))
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-build
|
||||
(lambda _
|
||||
(substitute* "asm/transaction.lisp"
|
||||
(("\\(ftype \\(function \\(\\) fixnum\\) transaction-begin\\)")
|
||||
"(ftype (function () (unsigned-byte 32)) transaction-begin)")
|
||||
(("\\(values fixnum &optional\\)")
|
||||
"(unsigned-byte 32)")))))))
|
||||
(home-page "https://stmx.org/")
|
||||
(synopsis "High performance Transactional Memory for Common Lisp")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue