From 3ab5d94047836d4c6887fabe070803626f635611 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 7 Jul 2021 21:41:36 -0500 Subject: [PATCH] gnu: Add cl-authentic. * gnu/packages/lisp-xyz.scm (sbcl-authentic, ecl-authentic, cl-authentic): Add new variables. --- gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index fe1c010811..9aa5c854a7 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -16485,6 +16485,37 @@ for Common Lisp.") (define-public cl-bknr-datastore (sbcl-package->cl-source-package sbcl-bknr-datastore)) +(define-public sbcl-authentic + (let ((commit "d5ff2f4666ce24e41fb4ca22476c782c070e6f6e") + (revision "1")) + (package + (name "authentic") + (version (git-version "0.1.0" revision commit)) + (source + (origin + (method url-fetch) + (uri "/home/charles/cl-authentic") + (sha256 + (base32 "1dmi9lw1ickx0i41lh9sfchalvy7km6wc9w3szfjlvny7svwf6qp")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("clsql" ,sbcl-clsql) + ("ironclad" ,sbcl-ironclad))) + (home-page "") + (synopsis "Provide a light-weight and extendible solution to +user/password management for Common Lisp applicaitons") + (description "Authentic provides a light-weight and extendible +solution to user/password management for Common Lisp applicaitons. It has +features such as safe password storage in a database, password reset, user +confirmation tokens, and user authentication.") + (license license:llgpl)))) + +(define-public ecl-authentic + (sbcl-package->ecl-package sbcl-authentic)) + +(define-public cl-authentic + (sbcl-package->cl-source-package sbcl-authentic)) + (define-public sbcl-3d-vectors (let ((commit "29bb9684df803590deed344af63dbf7b712aabc0") (revision "1")) -- 2.32.0