[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: gnu: Add deploy.
From: |
guix-commits |
Subject: |
02/05: gnu: Add deploy. |
Date: |
Sun, 29 Nov 2020 09:37:01 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 0fac1f259196d8c7e238e0a88e51a9bf462638d0
Author: Adam Kandur <rndd@tuta.io>
AuthorDate: Sun Nov 29 15:07:42 2020 +0100
gnu: Add deploy.
* gnu/packages/lisp-xyz.scm (cl-deploy, ecl-deploy, sbcl-deploy): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 670fdbd..4cacb40 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11478,3 +11478,39 @@ predictable cross-platform behavior and some utilities
useful for versioning.")
(define-public ecl-defpackage-plus
(sbcl-package->ecl-package sbcl-defpackage-plus))
+
+(define-public sbcl-deploy
+ ;; tagged branch is outdated
+ (let ((revision "1")
+ (commit "59fd49719ef651a8fc11750bcfb337f132cff75f"))
+ (package
+ (name "sbcl-deploy")
+ (version (git-version "1.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Shinmera/deploy")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1vl2116z4kw2pd3qd3n6mmg8g0mnwxr9dgddk86g7j1bis1z8k9a"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("cffi" ,sbcl-cffi)
+ ("documentation-utils" ,sbcl-documentation-utils)))
+ (arguments
+ '(#:asd-files '("deploy.asd")))
+ (home-page "https://shinmera.github.io/deploy/")
+ (synopsis "Deployment tools for standalone Common Lisp application")
+ (description
+ "This is a system to help you easily and quickly deploy standalone
+common lisp applications as binaries. Specifically it is geared towards
+applications with foreign library dependencies that run some kind of GUI.")
+ (license license:artistic2.0))))
+
+(define-public cl-deploy
+ (sbcl-package->cl-source-package sbcl-deploy))
+
+(define-public ecl-deploy
+ (sbcl-package->ecl-package sbcl-deploy))