From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Le Bihan Subject: [PATCH 2/3] gnu: Add s6-portable-utils. Date: Sat, 30 Jul 2016 16:05:29 +0200 Message-ID: <1469887530-25353-3-git-send-email-eric.le.bihan.dev@free.fr> References: <1469887530-25353-1-git-send-email-eric.le.bihan.dev@free.fr> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTUtf-0003y5-V8 for guix-devel@gnu.org; Sat, 30 Jul 2016 10:05:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bTUtd-0003dV-IP for guix-devel@gnu.org; Sat, 30 Jul 2016 10:05:46 -0400 Received: from smtp6-g21.free.fr ([212.27.42.6]:42730) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTUtd-0003dQ-C9 for guix-devel@gnu.org; Sat, 30 Jul 2016 10:05:45 -0400 Received: from itchy.localdomain (unknown [46.166.137.229]) (Authenticated sender: eric.le.bihan.dev) by smtp6-g21.free.fr (Postfix) with ESMTPSA id 699EF7802B2 for ; Sat, 30 Jul 2016 12:27:05 +0200 (CEST) In-Reply-To: <1469887530-25353-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-portable-utils): New variable. Signed-off-by: Eric Le Bihan --- gnu/packages/skarnet.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm index 02094a0..c41f290 100644 --- a/gnu/packages/skarnet.scm +++ b/gnu/packages/skarnet.scm @@ -246,3 +246,36 @@ one-time initialization scripts, in the proper order according to a dependency tree. It ensures that long-running daemons are supervised by the s6 infrastructure, and that one-time scripts are also run in a controlled environment."))) + +(define-public s6-portable-utils + (package + (name "s6-portable-utils") + (version "2.0.6.0") + (source + (origin + (method url-fetch) + (uri (string-append + "http://skarnet.org/software/s6-portable-utils/s6-portable-utils-" + version ".tar.gz")) + (sha256 + (base32 + "0jwxj0ma4zd1h6i3i98nsp0miidr54phap7dqwf6c8vafq9psfr3")))) + (build-system gnu-build-system) + (inputs `(("skalibs" ,skalibs))) + (arguments + '(#:configure-flags (list + (string-append "--with-lib=" + (assoc-ref %build-inputs "skalibs") + "/lib/skalibs") + (string-append "--with-sysdeps=" + (assoc-ref %build-inputs "skalibs") + "/lib/skalibs/sysdeps")) + #:tests? #f)) + (home-page "http://skarnet.org/software/s6-portable-utils") + (license isc) + (synopsis "Set of tiny general Unix utilities") + (description + "s6-portable-utils is a set of tiny general Unix utilities, often +performing well-known tasks such as cut and grep, but optimized for +simplicity and small size. They were designed for embedded systems and other +constrained environments, but they work everywhere."))) -- 2.4.11