[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/06: gnu: Add s6-portable-utils.
From: |
Ludovic Courtès |
Subject: |
04/06: gnu: Add s6-portable-utils. |
Date: |
Sun, 31 Jul 2016 23:12:11 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit 915db95f67aecd4390fedfa31a0e01cf3805744d
Author: Eric Le Bihan <address@hidden>
Date: Sat Jul 30 16:05:29 2016 +0200
gnu: Add s6-portable-utils.
* gnu/packages/skarnet.scm (s6-portable-utils): New variable.
Signed-off-by: Eric Le Bihan <address@hidden>
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/skarnet.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 1eda446..7486c23 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 "Tiny command-line Unix utilities")
+ (description
+ "s6-portable-utils is a set of tiny general Unix utilities, often
+performing well-known tasks such as @command{cut} and @command{grep}, but
+optimized for simplicity and small size. They were designed for embedded
+systems and other constrained environments, but they work everywhere.")))
- branch master updated (f92d99a -> 3920868), Ludovic Courtès, 2016/07/31
- 03/06: gnu: Add s6-rc., Ludovic Courtès, 2016/07/31
- 04/06: gnu: Add s6-portable-utils.,
Ludovic Courtès <=
- 01/06: gnu: Add Go 1.6., Ludovic Courtès, 2016/07/31
- 02/06: gnu: units: Update to 2.13., Ludovic Courtès, 2016/07/31
- 06/06: gnu: Add libgnomekbd., Ludovic Courtès, 2016/07/31
- 05/06: gnu: Add s6-linux-utils., Ludovic Courtès, 2016/07/31