diff mbox series

[bug#37252] gnu: ironclad: Update to 0.46.

Message ID 20190901092252.16958-1-glv@posteo.net
State Accepted
Headers show
Series [bug#37252] gnu: ironclad: Update to 0.46. | expand

Commit Message

Guillaume Le Vaillant Sept. 1, 2019, 9:22 a.m. UTC
* gnu/packages/lisp.scm (sbcl-ironclad): Update to 0.46.
  [source]: Fix file-name.
  [inputs]: Add bordeaux-threads dependency.
---
 gnu/packages/lisp.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

Comments

Ludovic Courtès Sept. 1, 2019, 8:27 p.m. UTC | #1
Guillaume Le Vaillant <glv@posteo.net> skribis:

> * gnu/packages/lisp.scm (sbcl-ironclad): Update to 0.46.
>   [source]: Fix file-name.
>   [inputs]: Add bordeaux-threads dependency.

Applied, thanks!

Ludo’.
diff mbox series

Patch

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 34edea41de..ea8f63bf5a 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -2175,7 +2175,7 @@  also be supported.")
 (define-public sbcl-ironclad
   (package
     (name "sbcl-ironclad")
-    (version "0.42")
+    (version "0.46")
     (source
      (origin
        (method git-fetch)
@@ -2184,14 +2184,15 @@  also be supported.")
              (commit (string-append "v" version))))
        (sha256
         (base32
-         "1wjcb9vpybxjrmch7f7s78a5abxmnknbd4fl49dl5lz8a3fc8vf0"))
-       (file-name (string-append "ironblad" version "-checkout"))))
+         "1s391awi2lsl7m1dbjirgpkm4p9p8wd076pakgvsvpn1rrznisnd"))
+       (file-name (git-file-name name version))))
     (build-system asdf-build-system/sbcl)
     (native-inputs
      ;; Tests only.
      `(("rt" ,sbcl-rt)))
     (inputs
-     `(("flexi-streams" ,sbcl-flexi-streams)
+     `(("bordeaux-threads" ,sbcl-bordeaux-threads)
+       ("flexi-streams" ,sbcl-flexi-streams)
        ("nibbles" ,sbcl-nibbles)))
     (synopsis "Cryptographic toolkit written in Common Lisp")
     (description