guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: Add sbcl-md5.


From: guix-commits
Subject: 06/08: gnu: Add sbcl-md5.
Date: Sat, 6 Apr 2019 22:10:07 -0400 (EDT)

iyzsong pushed a commit to branch master
in repository guix.

commit 66c84d20c38025f315c180883930805ea5ce26ff
Author: Katherine Cox-Buday <address@hidden>
Date:   Fri Mar 29 12:50:43 2019 -0500

    gnu: Add sbcl-md5.
    
    * gnu/packages/lisp.scm (sbcl-md5, cl-md5): New variables.
    
    Signed-off-by: 宋文武 <address@hidden>
---
 gnu/packages/lisp.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index b8fe98d..3f77b6d 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -3899,6 +3899,29 @@ process form data posted with HTTP POST method using 
enctype
 (define-public cl-rfc2388
   (sbcl-package->cl-source-package sbcl-rfc2388))
 
+(define-public sbcl-md5
+  (package
+    (name "sbcl-md5")
+    (version "2.0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/pmai/md5/archive/release-"; version ".tar.gz"))
+       (sha256
+        (base32 "19yl9n0pjdz5gw4qi711lka97xcd9f81ylg434hk7jwn9f2s6w11"))))
+    (build-system asdf-build-system/sbcl)
+    (home-page "https://github.com/pmai/md5";)
+    (synopsis
+     "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 
1321)")
+    (description
+     "This package implements The MD5 Message-Digest Algorithm, as defined in
+RFC 1321 by R. Rivest, published April 1992.")
+    (license license:public-domain)))
+
+(define-public cl-md5
+  (sbcl-package->cl-source-package sbcl-md5))
+
 (define-public sbcl-cl+ssl
   (let ((commit "b81c1135cf5700e870ce2573d5035d249e491788")
         (revision "1"))



reply via email to

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