[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/06: gnu: Add s6.
From: |
Ludovic Courtès |
Subject: |
04/06: gnu: Add s6. |
Date: |
Fri, 29 Jul 2016 15:30:10 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit 918cee467da691cbd6a1788eb4de1782bff61e61
Author: Eric Le Bihan <address@hidden>
Date: Thu Jul 28 20:05:55 2016 +0200
gnu: Add s6.
* gnu/packages/skarnet.scm (s6): New variable.
Signed-off-by: Eric Le Bihan <address@hidden>
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/skarnet.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 6d6239d..59c3782 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Claes Wallin <address@hidden>
+;;; Copyright © 2016 Eric Le Bihan <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -90,3 +91,43 @@ It features conditional loops, getopt-style option handling,
file name
globbing, redirection and other shell concepts, expressed as discrete commands
rather than in special syntax, minimizing runtime footprint and
complexity.")))
+
+(define-public s6
+ (package
+ (name "s6")
+ (version "2.3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://skarnet.org/software/s6/s6-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1rp8i228zxzbia1799pdav1kkzdk96fax9bcfyf2gilkdm3s1ja9"))))
+ (build-system gnu-build-system)
+ (inputs `(("skalibs" ,skalibs)
+ ("execline" ,execline)))
+ (arguments
+ '(#:configure-flags (list
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs")
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "execline")
+ "/lib/execline")
+ (string-append "--with-sysdeps="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs/sysdeps"))
+ #:tests? #f))
+ (home-page "http://skarnet.org/software/s6")
+ (license isc)
+ (synopsis "Small suite of programs for process supervision")
+ (description
+ "s6 is a small suite of programs for UNIX, designed to allow process
+supervision (a.k.a. service supervision), in the line of daemontools and
+runit, as well as various operations on processes and daemons. It is meant to
+be a toolbox for low-level process and service administration, providing
+different sets of independent tools that can be used within or without the
+framework, and that can be assembled together to achieve powerful
+functionality with a very small amount of code.")))
+
- branch master updated (ba9e2ee -> 7c6bdee), Ludovic Courtès, 2016/07/29
- 03/06: gnu: execline: Update to 2.1.5.0., Ludovic Courtès, 2016/07/29
- 05/06: gnu: Add s6-dns., Ludovic Courtès, 2016/07/29
- 02/06: gnu: skalibs: Update to 2.3.10.0., Ludovic Courtès, 2016/07/29
- 06/06: gnu: Add s6-networking., Ludovic Courtès, 2016/07/29
- 01/06: gnu: Add stellarium., Ludovic Courtès, 2016/07/29
- 04/06: gnu: Add s6.,
Ludovic Courtès <=