* [bug#51483] [PATCH] gnu: Add cl-pass
@ 2021-10-29 14:32 Foo Chuan Wei
2021-10-29 23:49 ` [bug#51483] [PATCH v2] " Foo Chuan Wei
0 siblings, 1 reply; 3+ messages in thread
From: Foo Chuan Wei @ 2021-10-29 14:32 UTC (permalink / raw)
To: 51483
* gnu/packages/lisp-xyz.scm (cl-pass, ecl-cl-pass, sbcl-cl-pass):
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 e4e13b7ed7..46620cfe6c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -18595,3 +18595,34 @@ higher-level lispier interface.")
(define-public ecl-cl-charms
(sbcl-package->ecl-package sbcl-cl-charms))
+
+(define-public sbcl-cl-pass
+ (let ((commit "e58e97c0c0588dc742c061208afb9bc31e4dbd34")
+ (revision "1"))
+ (package
+ (name "sbcl-cl-pass")
+ (version (git-version "0.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/eudoxia0/cl-pass")
+ (commit commit)))
+ (file-name (git-file-name "cl-pass" version))
+ (sha256
+ (base32
+ "05qx4jrkxqbqi72cxgswbpnifbdvp9mh7apc7566v522899bh0hb"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs `(("ironclad" ,sbcl-ironclad)
+ ("trivial-utf-8" ,sbcl-trivial-utf-8)
+ ("split-sequence" ,sbcl-split-sequence)))
+ (native-inputs `(("fiveam" ,sbcl-fiveam)))
+ (home-page "https://github.com/eudoxia0/cl-pass")
+ (synopsis " Password hashing and verification library")
+ (description "cl-pass is a password hashing and verification library.")
+ (license license:expat))))
+
+(define-public cl-pass
+ (sbcl-package->cl-source-package sbcl-cl-pass))
+
+(define-public ecl-cl-pass
+ (sbcl-package->ecl-package sbcl-cl-pass))
base-commit: ad39268cdf075f4c4eeb87ed78ce46ca6f817675
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#51483] [PATCH v2] gnu: Add cl-pass
2021-10-29 14:32 [bug#51483] [PATCH] gnu: Add cl-pass Foo Chuan Wei
@ 2021-10-29 23:49 ` Foo Chuan Wei
2021-10-30 9:14 ` bug#51483: " Guillaume Le Vaillant
0 siblings, 1 reply; 3+ messages in thread
From: Foo Chuan Wei @ 2021-10-29 23:49 UTC (permalink / raw)
To: 51483
* gnu/packages/lisp-xyz.scm (cl-pass, ecl-cl-pass, sbcl-cl-pass):
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 e4e13b7ed7..0410709e83 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -18595,3 +18595,34 @@ higher-level lispier interface.")
(define-public ecl-cl-charms
(sbcl-package->ecl-package sbcl-cl-charms))
+
+(define-public sbcl-cl-pass
+ (let ((commit "e58e97c0c0588dc742c061208afb9bc31e4dbd34")
+ (revision "1"))
+ (package
+ (name "sbcl-cl-pass")
+ (version (git-version "0.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/eudoxia0/cl-pass")
+ (commit commit)))
+ (file-name (git-file-name "cl-pass" version))
+ (sha256
+ (base32
+ "05qx4jrkxqbqi72cxgswbpnifbdvp9mh7apc7566v522899bh0hb"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs `(("ironclad" ,sbcl-ironclad)
+ ("trivial-utf-8" ,sbcl-trivial-utf-8)
+ ("split-sequence" ,sbcl-split-sequence)))
+ (native-inputs `(("fiveam" ,sbcl-fiveam)))
+ (home-page "https://github.com/eudoxia0/cl-pass")
+ (synopsis "Password hashing and verification library")
+ (description "cl-pass is a password hashing and verification library.")
+ (license license:expat))))
+
+(define-public cl-pass
+ (sbcl-package->cl-source-package sbcl-cl-pass))
+
+(define-public ecl-cl-pass
+ (sbcl-package->ecl-package sbcl-cl-pass))
base-commit: ad39268cdf075f4c4eeb87ed78ce46ca6f817675
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#51483: [PATCH v2] gnu: Add cl-pass
2021-10-29 23:49 ` [bug#51483] [PATCH v2] " Foo Chuan Wei
@ 2021-10-30 9:14 ` Guillaume Le Vaillant
0 siblings, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2021-10-30 9:14 UTC (permalink / raw)
To: Foo Chuan Wei; +Cc: 51483-done
[-- Attachment #1: Type: text/plain, Size: 66 bytes --]
Patch pushed as cd188b9c6f28bd907b625a5cd6c616d1d2529671.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-10-30 9:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-29 14:32 [bug#51483] [PATCH] gnu: Add cl-pass Foo Chuan Wei
2021-10-29 23:49 ` [bug#51483] [PATCH v2] " Foo Chuan Wei
2021-10-30 9:14 ` bug#51483: " Guillaume Le Vaillant
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).