guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

83/88: gnu: sbcl-cl-ppcre: Don't use unstable tarball.


From: guix-commits
Subject: 83/88: gnu: sbcl-cl-ppcre: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 23:44:49 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit eabcf02efdbbc0b427c0ceae402a3335d48aed12
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Apr 9 00:19:51 2019 +0200

    gnu: sbcl-cl-ppcre: Don't use unstable tarball.
    
    * gnu/packages/lisp.scm (sbcl-cl-ppcre)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/lisp.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 824027c..38836dd 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -855,13 +855,13 @@ streams which are similar to string streams.")
     (version "2.0.11")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/edicl/cl-ppcre/archive/v";
-             version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/edicl/cl-ppcre.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name "cl-ppcre" version))
        (sha256
-        (base32 "1i7daxf0wnydb0pgwiym7qh2wy70n14lxd6dyv28sy0naa8p31gd"))
-       (file-name (string-append "cl-ppcre-" version ".tar.gz"))))
+        (base32 "0q3iany07vgqm144lw6pj0af2d3vsikpbkwcxr30fci3kzsq4f49"))))
     (build-system asdf-build-system/sbcl)
     (native-inputs `(("flexi-streams" ,sbcl-flexi-streams)))
     (synopsis "Portable regular expression library for Common Lisp")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]