gnu: Add lack.
authorKatherine Cox-Buday <cox.katherine.e@gmail.com>
Fri, 29 Mar 2019 21:28:04 +0000 (16:28 -0500)
committer宋文武 <iyzsong@member.fsf.org>
Sun, 7 Apr 2019 06:10:04 +0000 (14:10 +0800)
* gnu/packages/lisp.scm (sbcl-lack, cl-lack): New variables.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
gnu/packages/lisp.scm

index 9d53923..64a4eee 100644 (file)
@@ -5109,3 +5109,39 @@ performance and simplicity in mind.")
 
 (define-public cl-lack-middleware-static
   (sbcl-package->cl-source-package sbcl-lack-middleware-static))
+
+(define-public sbcl-lack
+  (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
+        (revision "1"))
+    (package
+     (name "sbcl-lack")
+     (version (git-version "0.1.0" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/fukamachi/lack.git")
+             (commit commit)))
+       (sha256
+        (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
+     (build-system asdf-build-system/sbcl)
+     (arguments
+      '(#:test-asd-file "t-lack.asd"
+        ;; XXX: Component :CLACK not found
+        #:tests? #f))
+     (native-inputs
+      `(("prove-asdf" ,sbcl-prove-asdf)))
+     (inputs
+      `(("sbcl-lack-component" ,sbcl-lack-component)
+        ("sbcl-lack-util" ,sbcl-lack-util)))
+     (home-page "https://github.com/fukamachi/lack")
+     (synopsis "Lack, the core of Clack")
+     (description
+      "Lack is a Common Lisp library which allows web applications to be
+constructed of modular components.  It was originally a part of Clack, however
+it's going to be rewritten as an individual project since Clack v2 with
+performance and simplicity in mind.")
+     (license license:llgpl))))
+
+(define-public cl-lack
+  (sbcl-package->cl-source-package sbcl-lack))