From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Le Bihan Subject: [PATCH 3/5] gnu: Add s6. Date: Thu, 28 Jul 2016 20:05:55 +0200 Message-ID: <1469729157-18253-4-git-send-email-eric.le.bihan.dev@free.fr> References: <1469729157-18253-1-git-send-email-eric.le.bihan.dev@free.fr> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36848) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSphD-0005BE-FM for guix-devel@gnu.org; Thu, 28 Jul 2016 14:06:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSphA-0007cw-9k for guix-devel@gnu.org; Thu, 28 Jul 2016 14:06:10 -0400 Received: from smtp5-g21.free.fr ([212.27.42.5]:32070) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSphA-0007cm-3L for guix-devel@gnu.org; Thu, 28 Jul 2016 14:06:08 -0400 Received: from itchy.localdomain (unknown [82.227.241.205]) (Authenticated sender: eric.le.bihan.dev) by smtp5-g21.free.fr (Postfix) with ESMTPSA id EB1405FF7A for ; Thu, 28 Jul 2016 20:14:14 +0200 (CEST) In-Reply-To: <1469729157-18253-1-git-send-email-eric.le.bihan.dev@free.fr> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/skarnet.scm (s6): New variable. Signed-off-by: Eric Le Bihan --- gnu/packages/skarnet.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm index 6d6239d..3678cc8 100644 --- a/gnu/packages/skarnet.scm +++ b/gnu/packages/skarnet.scm @@ -90,3 +90,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."))) + -- 2.4.11