[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/11: gnu: Add guile-daemon.
From: |
Alex Kost |
Subject: |
08/11: gnu: Add guile-daemon. |
Date: |
Mon, 25 Jul 2016 14:22:22 +0000 (UTC) |
alezost pushed a commit to branch master
in repository guix.
commit 07f7cc03cead55543f2df6d6e954010e8c6c1357
Author: Alex Kost <address@hidden>
Date: Fri Jul 22 11:10:35 2016 +0300
gnu: Add guile-daemon.
* gnu/packages/guile.scm (guile-daemon): New variable.
---
gnu/packages/guile.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 9b85016..acae23e 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -1154,4 +1154,29 @@ SQL databases. This package implements the interface
for SQLite.")
library}.")
(license gpl3+)))
+(define-public guile-daemon
+ (package
+ (name "guile-daemon")
+ (version "0.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/alezost/" name
+ "/releases/download/v" version
+ "/" name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1s90h8qhblhhz4ahn3p5d573a24px6cdjq2w311ibpgwnsni4qvq"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("guile" ,guile-2.0)))
+ (home-page "https://github.com/alezost/guile-daemon")
+ (synopsis "Evaluate code in a running Guile process")
+ (description
+ "Guile-Daemon is a small Guile program that loads your initial
+configuration file, and then reads and evaluates Guile expressions that
+you send to a FIFO file.")
+ (license gpl3+)))
+
;;; guile.scm ends here
- branch master updated (1925a87 -> 424a323), Alex Kost, 2016/07/25
- 05/11: doc: Describe how to make X server find TrueType fonts., Alex Kost, 2016/07/25
- 01/11: gnu: Add xfontsel., Alex Kost, 2016/07/25
- 09/11: gnu: emacs: Install site-start.el in non-versioned directory., Alex Kost, 2016/07/25
- 03/11: gnu: mkfontdir: Do not propagate 'mkfontscale'., Alex Kost, 2016/07/25
- 04/11: profiles: Add fonts-dir-file hook., Alex Kost, 2016/07/25
- 06/11: gnu: Add xdpyprobe., Alex Kost, 2016/07/25
- 02/11: gnu: Add xfd., Alex Kost, 2016/07/25
- 08/11: gnu: Add guile-daemon.,
Alex Kost <=
- 10/11: gnu: emacs-solarized-theme: Remove unneeded dependencies., Alex Kost, 2016/07/25
- 11/11: doc: Explain when guix edit is read-only., Alex Kost, 2016/07/25
- 07/11: gnu: Add guile-xosd., Alex Kost, 2016/07/25