* [bug#46880] [PATCH] - added tooter library.
@ 2021-03-02 20:31 cage
2021-03-03 8:55 ` bug#46880: " Guillaume Le Vaillant
0 siblings, 1 reply; 3+ messages in thread
From: cage @ 2021-03-02 20:31 UTC (permalink / raw)
To: 46880
---
gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 12852f7eb7..15919dc8d8 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -14680,3 +14680,37 @@ attributes not supported by the Common Lisp standard functions.")
(define-public cl-file-attributes
(sbcl-package->cl-source-package sbcl-file-attributes))
+
+(define-public sbcl-tooter
+ (let ((commit "b8d4b245b1d946bc9da6f51a3d8c2dc43e4d3868")
+ (revision "1"))
+ (package
+ (name "sbcl-tooter")
+ (version (git-version "1.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Shinmera/tooter")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0g40dlis4dbw4p3zxz3scx27b9zm8zlzihywapf5zqrdqfx5hpq9"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-systems '("tooter")))
+ (inputs
+ `(("sbcl-yason" ,sbcl-yason)
+ ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
+ ("sbcl-drakma" ,sbcl-drakma)
+ ("sbcl-documentation-utils" ,sbcl-documentation-utils)))
+ (synopsis "Common Lisp client library for Mastodon instances")
+ (description "A Common Lisp client library for Mastodon instances.")
+ (home-page "https://shinmera.github.io/tooter/")
+ (license license:zlib))))
+
+(define-public ecl-tooter
+ (sbcl-package->ecl-package sbcl-tooter))
+
+(define-public cl-tooter
+ (sbcl-package->cl-source-package sbcl-tooter))
--
2.30.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-03-03 14:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-02 20:31 [bug#46880] [PATCH] - added tooter library cage
2021-03-03 8:55 ` bug#46880: " Guillaume Le Vaillant
2021-03-03 14:02 ` [bug#46880] " cage
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.