[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/19: gnu: Add cl-easy-routes.
From: |
guix-commits |
Subject: |
11/19: gnu: Add cl-easy-routes. |
Date: |
Thu, 21 Mar 2024 17:59:31 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit 869954270fed3ee583091991661be7842d90fa8c
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue Mar 19 21:13:50 2024 +0000
gnu: Add cl-easy-routes.
* gnu/packages/lisp-xyz.scm (cl-easy-routes, ecl-easy-routes,
sbcl-easy-routes): New variables.
Change-Id: Ic8d7413faf4b7e23775cc9c10b1b3da6494433d0
---
gnu/packages/lisp-xyz.scm | 51 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1a2d9aba6d..1b17dd1d28 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -2991,6 +2991,57 @@ management.")
(define-public ecl-eager-future2
(sbcl-package->ecl-package sbcl-eager-future2))
+(define-public sbcl-easy-routes
+ (let ((commit "7832f8bf3d07825b5eb967a2ef04da7c40c18248")
+ (revision "0"))
+ (package
+ (name "sbcl-easy-routes")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mmontone/easy-routes")
+ (commit commit)))
+ (file-name (git-file-name "cl-easy-routes" version))
+ (sha256
+ (base32 "1banw54kz2llzb9h5sm47ckfc9l348m7qncm0npsy0w837rxkyzx"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-systems '("easy-routes"
+ "easy-routes+djula"
+ "easy-routes+errors")))
+ (native-inputs
+ (list sbcl-stefil))
+ (inputs
+ (list sbcl-djula
+ sbcl-hunchentoot
+ sbcl-hunchentoot-errors
+ sbcl-routes))
+ (home-page "https://github.com/mmontone/easy-routes/")
+ (synopsis "Routes handling utility on top of Hunchentoot")
+ (description
+ "EASY-ROUTES is yet another routes handling system on top of
+Hunchentoot. It's just glue code for Restas routing subsystem (CL-ROUTES).
+
+It supports:
+@itemize
+@item dispatch based on HTTP method
+@item arguments extraction from the url path
+@item decorators
+@item URL generation from route names
+@end itemize
+
+This package provides EASY-ROUTES, EASY-ROUTES+DJULA and EASY-ROUTES+ERRORS
+systems.")
+ (license license:expat))))
+
+(define-public cl-easy-routes
+ (sbcl-package->cl-source-package sbcl-easy-routes))
+
+(define-public ecl-easy-routes
+ (sbcl-package->ecl-package sbcl-easy-routes))
+
(define-public sbcl-jpl-util
(let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
(package
- branch master updated (d67e4f0f9b -> c0dfb550cb), guix-commits, 2024/03/21
- 01/19: gnu: cl-form-types: Disable tests on ECL implementation., guix-commits, 2024/03/21
- 06/19: gnu: Add cl-boost-json., guix-commits, 2024/03/21
- 08/19: gnu: Add cl-json-pointer., guix-commits, 2024/03/21
- 07/19: gnu: Add cl-st-json., guix-commits, 2024/03/21
- 09/19: gnu: Add cl-mimeparse., guix-commits, 2024/03/21
- 10/19: gnu: Add cl-hunchentoot-errors., guix-commits, 2024/03/21
- 11/19: gnu: Add cl-easy-routes.,
guix-commits <=
- 13/19: gnu: Add cl-punch., guix-commits, 2024/03/21
- 16/19: gnu: cl-deploy: Remove input labels., guix-commits, 2024/03/21
- 12/19: gnu: Add cl-vgplot., guix-commits, 2024/03/21
- 02/19: gnu: cl-form-types: Update to 0.3.2., guix-commits, 2024/03/21
- 03/19: gnu: Add cl-arrow-macros., guix-commits, 2024/03/21
- 17/19: gnu: cl-clack: Refresh package style., guix-commits, 2024/03/21
- 19/19: gnu: sbcl-cl-gltf: Update to 2.0.0-1.7a3af05., guix-commits, 2024/03/21
- 15/19: gnu: cl-generic-cl: Refresh package style., guix-commits, 2024/03/21
- 18/19: gnu: cl-woo: Remove input labels., guix-commits, 2024/03/21
- 04/19: gnu: Add cl-trivial-utilities., guix-commits, 2024/03/21