diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2022-01-07 12:43:54 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2022-01-07 12:46:19 +0100 |
commit | fed39f13f0a640f90d7e3bc0701aa165974f45cd (patch) | |
tree | 970adc59b2db9826045ecc4344b7618c73d511ae | |
parent | c7ef7a0f84bd19ef32e4cc5439ee4f332921eeb9 (diff) | |
download | guix-fed39f13f0a640f90d7e3bc0701aa165974f45cd.tar.gz |
gnu: Add cl-gopher.
* gnu/packages/lisp-xyz.scm (cl-gopher, ecl-cl-gopher, sbcl-cl-gopher): New variables.
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 062f8e683e..45c70387a1 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -20181,3 +20181,42 @@ APL.") (define-public ecl-april (sbcl-package->ecl-package sbcl-april)) + +(define-public sbcl-cl-gopher + (let ((commit "29fbe52e3f377e24e8bde77b00789a1e32a75b90") + (revision "1")) + (package + (name "sbcl-cl-gopher") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/knusbaum/cl-gopher") + (commit commit))) + (file-name (git-file-name "cl-gopher" version)) + (sha256 + (base32 "1dilgbnbgbrn7wglv8n03kpgc94l43mgv9y0akg7h5mwn8ii5p6m")))) + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-bordeaux-threads + sbcl-drakma + sbcl-flexi-streams + sbcl-quri + sbcl-split-sequence + sbcl-usocket)) + (home-page "https://github.com/knusbaum/cl-gopher") + (synopsis "Gopher protocol library in Common Lisp") + (description + "@code{cl-gopher} is a Common Lisp library for interacting with the +Gopher protocol. + +It is suitable for building both clients and servers, and provides a sample +client.") + (license license:bsd-2)))) + +(define-public cl-gopher + (sbcl-package->cl-source-package sbcl-cl-gopher)) + +(define-public ecl-cl-gopher + (sbcl-package->ecl-package sbcl-cl-gopher)) |