all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46821] [PATCH 1/1] gnu: Add daemon (Common Lisp)
@ 2021-02-27 21:10 Sharlatan Hellseher
  2021-02-28  8:40 ` bug#46821: " Guillaume Le Vaillant
  0 siblings, 1 reply; 2+ messages in thread
From: Sharlatan Hellseher @ 2021-02-27 21:10 UTC (permalink / raw)
  To: 46821

[-- Attachment #1: Type: text/plain, Size: 356 bytes --]

-- 
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

[-- Attachment #2: 0001-gnu-Add-daemon.patch --]
[-- Type: text/x-patch, Size: 1736 bytes --]

From 40a7fae65e8b432e48d934079830c85289fbe9dd Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Sat, 27 Feb 2021 21:06:07 +0000
Subject: [PATCH] gnu: Add daemon

* gnu/packages/lisp-xyz.scm (sbcl-daemon, cl-daemon, ecl-daemon): New variables.
---
 gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 9ebd1735ad..88518c8199 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -14614,3 +14614,34 @@ adaptations.")
 
 (define-public cl-radiance
   (sbcl-package->cl-source-package sbcl-radiance))
+
+(define-public sbcl-daemon
+  (let ((commit "d5652f4332c3cee21e9bf83b9237129605004597")
+        (revision "1"))
+    (package
+      (name "sbcl-daemon")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/snmsts/daemon")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1kdxfnhh9fz34j8qs7pn7mwjz3v33q4v9nh0hqkyzraq5xs2j3f4"))))
+      (build-system asdf-build-system/sbcl)
+      (home-page "https://github.com/snmsts/daemon")
+      (synopsis "Daemonize lisp process")
+      (inputs
+       `(("trivial-features" ,sbcl-trivial-features)))
+      (description
+       "DAEMON provides functionality to daemonize Common Lisp process on UNIX
+like platforms.")
+      (license license:expat))))
+
+(define-public ecl-daemon
+  (sbcl-package->ecl-package sbcl-daemon))
+
+(define-public cl-daemon
+  (sbcl-package->cl-source-package sbcl-daemon))
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#46821: [PATCH 1/1] gnu: Add daemon (Common Lisp)
  2021-02-27 21:10 [bug#46821] [PATCH 1/1] gnu: Add daemon (Common Lisp) Sharlatan Hellseher
@ 2021-02-28  8:40 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2021-02-28  8:40 UTC (permalink / raw)
  To: Sharlatan Hellseher; +Cc: 46821-done

[-- Attachment #1: Type: text/plain, Size: 90 bytes --]

Patch pushed as f35c9fd52116bf06e8200dfdade13b94659d217a with some
modifications.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-02-28  8:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-27 21:10 [bug#46821] [PATCH 1/1] gnu: Add daemon (Common Lisp) Sharlatan Hellseher
2021-02-28  8:40 ` bug#46821: " Guillaume Le Vaillant

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.