Merge branch 'master' into staging
[jackhill/guix/guix.git] / gnu / packages / admin.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
4 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2014, 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
7 ;;; Copyright © 2015 Alex Sassmannshausen <alex.sassmannshausen@gmail.com>
8 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
9 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
10 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
11 ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
12 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
13 ;;; Copyright © 2016 Peter Feigl <peter.feigl@nexoid.at>
14 ;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net>
15 ;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
16 ;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <me@tobias.gr>
17 ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
18 ;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
19 ;;; Copyright © 2017 Ethan R. Jones <doubleplusgood23@gmail.com>
20 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
21 ;;;
22 ;;; This file is part of GNU Guix.
23 ;;;
24 ;;; GNU Guix is free software; you can redistribute it and/or modify it
25 ;;; under the terms of the GNU General Public License as published by
26 ;;; the Free Software Foundation; either version 3 of the License, or (at
27 ;;; your option) any later version.
28 ;;;
29 ;;; GNU Guix is distributed in the hope that it will be useful, but
30 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
31 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 ;;; GNU General Public License for more details.
33 ;;;
34 ;;; You should have received a copy of the GNU General Public License
35 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
36
37 (define-module (gnu packages admin)
38 #:use-module ((guix licenses) #:prefix license:)
39 #:use-module (guix packages)
40 #:use-module (guix utils)
41 #:use-module (guix download)
42 #:use-module (guix git-download)
43 #:use-module (guix build-system cmake)
44 #:use-module (guix build-system gnu)
45 #:use-module (guix build-system python)
46 #:use-module (guix build-system trivial)
47 #:use-module (gnu packages)
48 #:use-module (gnu packages base)
49 #:use-module (gnu packages cyrus-sasl)
50 #:use-module (gnu packages ncurses)
51 #:use-module (gnu packages readline)
52 #:use-module (gnu packages linux)
53 #:use-module (gnu packages lua)
54 #:use-module (gnu packages guile)
55 #:use-module (gnu packages gettext)
56 #:use-module (gnu packages pcre)
57 #:use-module (gnu packages perl)
58 #:use-module (gnu packages tcl)
59 #:use-module (gnu packages compression)
60 #:use-module (gnu packages cross-base)
61 #:use-module (gnu packages tls)
62 #:use-module (gnu packages gnupg)
63 #:use-module (gnu packages bison)
64 #:use-module (gnu packages flex)
65 #:use-module (gnu packages glib)
66 #:use-module (gnu packages openldap)
67 #:use-module (gnu packages mcrypt)
68 #:use-module (gnu packages pkg-config)
69 #:use-module (gnu packages popt)
70 #:use-module (gnu packages python)
71 #:use-module (gnu packages texinfo)
72 #:use-module (gnu packages groff)
73 #:use-module (gnu packages pciutils)
74 #:use-module (gnu packages libunwind)
75 #:use-module (gnu packages libusb)
76 #:use-module (gnu packages libftdi)
77 #:use-module (gnu packages image)
78 #:use-module (gnu packages xorg)
79 #:use-module (gnu packages xdisorg)
80 #:use-module (gnu packages python)
81 #:use-module (gnu packages man)
82 #:use-module (gnu packages autotools)
83 #:use-module (gnu packages gnome)
84 #:use-module (gnu packages kerberos)
85 #:use-module (gnu packages gtk)
86 #:use-module (gnu packages xml))
87
88 (define-public aide
89 (package
90 (name "aide")
91 (version "0.16")
92 (source (origin
93 (method url-fetch)
94 (uri (string-append "mirror://sourceforge/aide/aide/"
95 version "/aide-" version ".tar.gz"))
96 (sha256
97 (base32
98 "0ibkv4z2gk14fn014kq13rp2ysiq6nn2cflv2q5i7zf466hm6758"))))
99 (build-system gnu-build-system)
100 (native-inputs
101 `(("bison" ,bison)
102 ("flex" ,flex)))
103 (inputs
104 `(("libgcrypt" ,libgcrypt)
105 ("libgpg-error" ,libgpg-error)
106 ("libmhash" ,libmhash)
107 ("pcre" ,pcre)
108 ("zlib" ,zlib)))
109 (synopsis "File and directory integrity checker")
110 (description
111 "AIDE (Advanced Intrusion Detection Environment) is a file and directory
112 integrity checker. It creates a database from the regular expression rules
113 that it finds from its configuration files. Once this database is initialized
114 it can be used to verify the integrity of the files. It has several message
115 digest algorithms that are used to check the integrity of files. All of the
116 usual file attributes can be checked for inconsistencies.")
117 (home-page "http://aide.sourceforge.net/")
118 (license license:gpl2+)))
119
120 (define-public progress
121 (package
122 (name "progress")
123 (version "0.13.1")
124 (source (origin
125 (method url-fetch)
126 (uri (string-append "https://github.com/Xfennec/"
127 name "/archive/v" version ".tar.gz"))
128 (sha256
129 (base32 "199rk6608q9m6l0fbjm0xl2w1c5krf8245dqnksdp4rqp7l9ak06"))
130 (file-name (string-append name "-" version ".tar.gz"))))
131 (build-system gnu-build-system)
132 (native-inputs
133 `(("pkg-config" ,pkg-config)
134 ("which" ,which)))
135 (inputs
136 `(("ncurses" ,ncurses)))
137 (arguments
138 `(#:tests? #f ; There is no test suite.
139 #:make-flags (list "CC=gcc"
140 (string-append "PREFIX=" (assoc-ref %outputs "out")))
141 #:phases
142 (modify-phases %standard-phases
143 (delete 'configure)))) ; There's no configure phase.
144 (home-page "https://github.com/Xfennec/progress")
145 (synopsis "Program to view the progress of the coreutils commands")
146 (description "A program that looks for coreutils basic commands (cp, mv,
147 dd, tar, gzip/gunzip, cat, etc.) currently running on your system and displays
148 the percentage of copied data. It can also show estimated time and throughput,
149 and provides a \"top-like\" mode (monitoring).")
150 (license license:gpl3+)))
151
152 (define-public shepherd
153 (package
154 (name "shepherd")
155 (version "0.3.2")
156 (source (origin
157 (method url-fetch)
158 (uri (string-append "ftp://alpha.gnu.org/gnu/dmd/shepherd-"
159 version ".tar.gz"))
160 (sha256
161 (base32
162 "174q1qg7yg6w1hfvlfv720hr6hid4h5xzw15y3ycfpspllzldhcb"))))
163 (build-system gnu-build-system)
164 (arguments
165 '(#:configure-flags '("--localstatedir=/var")))
166 (native-inputs
167 `(("pkg-config" ,pkg-config)
168
169 ;; This is the Guile we use as a cross-compiler...
170 ("guile" ,guile-2.2)))
171 (inputs
172 ;; ... and this is the one that appears in shebangs when cross-compiling.
173 `(("guile" ,guile-2.2)))
174 (synopsis "System service manager")
175 (description
176 "The GNU Shepherd is a daemon-managing daemon, meaning that it supervises
177 the execution of system services, replacing similar functionality found in
178 typical init systems. It provides dependency-handling through a convenient
179 interface and is based on GNU Guile.")
180 (license license:gpl3+)
181 (home-page "https://www.gnu.org/software/shepherd/")
182 (properties '((ftp-server . "alpha.gnu.org")))))
183
184 (define-public dfc
185 (package
186 (name "dfc")
187 (version "3.0.4")
188 (source
189 (origin
190 (method url-fetch)
191 (uri (string-append
192 "http://projects.gw-computing.net/attachments/download/79/dfc-"
193 version ".tar.gz"))
194 (sha256
195 (base32
196 "0zk1ppx93ijimf4sbgqilxxikpsa2gmpbynknyh41xy7jbdjxp0b"))))
197 (build-system cmake-build-system)
198 (arguments '(#:tests? #f)) ; There are no tests.
199 (native-inputs `(("gettext" ,gettext-minimal)))
200 (home-page "http://projects.gw-computing.net/projects/dfc")
201 (synopsis "Display file system space usage using graphs and colors")
202 (description
203 "dfc (df color) is a modern version of df. It uses colors, draws pretty
204 graphs and can export its output to different formats.")
205 (license license:bsd-3)))
206
207 (define-public htop
208 (package
209 (name "htop")
210 (version "2.0.2")
211 (source (origin
212 (method url-fetch)
213 (uri (string-append "http://hisham.hm/htop/releases/"
214 version "/htop-" version ".tar.gz"))
215 (sha256
216 (base32
217 "11zlwadm6dpkrlfvf3z3xll26yyffa7qrxd1w72y1kl0rgffk6qp"))))
218 (build-system gnu-build-system)
219 (inputs
220 `(("ncurses" ,ncurses)))
221 (home-page "http://htop.sourceforge.net/")
222 (synopsis "Interactive process viewer")
223 (description
224 "This is htop, an interactive process viewer. It is a text-mode
225 application (for console or X terminals) and requires ncurses.")
226 (license license:gpl2)))
227
228 (define-public pies
229 (package
230 (name "pies")
231 (version "1.3")
232 (source
233 (origin
234 (method url-fetch)
235 (uri (string-append "mirror://gnu/pies/pies-"
236 version ".tar.bz2"))
237 (sha256
238 (base32
239 "12r7rjjyibjdj08dvwbp0iflfpzl4s0zhn6cr6zj3hwf9gbzgl1g"))))
240 (build-system gnu-build-system)
241 (arguments
242 '(#:phases (modify-phases %standard-phases
243 (add-before 'build 'patch-/bin/sh
244 (lambda* (#:key inputs #:allow-other-keys)
245 ;; Use the right shell when executing user-provided
246 ;; shell commands.
247 (let ((bash (assoc-ref inputs "bash")))
248 (substitute* "src/progman.c"
249 (("\"/bin/sh\"")
250 (string-append "\"" bash "/bin/sh\"")))
251 #t))))))
252 (home-page "https://www.gnu.org/software/pies/")
253 (synopsis "Program invocation and execution supervisor")
254 (description
255 "GNU pies is a program that supervises the invocation and execution of
256 other programs. It reads the list of programs to be started from its
257 configuration file, executes them, and then monitors their status,
258 re-executing them as necessary.")
259 (license license:gpl3+)))
260
261 (define-public inetutils
262 (package
263 (name "inetutils")
264 (version "1.9.4")
265 (source (origin
266 (method url-fetch)
267 (uri (string-append "mirror://gnu/inetutils/inetutils-"
268 version ".tar.gz"))
269 (sha256
270 (base32
271 "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy"))))
272 (build-system gnu-build-system)
273 (arguments
274 `(#:configure-flags '("--localstatedir=/var"
275
276 ;; Make sure 'PATH_PROCNET_DEV' gets defined when
277 ;; cross-compiling (by default it does not.)
278 ,@(if (%current-target-system)
279 '("--with-path-procnet-dev=/proc/net/dev")
280 '()))
281 ;; On some systems, 'libls.sh' may fail with an error such as:
282 ;; "Failed to tell switch -a apart from -A".
283 #:parallel-tests? #f))
284 (inputs `(("ncurses" ,ncurses)
285 ("readline" ,readline))) ;for 'ftp'
286 (native-inputs `(("netstat" ,net-tools))) ;for tests
287 (home-page "https://www.gnu.org/software/inetutils/")
288 (synopsis "Basic networking utilities")
289 (description
290 "Inetutils is a collection of common network programs, such as an ftp
291 client and server, a telnet client and server, an rsh client and server, and
292 hostname.")
293 (license license:gpl3+)))
294
295 (define-public shadow
296 (package
297 (name "shadow")
298 (version "4.5")
299 (source (origin
300 (method url-fetch)
301 (uri (string-append
302 "https://github.com/shadow-maint/shadow/releases/"
303 "download/" version "/shadow-" version ".tar.xz"))
304 (sha256
305 (base32
306 "0hdpai78n63l3v3fgr3kkiqzhd0awrpfnnzz4mf7lmxdh61qb37w"))))
307 (build-system gnu-build-system)
308 (arguments
309 `(;; Assume System V `setpgrp (void)', which is the default on GNU
310 ;; variants (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
311 #:configure-flags
312 '("--with-libpam" "ac_cv_func_setpgrp_void=yes")
313
314 #:phases
315 (modify-phases %standard-phases
316 (add-before 'build 'set-nscd-file-name
317 (lambda* (#:key inputs #:allow-other-keys)
318 ;; Use the right file name for nscd.
319 (let ((libc (assoc-ref inputs
320 ,(if (%current-target-system)
321 "cross-libc"
322 "libc"))))
323 (substitute* "lib/nscd.c"
324 (("/usr/sbin/nscd")
325 (string-append libc "/sbin/nscd"))))))
326 (add-after 'install 'remove-groups
327 (lambda* (#:key outputs #:allow-other-keys)
328 ;; Remove `groups', which is already provided by Coreutils.
329 (let* ((out (assoc-ref outputs "out"))
330 (bin (string-append out "/bin"))
331 (man (string-append out "/share/man")))
332 (delete-file (string-append bin "/groups"))
333 (for-each delete-file (find-files man "^groups\\."))
334 #t))))))
335
336 (inputs (if (string-contains (or (%current-target-system)
337 (%current-system))
338 "-linux")
339 `(("linux-pam" ,linux-pam))
340 '()))
341 (home-page "http://pkg-shadow.alioth.debian.org/")
342 (synopsis "Authentication-related tools such as passwd, su, and login")
343 (description
344 "Shadow provides a number of authentication-related tools, including:
345 login, passwd, su, groupadd, and useradd.")
346
347 ;; The `vipw' program is GPLv2+.
348 ;; libmisc/salt.c is public domain.
349 (license license:bsd-3)))
350
351 (define-public mingetty
352 (package
353 (name "mingetty")
354 (version "1.08")
355 (source (origin
356 (method url-fetch)
357 (uri (string-append "mirror://sourceforge/mingetty/mingetty/"
358 version "/mingetty-" version ".tar.gz"))
359 (sha256
360 (base32
361 "05yxrp44ky2kg6qknk1ih0kvwkgbn9fbz77r3vci7agslh5wjm8g"))))
362 (build-system gnu-build-system)
363 (arguments
364 `(#:phases
365 (modify-phases %standard-phases
366 (replace 'configure
367 (lambda* (#:key inputs outputs #:allow-other-keys)
368 (let* ((out (assoc-ref outputs "out"))
369 (man8 (string-append out "/share/man/man8"))
370 (sbin (string-append out "/sbin"))
371 (shadow (assoc-ref inputs "shadow"))
372 (login (string-append shadow "/bin/login")))
373 (substitute* "Makefile"
374 (("^SBINDIR.*")
375 (string-append "SBINDIR = " out
376 "/sbin\n"))
377 (("^MANDIR.*")
378 (string-append "MANDIR = " out
379 "/share/man/man8\n")))
380
381 ;; Pick the right 'login' by default.
382 (substitute* "mingetty.c"
383 (("\"/bin/login\"")
384 (string-append "\"" login "\"")))
385
386 (mkdir-p sbin)
387 (mkdir-p man8))
388 #t)))
389 #:tests? #f)) ; no tests
390 (inputs `(("shadow" ,shadow)))
391
392 (home-page "https://sourceforge.net/projects/mingetty")
393 (synopsis "Getty for the text console")
394 (description
395 "Small console getty that is started on the Linux text console,
396 asks for a login name and then transfers over to 'login'. It is extended to
397 allow automatic login and starting any app.")
398 (license license:gpl2+)))
399
400 (define-public net-base
401 (package
402 (name "net-base")
403 (version "5.3")
404 (source (origin
405 (method url-fetch)
406 (uri (string-append
407 "mirror://debian/pool/main/n/netbase/netbase_"
408 version ".tar.xz"))
409 (sha256
410 (base32
411 "12xqjwg3p4rzmmh2iib6sigm9l29y3dgk74mmnw64k84jnbwdxl1"))))
412 (build-system trivial-build-system)
413 (arguments
414 `(#:modules ((guix build utils))
415 #:builder (begin
416 (use-modules (guix build utils)
417 (srfi srfi-26))
418
419 (let* ((source (assoc-ref %build-inputs "source"))
420 (tar (assoc-ref %build-inputs "tar"))
421 (xz (assoc-ref %build-inputs "xz"))
422 (output (assoc-ref %outputs "out"))
423 (etc (string-append output "/etc")))
424 (setenv "PATH" (string-append xz "/bin"))
425 (system* (string-append tar "/bin/tar") "xvf"
426 source)
427 (chdir ,(string-append "netbase-" version))
428 (mkdir-p etc)
429 (for-each copy-file
430 '("etc-services" "etc-protocols" "etc-rpc")
431 (map (cut string-append etc "/" <>)
432 '("services" "protocols" "rpc")))
433 #t))))
434 (native-inputs `(("tar" ,tar)
435 ("xz" ,xz)))
436 (synopsis "IANA protocol, port, and RPC number assignments")
437 (description
438 "This package provides the /etc/services, /etc/protocols, and /etc/rpc
439 files, which contain information about the IANA-assigned port, protocol, and
440 ONC RPC numbers.")
441 (home-page "http://packages.debian.org/sid/netbase")
442 (license license:gpl2)))
443
444 (define-public netcat
445 (package
446 (name "netcat")
447 (version "0.7.1")
448 (source (origin
449 (method url-fetch)
450 (uri (string-append "mirror://sourceforge/netcat/netcat/" version
451 "/netcat-" version ".tar.bz2"))
452 (sha256
453 (base32
454 "1frjcdkhkpzk0f84hx6hmw5l0ynpmji8vcbaxg8h5k2svyxz0nmm"))))
455 (build-system gnu-build-system)
456 (arguments
457 `(#:configure-flags
458 ;; By default, man and info pages are put in PREFIX/{man,info},
459 ;; but we want them in PREFIX/share/{man,info}.
460 (let ((out (assoc-ref %outputs "out")))
461 (list (string-append "--mandir=" out "/share/man")
462 (string-append "--infodir=" out "/share/info")))))
463 (home-page "http://netcat.sourceforge.net")
464 (synopsis "Read and write data over TCP/IP")
465 (description
466 "Netcat is a featured networking utility which reads and writes data
467 across network connections, using the TCP/IP protocol. It is designed to be a
468 reliable \"back-end\" tool that can be used directly or easily driven by other
469 programs and scripts. At the same time, it is a feature-rich network debugging
470 and exploration tool, since it can create almost any kind of connection you
471 would need and has several interesting built-in capabilities.")
472 (license license:gpl2+)))
473
474 (define-public alive
475 (package
476 (name "alive")
477 (version "2.0.2")
478 (source (origin
479 (method url-fetch)
480 (uri (string-append "mirror://gnu/alive/alive-"
481 version ".tar.xz"))
482 (sha256
483 (base32
484 "1vrzg51ai68x9yld7vbgl58sxaw5qpx8rbakwcxn4cqq6vpxj38j"))))
485 (build-system gnu-build-system)
486 (arguments '(#:configure-flags '("alive_cv_nice_ping=yes")))
487 (inputs `(("guile" ,guile-2.0)
488 ("inetutils" ,inetutils)))
489 (home-page "https://www.gnu.org/software/alive/")
490 (synopsis "Autologin and keep-alive daemon")
491 (description
492 "GNU Alive sends periodic pings to a server, generally to keep a
493 connection alive.")
494 (license license:gpl3+)))
495
496 (define-public isc-dhcp
497 (let* ((bind-major-version "9")
498 (bind-minor-version "9")
499 (bind-patch-version "10")
500 (bind-release-type "-P") ; for patch release, use "-P"
501 (bind-release-version "3") ; for patch release, e.g. "6"
502 (bind-version (string-append bind-major-version
503 "."
504 bind-minor-version
505 "."
506 bind-patch-version
507 bind-release-type
508 bind-release-version)))
509 (package
510 (name "isc-dhcp")
511 (version "4.3.5")
512 (source (origin
513 (method url-fetch)
514 (uri (string-append "http://ftp.isc.org/isc/dhcp/"
515 version "/dhcp-" version ".tar.gz"))
516 (sha256
517 (base32
518 "0m7rwxvpb7xrmfl9ynpckhl0hi0xgm9bq1fmbp2r68sxy5mr75gb"))))
519 (build-system gnu-build-system)
520 (arguments
521 `(#:parallel-build? #f
522 #:phases
523 (modify-phases %standard-phases
524 (add-after 'unpack 'replace-bundled-bind
525 (lambda* (#:key inputs #:allow-other-keys)
526 (delete-file "bind/bind.tar.gz")
527 (copy-file (assoc-ref inputs "bind-source-tarball")
528 "bind/bind.tar.gz")
529 (chmod "bind/bind.tar.gz" #o644)
530 (substitute* "bind/version.tmp"
531 (("^MAJORVER=.*")
532 (format #f "MAJORVER=~a\n" ,bind-major-version))
533 (("^MINORVER=.*")
534 (format #f "MINORVER=~a\n" ,bind-minor-version))
535 (("^PATCHVER=.*")
536 (format #f "PATCHVER=~a\n" ,bind-patch-version))
537 (("^RELEASETYPE=.*")
538 (format #f "RELEASETYPE=~a\n" ,bind-release-type))
539 (("^RELEASEVER=.*")
540 (format #f "RELEASEVER=~a\n" ,bind-release-version)))
541 #t))
542 (add-after 'configure 'post-configure
543 (lambda* (#:key outputs #:allow-other-keys)
544 ;; Point to the right client script, which will be
545 ;; installed in a later phase.
546 (substitute* "includes/dhcpd.h"
547 (("#define[[:blank:]]+_PATH_DHCLIENT_SCRIPT.*")
548 (let ((out (assoc-ref outputs "out")))
549 (string-append "#define _PATH_DHCLIENT_SCRIPT \""
550 out "/libexec/dhclient-script"
551 "\"\n"))))
552
553 ;; During the 'build' phase, 'bind.tar.gz' is extracted, so
554 ;; we must patch shebangs in there and make sure the right
555 ;; shell is used.
556 (with-directory-excursion "bind"
557 (substitute* "Makefile"
558 (("\\./configure")
559 (let ((sh (which "sh")))
560 (string-append "./configure CONFIG_SHELL="
561 sh " SHELL=" sh))))
562
563 (let ((bind-directory (string-append "bind-" ,bind-version)))
564 (system* "tar" "xf" "bind.tar.gz")
565 (for-each patch-shebang
566 (find-files bind-directory ".*"))
567 (zero? (system* "tar" "cf" "bind.tar.gz"
568 bind-directory
569 ;; avoid non-determinism in the archive
570 "--sort=name"
571 "--mtime=@0"
572 "--owner=root:0"
573 "--group=root:0"))))))
574 (add-after 'install 'post-install
575 (lambda* (#:key inputs outputs #:allow-other-keys)
576 ;; Install the dhclient script for GNU/Linux and make sure
577 ;; if finds all the programs it needs.
578 (let* ((out (assoc-ref outputs "out"))
579 (libexec (string-append out "/libexec"))
580 (coreutils (assoc-ref inputs "coreutils"))
581 (inetutils (assoc-ref inputs "inetutils"))
582 (net-tools (assoc-ref inputs "net-tools"))
583 (sed (assoc-ref inputs "sed")))
584 (substitute* "client/scripts/linux"
585 (("/sbin/ip")
586 (string-append (assoc-ref inputs "iproute")
587 "/sbin/ip")))
588
589 (mkdir-p libexec)
590 (copy-file "client/scripts/linux"
591 (string-append libexec "/dhclient-script"))
592
593 (wrap-program
594 (string-append libexec "/dhclient-script")
595 `("PATH" ":" prefix
596 ,(map (lambda (dir)
597 (string-append dir "/bin:"
598 dir "/sbin"))
599 (list inetutils net-tools coreutils sed))))))))))
600
601 (native-inputs `(("perl" ,perl)))
602
603 (inputs `(("inetutils" ,inetutils)
604 ("net-tools" ,net-tools)
605 ("iproute" ,iproute)
606
607 ;; XXX isc-dhcp bundles a copy of bind that has security
608 ;; flaws, so we use a newer version.
609 ("bind-source-tarball"
610 ,(origin
611 (method url-fetch)
612 (uri (string-append "http://ftp.isc.org/isc/bind9/"
613 bind-version
614 "/bind-" bind-version ".tar.gz"))
615 (sha256
616 (base32
617 "00yh1d5shrq7y0kfwacax4f8dc0akaa2fha430j92n7mshms65m1"))))
618
619 ;; When cross-compiling, we need the cross Coreutils and sed.
620 ;; Otherwise just use those from %FINAL-INPUTS.
621 ,@(if (%current-target-system)
622 `(("coreutils" ,coreutils)
623 ("sed" ,sed))
624 '())))
625
626 (home-page "http://www.isc.org/products/DHCP/")
627 (synopsis "Dynamic Host Configuration Protocol (DHCP) tools")
628 (description
629 "ISC's Dynamic Host Configuration Protocol (DHCP) distribution provides a
630 reference implementation of all aspects of DHCP, through a suite of DHCP
631 tools: server, client, and relay agent.")
632 (license license:isc)
633 (properties '((cpe-name . "dhcp"))))))
634
635 (define-public libpcap
636 (package
637 (name "libpcap")
638 (version "1.8.1")
639 (source (origin
640 (method url-fetch)
641 (uri (string-append "http://www.tcpdump.org/release/libpcap-"
642 version ".tar.gz"))
643 (sha256
644 (base32
645 "07jlhc66z76dipj4j5v3dig8x6h3k6cb36kmnmpsixf3zmlvqgb7"))))
646 (build-system gnu-build-system)
647 (native-inputs `(("bison" ,bison) ("flex" ,flex)))
648 (arguments '(#:configure-flags '("--with-pcap=linux")
649 #:tests? #f)) ; no 'check' target
650 (home-page "http://www.tcpdump.org")
651 (synopsis "Network packet capture library")
652 (description
653 "libpcap is an interface for user-level packet capture. It provides a
654 portable framework for low-level network monitoring. Applications include
655 network statistics collection, security monitoring, network debugging, etc.")
656
657 ;; fad-*.c and a couple other files are BSD-4, but the rest is BSD-3.
658 (license license:bsd-3)))
659
660 (define-public tcpdump
661 (package
662 (name "tcpdump")
663 (version "4.9.2")
664 (source (origin
665 (method url-fetch)
666 (uri (string-append "http://www.tcpdump.org/release/tcpdump-"
667 version ".tar.gz"))
668 (sha256
669 (base32
670 "0ygy0layzqaj838r5xd613iraz09wlfgpyh7pc6cwclql8v3b2vr"))))
671 (build-system gnu-build-system)
672 (inputs `(("libpcap" ,libpcap)
673 ("openssl" ,openssl)))
674 (native-inputs `(("perl" ,perl))) ; for tests
675 (home-page "http://www.tcpdump.org/")
676 (synopsis "Network packet analyzer")
677 (description
678 "Tcpdump is a command-line tool to analyze network traffic passing
679 through the network interface controller.")
680 (license license:bsd-3)))
681
682 (define-public jnettop
683 (package
684 (name "jnettop")
685 (version "0.13.0")
686 (source (origin
687 (method url-fetch)
688 (uri (string-append "http://jnettop.kubs.info/dist/jnettop-"
689 version ".tar.gz"))
690 (sha256
691 (base32
692 "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9"))))
693 (build-system gnu-build-system)
694 (native-inputs
695 `(("pkg-config" ,pkg-config)))
696 (inputs
697 `(("glib" ,glib)
698 ("ncurses" ,ncurses)
699 ("libpcap" ,libpcap)))
700 (home-page "http://jnettop.kubs.info/")
701 (synopsis "Visualize network traffic by bandwidth use")
702 (description
703 "Jnettop is a traffic visualiser, which captures traffic going
704 through the host it is running from and displays streams sorted
705 by bandwidth they use.")
706 (license license:gpl2+)))
707
708 (define-public clusterssh
709 (package
710 (name "clusterssh")
711 (version "3.28")
712 (source (origin
713 (method url-fetch)
714 (uri (string-append "mirror://sourceforge/clusterssh/"
715 "1.%20ClusterSSH%20Series%203/" version
716 "/clusterssh-" version ".tar.gz"))
717 (sha256
718 (base32
719 "1bwggpvaj2al5blg1ynapviv2kpydffpzq2zkhi81najnvzc1rr7"))))
720 (build-system gnu-build-system)
721 (inputs `(("perl" ,perl)))
722 (propagated-inputs `(("xterm" ,xterm)
723 ("perl-tk" ,perl-tk)
724 ("perl-x11-protocol" ,perl-x11-protocol)))
725 (arguments
726 `(#:phases
727 (modify-phases %standard-phases
728 (add-after 'install 'set-load-paths
729 (lambda* (#:key inputs outputs #:allow-other-keys)
730 ;; Put the perl-tk and perl-x11-protocol modules in the perl inc
731 ;; path for PROG
732 (let* ((out (assoc-ref outputs "out"))
733 (prog (string-append out "/bin/cssh"))
734 (perl-ver ,(package-version perl))
735 (x11-inc (string-append
736 (assoc-ref inputs "perl-x11-protocol")
737 "/lib/perl5/site_perl/" perl-ver))
738 (tk-inc (string-append
739 (assoc-ref inputs "perl-tk")
740 "/lib/perl5/site_perl/" perl-ver
741 "/x86_64-linux")))
742 (wrap-program
743 prog
744 `("PERL5LIB" ":" prefix (,x11-inc ,tk-inc))))
745 #t)))))
746 ;; The clusterssh.sourceforge.net address requires login to view
747 (home-page "https://sourceforge.net/projects/clusterssh/")
748 (synopsis "Secure concurrent multi-server terminal control")
749 (description
750 "ClusterSSH controls a number of xterm windows via a single graphical
751 console window to allow commands to be interactively run on multiple servers
752 over ssh connections.")
753 (license license:gpl2+)))
754
755 (define-public rottlog
756 (package
757 (name "rottlog")
758 (version "0.72.2")
759 (source (origin
760 (method url-fetch)
761 (uri (string-append "mirror://gnu/rottlog/rottlog-"
762 version ".tar.gz"))
763 (sha256
764 (base32
765 "0751mb9l2f0jrk3vj6q8ilanifd121dliwk0c34g8k0dlzsv3kd7"))
766 (modules '((guix build utils)))
767 (snippet
768 '(substitute* "Makefile.in"
769 (("-o \\$\\{LOG_OWN\\} -g \\$\\{LOG_GROUP\\}")
770 ;; Don't try to chown root.
771 "")
772 (("mkdir -p \\$\\(ROTT_STATDIR\\)")
773 ;; Don't attempt to create /var/lib/rottlog.
774 "true")))))
775 (build-system gnu-build-system)
776 (arguments
777 '(#:configure-flags (list "ROTT_ETCDIR=/etc/rottlog" ;rc file location
778 "--localstatedir=/var")
779
780 ;; Install example config files in OUT/etc.
781 #:make-flags (list (string-append "ROTT_ETCDIR="
782 (assoc-ref %outputs "out")
783 "/etc"))
784
785 #:phases (modify-phases %standard-phases
786 (add-after 'build 'set-packdir
787 (lambda _
788 ;; Set a default location for archived logs.
789 (substitute* "rc/rc"
790 (("packdir=\"\"")
791 "packdir=\"/var/log\""))
792 #t))
793 (add-before 'install 'tweak-rc-weekly
794 (lambda _
795 (substitute* "rc/weekly"
796 (("/bin/kill")
797 (which "kill"))
798 (("syslogd\\.pid")
799 ;; The file is called 'syslog.pid' (no 'd').
800 "syslog.pid"))
801 #t))
802 (add-after 'install 'install-info
803 (lambda _
804 (zero? (system* "make" "install-info")))))))
805 (native-inputs `(("texinfo" ,texinfo)
806 ("util-linux" ,util-linux))) ; for 'cal'
807 (home-page "https://www.gnu.org/software/rottlog/")
808 (synopsis "Log rotation and management")
809 (description
810 "GNU Rot[t]log is a program for managing log files. It is used to
811 automatically rotate out log files when they have reached a given size or
812 according to a given schedule. It can also be used to automatically compress
813 and archive such logs. Rot[t]log will mail reports of its activity to the
814 system administrator.")
815 (license license:gpl3+)))
816
817 (define-public sudo
818 (package
819 (name "sudo")
820 (version "1.8.21p2")
821 (source (origin
822 (method url-fetch)
823 (uri
824 (list (string-append "https://www.sudo.ws/sudo/dist/sudo-"
825 version ".tar.gz")
826 (string-append "ftp://ftp.sudo.ws/pub/sudo/OLD/sudo-"
827 version ".tar.gz")))
828 (sha256
829 (base32
830 "0s33szq6q59v5s377l4v6ybsdy7pfq6sz7y364j4x09ssdn79ibl"))
831 (modules '((guix build utils)))
832 (snippet
833 '(delete-file-recursively "lib/zlib"))))
834 (build-system gnu-build-system)
835 (arguments
836 `(#:configure-flags
837 (list "--with-logpath=/var/log/sudo.log"
838 "--with-rundir=/var/run/sudo" ;must be cleaned up at boot time
839 "--with-vardir=/var/db/sudo"
840 "--with-iologdir=/var/log/sudo-io"
841
842 ;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
843 ;; provide it.
844 (string-append "CPPFLAGS=-D_PATH_MV='\""
845 (assoc-ref %build-inputs "coreutils")
846 "/bin/mv\"'"))
847
848 ;; Avoid non-determinism; see <http://bugs.gnu.org/21918>.
849 #:parallel-build? #f
850
851 #:phases
852 (modify-phases %standard-phases
853 (add-before 'configure 'pre-configure
854 (lambda _
855 (substitute* "src/sudo_usage.h.in"
856 ;; Do not capture 'configure' arguments since we would
857 ;; unduly retain references, and also because the
858 ;; CPPFLAGS above would close the string literal
859 ;; prematurely.
860 (("@CONFIGURE_ARGS@") "\"\""))
861 (substitute* (find-files "." "Makefile\\.in")
862 (("-o [[:graph:]]+ -g [[:graph:]]+")
863 ;; Allow installation as non-root.
864 "")
865 (("^install: (.*)install-sudoers(.*)" _ before after)
866 ;; Don't try to create /etc/sudoers.
867 (string-append "install: " before after "\n"))
868 (("\\$\\(DESTDIR\\)\\$\\(rundir\\)")
869 ;; Don't try to create /run/sudo.
870 "$(TMPDIR)/dummy")
871 (("\\$\\(DESTDIR\\)\\$\\(vardir\\)")
872 ;; Don't try to create /var/db/sudo.
873 "$(TMPDIR)/dummy"))
874 #t)))
875
876 ;; XXX: The 'testsudoers' test series expects user 'root' to exist, but
877 ;; the chroot's /etc/passwd doesn't have it. Turn off the tests.
878 #:tests? #f))
879 (inputs
880 `(("groff" ,groff)
881 ("linux-pam" ,linux-pam)
882 ("zlib" ,zlib)
883 ("coreutils" ,coreutils)))
884 (home-page "https://www.sudo.ws/")
885 (synopsis "Run commands as root")
886 (description
887 "Sudo (su \"do\") allows a system administrator to delegate authority to
888 give certain users (or groups of users) the ability to run some (or all)
889 commands as root or another user while providing an audit trail of the
890 commands and their arguments.")
891
892 ;; See <http://www.sudo.ws/sudo/license.html>.
893 (license license:x11)))
894
895 (define-public wpa-supplicant-minimal
896 (package
897 (name "wpa-supplicant-minimal")
898 (version "2.6")
899 (source (origin
900 (method url-fetch)
901 (uri (string-append
902 "http://w1.fi/releases/wpa_supplicant-"
903 version
904 ".tar.gz"))
905 (sha256
906 (base32
907 "0l0l5gz3d5j9bqjsbjlfcv4w4jwndllp9fmyai4x9kg6qhs6v4xl"))))
908 (build-system gnu-build-system)
909 (arguments
910 '(#:phases
911 (modify-phases %standard-phases
912 (replace 'configure
913 (lambda* (#:key outputs #:allow-other-keys)
914 (chdir "wpa_supplicant")
915 (copy-file "defconfig" ".config")
916 (let ((port (open-file ".config" "al")))
917 (display "
918 CONFIG_DEBUG_SYSLOG=y
919
920 # Choose GnuTLS (the default is OpenSSL.)
921 CONFIG_TLS=gnutls
922
923 CONFIG_DRIVER_NL80211=y
924 CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
925 CONFIG_LIBNL32=y
926 CONFIG_READLINE=y\n" port)
927 (close-port port))))
928 (add-after 'install 'install-man-pages
929 (lambda* (#:key outputs #:allow-other-keys)
930 (let* ((out (assoc-ref outputs "out"))
931 (man (string-append out "/share/man"))
932 (man5 (string-append man "/man5"))
933 (man8 (string-append man "/man8")))
934 (define (copy-man-page target)
935 (lambda (file)
936 (install-file file target)))
937
938 (mkdir-p man5) (mkdir man8)
939 (for-each (copy-man-page man5)
940 (find-files "doc/docbook" "\\.5"))
941 (for-each (copy-man-page man8)
942 (find-files "doc/docbook" "\\.8"))
943 #t))))
944
945 #:make-flags (list "CC=gcc"
946 (string-append "BINDIR=" (assoc-ref %outputs "out")
947 "/sbin")
948 (string-append "LIBDIR=" (assoc-ref %outputs "out")
949 "/lib"))
950 #:tests? #f))
951 (inputs
952 `(("readline" ,readline)
953 ("libnl" ,libnl)
954 ("gnutls" ,gnutls)
955 ("libgcrypt" ,libgcrypt))) ;needed by crypto_gnutls.c
956 (native-inputs
957 `(("pkg-config" ,pkg-config)))
958 (home-page "http://w1.fi/wpa_supplicant/")
959 (synopsis "Connecting to WPA and WPA2-protected wireless networks")
960 (description
961 "wpa_supplicant is a WPA Supplicant with support for WPA and WPA2 (IEEE
962 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in
963 the client stations. It implements key negotiation with a WPA Authenticator
964 and it controls the roaming and IEEE 802.11 authentication/association of the
965 WLAN driver.
966
967 This package provides the 'wpa_supplicant' daemon and the 'wpa_cli' command.")
968
969 ;; In practice, this is linked against Readline, which makes it GPLv3+.
970 (license license:bsd-3)))
971
972 (define-public wpa-supplicant
973 (package (inherit wpa-supplicant-minimal)
974 (name "wpa-supplicant")
975 (inputs `(("dbus" ,dbus)
976 ,@(package-inputs wpa-supplicant-minimal)))
977 (arguments
978 (substitute-keyword-arguments (package-arguments wpa-supplicant-minimal)
979 ((#:phases phases)
980 `(modify-phases ,phases
981 (add-after 'configure 'configure-for-dbus
982 (lambda _
983 (let ((port (open-file ".config" "al")))
984 (display "
985 CONFIG_CTRL_IFACE_DBUS=y
986 CONFIG_CTRL_IFACE_DBUS_NEW=y
987 CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
988 (close-port port))
989 #t))
990 (add-after 'install-man-pages 'install-dbus-conf
991 (lambda* (#:key outputs #:allow-other-keys)
992 (let* ((out (assoc-ref outputs "out"))
993 (dir (string-append out "/etc/dbus-1/system.d")))
994 (mkdir-p dir)
995 (copy-file "dbus/dbus-wpa_supplicant.conf"
996 (string-append dir "/wpa_supplicant.conf")))
997 #t))))))))
998
999 (define-public wakelan
1000 (package
1001 (name "wakelan")
1002 (version "1.1")
1003 (source (origin
1004 (method url-fetch)
1005 (uri (string-append
1006 "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
1007 version ".tar.gz"))
1008 (sha256
1009 (base32
1010 "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
1011 (build-system gnu-build-system)
1012 (arguments
1013 '(#:phases
1014 (modify-phases %standard-phases
1015 (replace 'configure
1016 (lambda* (#:key outputs #:allow-other-keys)
1017 (let ((out (assoc-ref outputs "out")))
1018 (mkdir-p (string-append out "/bin"))
1019 (mkdir-p (string-append out "/share/man/man1"))
1020
1021 ;; It's an old configure script that doesn't understand
1022 ;; the extra options we pass.
1023 (setenv "CONFIG_SHELL" (which "bash"))
1024 (zero?
1025 (system* "./configure"
1026 (string-append "--prefix=" out)
1027 (string-append "--mandir=" out
1028 "/share/man")))))))
1029 #:tests? #f))
1030 (home-page "http://kernel.org") ; really, no home page
1031 (synopsis "Send a wake-on-LAN packet")
1032 (description
1033 "WakeLan broadcasts a properly formatted UDP packet across the local area
1034 network, which causes enabled computers to power on.")
1035 (license license:gpl2+)))
1036
1037 (define-public dmidecode
1038 (package
1039 (name "dmidecode")
1040 (version "3.0")
1041 (source (origin
1042 (method url-fetch)
1043 (uri (string-append
1044 "mirror://savannah/dmidecode/dmidecode-"
1045 version ".tar.xz"))
1046 (sha256
1047 (base32
1048 "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
1049 (build-system gnu-build-system)
1050 (arguments
1051 '(#:phases (modify-phases %standard-phases (delete 'configure))
1052 #:tests? #f ; no 'check' target
1053 #:make-flags (list (string-append "prefix="
1054 (assoc-ref %outputs "out")))))
1055 (home-page "http://www.nongnu.org/dmidecode/")
1056 (synopsis "Read hardware information from the BIOS")
1057 (description
1058 "Dmidecode reports information about your system's hardware as described
1059 in your system BIOS according to the SMBIOS/DMI standard. This typically
1060 includes system manufacturer, model name, serial number, BIOS version, asset
1061 tag as well as a lot of other details of varying level of interest and
1062 reliability depending on the manufacturer. This will often include usage
1063 status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory
1064 module slots, and the list of I/O ports (e.g. serial, parallel, USB).")
1065 (license license:gpl2+)))
1066
1067 (define-public acpica
1068 (package
1069 (name "acpica")
1070 (version "20150410")
1071 (source (origin
1072 (method url-fetch)
1073 (uri (string-append
1074 "https://acpica.org/sites/acpica/files/acpica-unix2-"
1075 version ".tar.gz"))
1076 (sha256
1077 (base32
1078 "0q1fjwkyw9x6gsva6fd0zbn7ly4fx0ha4853f416np9kf2irillw"))))
1079 (build-system gnu-build-system)
1080 (native-inputs `(("flex" ,flex)
1081 ("bison" ,bison)))
1082 (arguments
1083 '(#:make-flags (list (string-append "PREFIX=" %output)
1084 "HOST=_LINUX"
1085 "OPT_CFLAGS=-Wall -fno-strict-aliasing")
1086 #:tests? #f ; no 'check' target.
1087 #:phases (modify-phases %standard-phases (delete 'configure))))
1088 (home-page "http://acpica.org/")
1089 (synopsis "Tools for the development and debug of ACPI tables")
1090 (description
1091 "The ACPI Component Architecture (ACPICA) project provides an
1092 OS-independent reference implementation of the Advanced Configuration and
1093 Power Interface Specification (ACPI). ACPICA code contains those portions of
1094 ACPI meant to be directly integrated into the host OS as a kernel-resident
1095 subsystem, and a small set of tools to assist in developing and debugging ACPI
1096 tables. This package contains only the user-space tools needed for ACPI table
1097 development, not the kernel implementation of ACPI.")
1098 (license license:gpl2))) ; Dual GPLv2/ACPICA Licence
1099
1100 (define-public stress
1101 (package
1102 (name "stress")
1103 (version "1.0.1")
1104 (source (origin
1105 (method url-fetch)
1106 (uri (string-append "mirror://debian/pool/main/s/stress/stress_"
1107 version ".orig.tar.gz"))
1108 (sha256
1109 (base32
1110 "1v9vnzlihqfjsxa93hdbrq72pqqk00dkylmlg8jpxhm7s1w9qfl1"))))
1111 (build-system gnu-build-system)
1112 (home-page "http://packages.debian.org/wheezy/stress")
1113 (synopsis "Impose load on and stress test a computer system")
1114 (description
1115 "Stress is a tool that imposes a configurable amount of CPU, memory, I/O,
1116 or disk stress on a POSIX-compliant operating system and reports any errors it
1117 detects.
1118
1119 Stress is not a benchmark. It is a tool used by system administrators to
1120 evaluate how well their systems will scale, by kernel programmers to evaluate
1121 perceived performance characteristics, and by systems programmers to expose
1122 the classes of bugs which only or more frequently manifest themselves when the
1123 system is under heavy load.")
1124 (license license:gpl2+)))
1125
1126 (define-public detox
1127 (package
1128 (name "detox")
1129 (version "1.2.0")
1130 (source (origin
1131 (method url-fetch)
1132 (uri (string-append "mirror://sourceforge/detox/detox/" version
1133 "/detox-" version ".tar.bz2"))
1134 (sha256
1135 (base32
1136 "1y6vvjqsg54kl49cry73jbfhr04s7wjs779vrr9zrq6kww7dkymb"))))
1137 (build-system gnu-build-system)
1138 ;; Both flex and popt are used in this case for their runtime libraries
1139 ;; (libfl and libpopt).
1140 (inputs
1141 `(("flex" ,flex)
1142 ("popt" ,popt)))
1143 (arguments
1144 `(#:configure-flags `(,(string-append "--with-popt="
1145 (assoc-ref %build-inputs "popt")))
1146 #:tests? #f)) ;no 'check' target
1147 (home-page "http://detox.sourceforge.net")
1148 (synopsis "Clean up file names")
1149 (description
1150 "Detox is a program that renames files to make them easier to work with
1151 under Unix and related operating systems. Spaces and various other unsafe
1152 characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1)
1153 characters can be replaced as well, as can UTF-8 characters.")
1154 (license license:bsd-3)))
1155
1156 (define-public testdisk
1157 (package
1158 (name "testdisk")
1159 (version "7.0")
1160 (source (origin
1161 (method url-fetch)
1162 (uri (string-append "http://www.cgsecurity.org/testdisk-"
1163 version ".tar.bz2"))
1164 (sha256
1165 (base32
1166 "0ba4wfz2qrf60vwvb1qsq9l6j0pgg81qgf7fh22siaz649mkpfq0"))))
1167 (build-system gnu-build-system)
1168 (inputs
1169 `(("ntfs-3g" ,ntfs-3g)
1170 ("util-linux" ,util-linux)
1171 ("openssl" ,openssl)
1172 ;; FIXME: add reiserfs
1173 ("zlib" ,zlib)
1174 ("e2fsprogs" ,e2fsprogs)
1175 ("libjpeg" ,libjpeg)
1176 ("ncurses" ,ncurses)))
1177 (home-page "http://www.cgsecurity.org/wiki/TestDisk")
1178 (synopsis "Data recovery tool")
1179 (description
1180 "TestDisk is a program for data recovery, primarily designed to help
1181 recover lost partitions and/or make non-booting disks bootable again.")
1182 (license license:gpl2+)))
1183
1184 (define-public tree
1185 (package
1186 (name "tree")
1187 (version "1.7.0")
1188 (source (origin
1189 (method url-fetch)
1190 (uri (string-append
1191 "http://mama.indstate.edu/users/ice/tree/src/tree-"
1192 version ".tgz"))
1193 (sha256
1194 (base32 "04kviw799qxly08zb8n5mgxfd96gyis6x69q2qiw86jnh87c4mv9"))))
1195 (build-system gnu-build-system)
1196 (arguments
1197 '(#:phases (modify-phases %standard-phases (delete 'configure))
1198 #:tests? #f ; no check target
1199 #:make-flags (let ((out (assoc-ref %outputs "out")))
1200 (list (string-append "prefix=" out)))))
1201 (synopsis "Recursively list the contents of a directory")
1202 (description
1203 "Tree is a recursive directory listing command that produces a depth
1204 indented listing of files, which is colorized ala dircolors if the LS_COLORS
1205 environment variable is set and output is to tty.")
1206 (home-page "http://mama.indstate.edu/users/ice/tree/")
1207 (license license:gpl2+)))
1208
1209 (define-public direvent
1210 (package
1211 (name "direvent")
1212 (version "5.1")
1213 (source (origin
1214 (method url-fetch)
1215 (uri (string-append "mirror://gnu/direvent/direvent-"
1216 version ".tar.gz"))
1217 (sha256
1218 (base32
1219 "1nwvjmx7kb14ni34c0b8x9a3791pc20gvhj7xaj66d8q4h6n0qf4"))
1220 (modules '((guix build utils)))
1221 (snippet '(substitute* "tests/testsuite"
1222 (("#![[:blank:]]?/bin/sh")
1223 "#!$SHELL")))))
1224 (build-system gnu-build-system)
1225 (arguments
1226 '(#:phases
1227 (modify-phases %standard-phases
1228 (add-before 'build 'patch-/bin/sh
1229 (lambda* (#:key inputs #:allow-other-keys)
1230 ;; Use the right shell when executing the watcher and
1231 ;; user-provided shell commands.
1232 (let ((bash (assoc-ref inputs "bash")))
1233 (substitute* '("src/direvent.c" "src/progman.c")
1234 (("\"/bin/sh\"")
1235 (string-append "\"" bash "/bin/sh\"")))
1236
1237 ;; Adjust the 'shell.at' test accordingly.
1238 (substitute* "tests/testsuite"
1239 (("SHELL=/bin/sh")
1240 (string-append "SHELL=" bash "/bin/sh")))
1241
1242 #t))))))
1243 (home-page "https://www.gnu.org/software/direvent/")
1244 (synopsis "Daemon to monitor directories for events such as file removal")
1245 (description
1246 "A daemon that monitors directories for events, such as creating,
1247 deleting or modifying files. It can monitor different sets of directories for
1248 different events. When an event is detected, direvent calls a specified
1249 external program with information about the event, such as the location
1250 within the file system where it occurred. Thus, \"direvent\" provides an
1251 easy way to react immediately if given files undergo changes, for example, to
1252 track changes in important system configuration files.")
1253 (license license:gpl3+)))
1254
1255 (define-public libcap-ng
1256 (package
1257 (name "libcap-ng")
1258 (version "0.7.4")
1259 (source (origin
1260 (method url-fetch)
1261 (uri (string-append
1262 "http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-"
1263 version ".tar.gz"))
1264 (sha256
1265 (base32
1266 "0ssvnh4cvhya0c1j6k6192zvqcq7nc0x01fb5nwhr0prfqr0i8j8"))))
1267 (build-system gnu-build-system)
1268 (inputs `(("python" ,python)))
1269 (home-page "http://people.redhat.com/sgrubb/libcap-ng/")
1270 (synopsis "Library for more easily working with POSIX capabilities")
1271 (description
1272 "The libcap-ng library is intended to make programming with POSIX
1273 capabilities easier than the traditional libcap library. It includes
1274 utilities that can analyse all currently running applications and print out
1275 any capabilities and whether or not it has an open ended bounding set. The
1276 included utilities are designed to let admins and developers spot apps from
1277 various ways that may be running with too much privilege.")
1278 ;; The library is lgpl2.1+, but also ships some utils which are gpl2+.
1279 (license (list license:lgpl2.1+ license:gpl2+))))
1280
1281 (define-public smartmontools
1282 (package
1283 (name "smartmontools")
1284 (version "6.5")
1285 (source (origin
1286 (method url-fetch)
1287 (uri (string-append
1288 "mirror://sourceforge/smartmontools/smartmontools/"
1289 version "/smartmontools-" version ".tar.gz"))
1290 (sha256
1291 (base32
1292 "1g25r6sx85b5lay5n6sbnqv05qxzj6xsafsp93hnrg1h044bps49"))))
1293 (build-system gnu-build-system)
1294 (inputs `(("libcap-ng" ,libcap-ng)))
1295 (home-page "http://www.smartmontools.org/")
1296 (synopsis "S.M.A.R.T. harddisk control and monitoring tools")
1297 (description
1298 "The smartmontools package contains utility programs to control and
1299 monitor storage systems using the Self-Monitoring, Analysis and Reporting
1300 Technology System (S.M.A.R.T.) built into most modern ATA and SCSI harddisks.
1301 In many cases, these utilities will provide advanced warning of disk
1302 degradation and failure.")
1303 (license license:gpl2+)))
1304
1305 (define-public fdupes
1306 (package
1307 (name "fdupes")
1308 (version "1.6.1")
1309 (source
1310 (origin
1311 (method url-fetch)
1312 (uri (string-append
1313 "https://github.com/adrianlopezroche/fdupes/archive/v"
1314 version ".tar.gz"))
1315 (file-name (string-append name "-" version ".tar.gz"))
1316 (sha256
1317 (base32
1318 "1sj9pa40pbz6xdwbxfwhdhkvhdf1xc5gvggk9mdq26c41gdnyswx"))))
1319 (build-system gnu-build-system)
1320 (arguments
1321 '(#:phases (modify-phases %standard-phases
1322 (delete 'configure))
1323 #:tests? #f ; no 'check' target
1324 #:make-flags (list "CC=gcc"
1325 (string-append "PREFIX="
1326 (assoc-ref %outputs "out")))))
1327 (home-page "https://github.com/adrianlopezroche/fdupes")
1328 (synopsis "Identify duplicate files")
1329 (description
1330 "fdupes is a program for identifying duplicate files residing within
1331 specified directories.")
1332 (license license:expat)))
1333
1334 (define-public graphios
1335 (package
1336 (name "graphios")
1337 (version "2.0.3")
1338 (source
1339 (origin
1340 (method url-fetch)
1341 (uri (string-append
1342 "https://pypi.python.org/packages/source/g/graphios/graphios-"
1343 version ".tar.gz"))
1344 (sha256
1345 (base32
1346 "1h87hvc315wg6lklbf4l7csd3n5pgljwrfli1p3nasdi0izgn66i"))))
1347 (build-system python-build-system)
1348 (arguments
1349 ;; Be warned: Building with Python 3 succeeds, but the build process
1350 ;; throws a syntax error that is ignored.
1351 `(#:python ,python-2
1352 #:phases
1353 (modify-phases %standard-phases
1354 (add-before 'build 'fix-setup.py
1355 (lambda* (#:key outputs #:allow-other-keys)
1356 ;; Fix hardcoded, unprefixed file names.
1357 (let ((out (assoc-ref outputs "out")))
1358 (substitute* '("setup.py")
1359 (("/etc") (string-append out "/etc"))
1360 (("/usr") out)
1361 (("distro_ver = .*") "distro_ver = ''"))
1362 #t))))))
1363 (home-page "https://github.com/shawn-sterling/graphios")
1364 (synopsis "Emit Nagios metrics to Graphite, Statsd, and Librato")
1365 (description
1366 "Graphios is a script to emit nagios perfdata to various upstream metrics
1367 processing and time-series systems. It's currently compatible with Graphite,
1368 Statsd, Librato and InfluxDB. Graphios can emit Nagios metrics to any number
1369 of supported upstream metrics systems simultaneously.")
1370 (license license:gpl2+)))
1371
1372 (define-public ansible
1373 (package
1374 (name "ansible")
1375 (version "2.3.1.0")
1376 (source
1377 (origin
1378 (method url-fetch)
1379 (uri (pypi-uri "ansible" version))
1380 (sha256
1381 (base32
1382 "1xdr82fy8gahxh3586wm5k1bxksys7yl1f2n24shrk8gf99qyjyd"))
1383 (patches (search-patches "ansible-wrap-program-hack.patch"))))
1384 (build-system python-build-system)
1385 (native-inputs
1386 `(("python2-pycrypto" ,python2-pycrypto)
1387 ("python2-httplib2" ,python2-httplib2)
1388 ("python2-passlib" ,python2-passlib)
1389 ("python2-nose" ,python2-nose)
1390 ("python2-mock" ,python2-mock)
1391 ("python2-jinja2" ,python2-jinja2)
1392 ("python2-pyyaml" ,python2-pyyaml)
1393 ("python2-paramiko" ,python2-paramiko)))
1394 (inputs
1395 `(("python2-pycrypto" ,python2-pycrypto)
1396 ("python2-jinja2" ,python2-jinja2)
1397 ("python2-pyyaml" ,python2-pyyaml)
1398 ("python2-paramiko" ,python2-paramiko)))
1399 (arguments
1400 `(#:python ,python-2)) ; incompatible with Python 3
1401 (home-page "http://ansible.com/")
1402 (synopsis "Radically simple IT automation")
1403 (description "Ansible is a radically simple IT automation system. It
1404 handles configuration-management, application deployment, cloud provisioning,
1405 ad-hoc task-execution, and multinode orchestration - including trivializing
1406 things like zero downtime rolling updates with load balancers.")
1407 (license license:gpl3+)))
1408
1409 (define-public cpulimit
1410 (package
1411 (name "cpulimit")
1412 (version "0.2")
1413 (source
1414 (origin
1415 (method url-fetch)
1416 (uri (string-append "https://github.com/opsengine/cpulimit/archive/v"
1417 version ".tar.gz"))
1418 (file-name (string-append name "-" version ".tar.gz"))
1419 (sha256
1420 (base32
1421 "1nn2w849xd5bw4y5sqnll29nxdwl5h0cv4smc7dwmpb9qnd2ycb4"))))
1422 (build-system gnu-build-system)
1423 (arguments
1424 `(#:phases (modify-phases %standard-phases
1425 (delete 'configure)
1426 (replace
1427 'build
1428 (lambda _
1429 (zero? (system* "make" "CC=gcc" "-Csrc"))))
1430 (replace
1431 'check
1432 (lambda _
1433 (zero? (system* "make" "CC=gcc" "-Ctests"))))
1434 (replace
1435 'install
1436 (lambda* (#:key outputs #:allow-other-keys)
1437 (let* ((out (assoc-ref outputs "out"))
1438 (bin (string-append out "/bin")))
1439 (install-file "src/cpulimit" bin)))))))
1440 (home-page "https://github.com/opsengine/cpulimit")
1441 (synopsis "Limit CPU usage")
1442 (description
1443 "Cpulimit limits the CPU usage of a process. It does not change the nice
1444 value or other scheduling priority settings, but the real CPU usage, and is
1445 able to adapt itself dynamically to the overall system load. Children
1446 processes and threads of the specified process may optionally share the same
1447 limits.")
1448 (license license:gpl2+)))
1449
1450 (define-public autojump
1451 (package
1452 (name "autojump")
1453 (version "22.3.4")
1454 (source
1455 (origin
1456 (method url-fetch)
1457 (uri (string-append "https://github.com/wting/autojump/archive/"
1458 "release-v" version ".tar.gz"))
1459 (file-name (string-append name "-" version ".tar.gz"))
1460 (sha256
1461 (base32
1462 "113rcpr37ngf2xs8da41qdarq5qmj0dwx8ggqy3lhlb0kvqq7g9z"))))
1463 (build-system gnu-build-system)
1464 (native-inputs ;for tests
1465 `(("python-mock" ,python-mock)
1466 ("python-pytest" ,python-pytest)))
1467 (inputs
1468 `(("python" ,python-wrapper)))
1469 (arguments
1470 `(#:phases (modify-phases %standard-phases
1471 (delete 'configure)
1472 (delete 'build)
1473 (replace 'check
1474 (lambda _
1475 (zero?
1476 (system* "python" "tests/unit/autojump_utils_test.py"))))
1477 (replace 'install
1478 ;; The install.py script doesn't allow system installation
1479 ;; into an arbitrary prefix, so do our own install.
1480 (lambda* (#:key outputs #:allow-other-keys)
1481 (let* ((out (assoc-ref outputs "out"))
1482 (bin (string-append out "/bin"))
1483 (share (string-append out "/share/autojump"))
1484 (py (string-append out "/lib/python"
1485 ,(version-major+minor
1486 (package-version python-wrapper))
1487 "/site-packages"))
1488 (man (string-append out "/share/man/man1")))
1489 (install-file "bin/autojump" bin)
1490 (for-each (λ (f) (install-file f py))
1491 (find-files "bin" "\\.py$"))
1492 (for-each (λ (f) (install-file f share))
1493 (find-files "bin" "autojump\\..*$"))
1494 (substitute* (string-append share "/autojump.sh")
1495 (("/usr/local") out))
1496 (install-file "docs/autojump.1" man)
1497 (wrap-program (string-append bin "/autojump")
1498 `("PYTHONPATH" ":" prefix (,py)))
1499 #t))))))
1500 (home-page "https://github.com/wting/autojump")
1501 (synopsis "Shell extension for file system navigation")
1502 (description
1503 "Autojump provides a faster way to navigate your file system, with a \"cd
1504 command that learns\". It works by maintaining a database of the directories
1505 you use the most from the command line and allows you to \"jump\" to
1506 frequently used directories by typing only a small pattern.")
1507 (license license:gpl3+)))
1508
1509 (define-public iftop
1510 (package
1511 (name "iftop")
1512 (version "1.0pre4")
1513 (source (origin
1514 (method url-fetch)
1515 (uri (string-append "http://www.ex-parrot.com/~pdw/iftop/download"
1516 "/iftop-" version ".tar.gz"))
1517 (sha256
1518 (base32
1519 "15sgkdyijb7vbxpxjavh5qm5nvyii3fqcg9mzvw7fx8s6zmfwczp"))))
1520 (build-system gnu-build-system)
1521 (inputs
1522 `(("libpcap" ,libpcap)
1523 ("ncurses" ,ncurses)))
1524 (synopsis "Monitor network usage")
1525 (description "Iftop does for network usage what @command{top} does
1526 for CPU usage. It listens to network traffic on a named interface and
1527 displays a table of current bandwidth usage by pairs of hosts.")
1528 (home-page "http://www.ex-parrot.com/~pdw/iftop/")
1529 (license license:gpl2+)))
1530
1531 (define-public munge
1532 (package
1533 (name "munge")
1534 (version "0.5.12")
1535 (source (origin
1536 (method url-fetch)
1537 (uri (string-append "https://github.com/dun/munge/releases/"
1538 "download/munge-" version "/munge-"
1539 version ".tar.xz"))
1540 (sha256
1541 (base32
1542 "1s0vlwgm3hcx75vcmjf2y3icy5nv8y07bx93w2cmm6a7x71y6wp9"))))
1543 (inputs
1544 `(("openssl" ,openssl)
1545 ("libgcrypt" ,libgcrypt)))
1546 (build-system gnu-build-system)
1547 (home-page "https://dun.github.io/munge/")
1548 (synopsis "Cluster computing authentication service")
1549 (description
1550 "Munge is an authentication service for creating and validating
1551 credentials. It allows a process to authenticate the UID and GID of another
1552 local or remote process within a group of hosts having common users and
1553 groups. These hosts form a security realm that is defined by a shared
1554 cryptographic key. Clients within this security realm can create and validate
1555 credentials without the use of root privileges, reserved ports, or
1556 platform-specific methods.")
1557 (license license:gpl3+)))
1558
1559 (define-public audit
1560 (package
1561 (name "audit")
1562 (version "2.4.5")
1563 (source (origin
1564 (method url-fetch)
1565 (uri (string-append "http://people.redhat.com/sgrubb/audit/"
1566 "audit-" version ".tar.gz"))
1567 (sha256
1568 (base32
1569 "1q1q51dvxscbi4kbakmd4bn0xrvwwaiwvaya79925cbrqwzxsg77"))))
1570 (build-system gnu-build-system)
1571 (home-page "http://people.redhat.com/sgrubb/audit/")
1572 (arguments
1573 `(#:configure-flags (list "--with-python=no")
1574 #:phases
1575 (modify-phases %standard-phases
1576 (add-after 'unpack 'fix-tests
1577 (lambda _
1578 ;; In the build environmnte /etc/passwd does not contain an entry
1579 ;; for root/0, so we have to patch the expected value.
1580 (substitute* "auparse/test/auparse_test.ref"
1581 (("=0 \\(root\\)") "=0 (unknown(0))"))
1582 #t)))))
1583 (inputs
1584 `(("openldap" ,openldap)
1585 ("gnutls" ,gnutls)
1586 ("sasl" ,cyrus-sasl)))
1587 (synopsis "User-space component to the Linux auditing system")
1588 (description
1589 "auditd is the user-space component to the Linux auditing system, which
1590 allows logging of system calls made by user-land processes. It's responsible
1591 for writing audit records to the disk. Viewing the logs is done with the
1592 @code{ausearch} or @code{aureport} utilities. Configuring the audit rules is
1593 done with the @code{auditctl} utility.")
1594 (license license:gpl2+)))
1595
1596 (define-public nmap
1597 (package
1598 (name "nmap")
1599 (version "7.60")
1600 (source (origin
1601 (method url-fetch)
1602 (uri (string-append "https://nmap.org/dist/nmap-" version
1603 ".tar.bz2"))
1604 (sha256
1605 (base32
1606 "08bga42ipymmbxd7wy4x5sl26c0ir1fm3n9rc6nqmhx69z66wyd8"))
1607 (modules '((guix build utils)))
1608 (snippet
1609 '(map delete-file-recursively
1610 ;; Remove bundled lua, pcap, and pcre libraries.
1611 ;; FIXME: Remove bundled liblinear once packaged.
1612 '("liblua"
1613 "libpcap"
1614 "libpcre"
1615 ;; Remove pre-compiled binares.
1616 "mswin32")))))
1617 (build-system gnu-build-system)
1618 (inputs
1619 `(("openssl" ,openssl)
1620 ("libpcap" ,libpcap)
1621 ("pcre" ,pcre)
1622 ("lua" ,lua)
1623 ;; For 'ndiff'.
1624 ("python" ,python-2)))
1625
1626 ;; TODO Add zenmap output.
1627 (outputs '("out" "ndiff"))
1628 (arguments
1629 '(#:configure-flags '("--without-zenmap")
1630 #:phases
1631 (modify-phases %standard-phases
1632 (add-after 'configure 'patch-Makefile
1633 (lambda _
1634 (substitute* "Makefile"
1635 ;; Do not attempt to build lua.
1636 (("build-dnet build-lua") "build-dnet"))
1637 #t))
1638 (replace 'install
1639 (lambda* (#:key outputs #:allow-other-keys)
1640 (define (make out . args)
1641 (unless (zero? (apply system* "make"
1642 (string-append "prefix=" out)
1643 args))
1644 (error "make failed")))
1645 (define (python-path dir)
1646 (string-append dir "/lib/python2.7/site-packages"))
1647 (let ((out (assoc-ref outputs "out"))
1648 (ndiff (assoc-ref outputs "ndiff")))
1649 (for-each mkdir-p (list out ndiff))
1650 (make out
1651 "install-nmap"
1652 "install-nse"
1653 "install-ncat"
1654 "install-nping")
1655 (make ndiff "install-ndiff")
1656 (wrap-program (string-append ndiff "/bin/ndiff")
1657 `("PYTHONPATH" prefix
1658 (,(python-path ndiff)))))))
1659 ;; These are the tests that do not require network access.
1660 (replace 'check
1661 (lambda _ (zero? (system* "make"
1662 "check-nse"
1663 "check-ndiff"
1664 "check-dns")))))
1665 ;; Nmap can't cope with out-of-source building.
1666 #:out-of-source? #f))
1667 (home-page "https://nmap.org/")
1668 (synopsis "Network discovery and security auditing tool")
1669 (description
1670 "Nmap (\"Network Mapper\") is a network discovery and security auditing
1671 tool. It is also useful for tasks such as network inventory, managing service
1672 upgrade schedules, and monitoring host or service uptime. It also provides an
1673 advanced netcat implementation (ncat), a utility for comparing scan
1674 results (ndiff), and a packet generation and response analysis tool (nping).")
1675 ;; This package uses nmap's bundled versions of libdnet and liblinear, which
1676 ;; both use a 3-clause BSD license.
1677 (license (list license:nmap license:bsd-3))))
1678
1679 (define-public dstat
1680 (package
1681 (name "dstat")
1682 (version "0.7.3")
1683 (source (origin
1684 (method url-fetch)
1685 (uri (string-append
1686 "https://github.com/dagwieers/dstat/archive/"
1687 version ".tar.gz"))
1688 (file-name (string-append "dstat-" version ".tar.gz"))
1689 (sha256
1690 (base32
1691 "16286z3y2lc9nsq8njzjkv6k2vyxrj9xiixj1k3gnsbvhlhkirj6"))))
1692 (build-system gnu-build-system)
1693 (arguments
1694 `(#:tests? #f ;; no make check
1695 #:make-flags (let ((out (assoc-ref %outputs "out")))
1696 (list (string-append "DESTDIR=" out)
1697 "prefix=/"))
1698 ;; no configure script
1699 #:phases (modify-phases %standard-phases (delete 'configure))))
1700 (inputs `(("python-2" ,python-2)))
1701 (synopsis "Versatile resource statistics tool")
1702 (description "Dstat is a versatile replacement for @command{vmstat},
1703 @command{iostat}, @command{netstat}, and @command{ifstat}. Dstat overcomes
1704 some of their limitations and adds some extra features, more counters and
1705 flexibility. Dstat is handy for monitoring systems during performance tuning
1706 tests, benchmarks or troubleshooting.
1707
1708 Dstat allows you to view all of your system resources in real-time, you can,
1709 e.g., compare disk utilization in combination with interrupts from your IDE
1710 controller, or compare the network bandwidth numbers directly with the disk
1711 throughput (in the same interval).")
1712 (home-page "http://dag.wiee.rs/home-made/dstat/")
1713 (license license:gpl2+)))
1714
1715 (define-public thefuck
1716 (package
1717 (name "thefuck")
1718 (version "3.19")
1719 (source (origin
1720 (method url-fetch)
1721 (uri (string-append "https://github.com/nvbn/thefuck/archive/"
1722 version ".tar.gz"))
1723 (file-name (string-append name "-" version ".tar.gz"))
1724 (sha256
1725 (base32
1726 "191zbvkyc02h0wwd46xwj4zzg7jhlr8xv0ji6knqkgjnk0nvqq01"))
1727 (patches (search-patches "thefuck-test-environ.patch"))))
1728 (build-system python-build-system)
1729 (arguments
1730 '(#:phases
1731 (modify-phases %standard-phases
1732 (delete 'check)
1733 (add-after 'install 'check
1734 (lambda* (#:key inputs outputs #:allow-other-keys)
1735 ;; Tests look for installed package
1736 (add-installed-pythonpath inputs outputs)
1737 ;; Some tests need write access to $HOME.
1738 (setenv "HOME" "/tmp")
1739 (zero? (system* "py.test" "-v")))))))
1740 (propagated-inputs
1741 `(("python-colorama" ,python-colorama)
1742 ("python-decorator" ,python-decorator)
1743 ("python-psutil" ,python-psutil)
1744 ("python-six" ,python-six)))
1745 (native-inputs
1746 `(("python-mock" ,python-mock)
1747 ("python-pytest" ,python-pytest)
1748 ("python-pytest-mock" ,python-pytest-mock)
1749 ;; Requires setuptools >= 17.1 due to some features used, while our
1750 ;; python currently only includes 12.0. TODO: Remove this input.
1751 ("python-setuptools" ,python-setuptools)))
1752 (home-page "https://github.com/nvbn/thefuck")
1753 (synopsis "Correct mistyped console command")
1754 (description
1755 "The Fuck tries to match a rule for a previous, mistyped command, creates
1756 a new command using the matched rule, and runs it.")
1757 (license license:x11)))
1758
1759 (define-public di
1760 (package
1761 (name "di")
1762 (version "4.43")
1763 (source
1764 (origin
1765 (method url-fetch)
1766 (uri (string-append "https://gentoo.com/di/di-" version ".tar.gz"))
1767 (sha256
1768 (base32 "1q25jy51qfzsym9b2w0cqzscq2j492gn60dy6gbp88m8nwm4sdy8"))))
1769 (build-system gnu-build-system)
1770 (arguments
1771 `(#:tests? #f ; Obscure test failures.
1772 #:phases
1773 (modify-phases %standard-phases
1774 (delete 'configure)
1775 (add-before 'build 'setup-environment
1776 (lambda* (#:key outputs #:allow-other-keys)
1777 (setenv "CC" "gcc")
1778 (setenv "prefix" (assoc-ref outputs "out"))
1779 #t)))
1780 #:make-flags (list "--environment-overrides")))
1781 (home-page "https://www.gentoo.com/di/")
1782 (synopsis "Advanced df like disk information utility")
1783 (description
1784 "'di' is a disk information utility, displaying everything
1785 (and more) that your @code{df} command does. It features the ability to
1786 display your disk usage in whatever format you prefer. It is designed to be
1787 highly portable. Great for heterogeneous networks.")
1788 (license license:zlib)))
1789
1790 (define-public cbatticon
1791 (package
1792 (name "cbatticon")
1793 (version "1.6.6")
1794 (source (origin
1795 (method url-fetch)
1796 (uri (string-append "https://github.com/valr/"
1797 name "/archive/" version ".tar.gz"))
1798 (sha256
1799 (base32
1800 "1rxlrwd817f2zl4fsc5ha43wjzfidq3yyagq4lgyi150qg36svv3"))
1801 (file-name (string-append name "-" version ".tar.gz"))))
1802 (build-system gnu-build-system)
1803 (arguments
1804 `(#:tests? #f ; no tests
1805 #:make-flags
1806 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1807 "CC=gcc")
1808 #:phases
1809 (modify-phases %standard-phases
1810 (delete 'configure)))) ; no configure script
1811 (inputs
1812 `(("gtk+" ,gtk+)
1813 ("gettext" ,gettext-minimal)
1814 ("libnotify" ,libnotify)))
1815 (native-inputs
1816 `(("pkg-config" ,pkg-config)))
1817 (synopsis "Lightweight battery icon for the system tray")
1818 (description "cbatticon is a lightweight battery icon that displays
1819 the status of your battery in the system tray.")
1820 (home-page "https://github.com/valr/cbatticon")
1821 (license license:gpl2+)))
1822
1823 (define-public interrobang
1824 (let ((revision "1")
1825 (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
1826 (package
1827 (name "interrobang")
1828 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
1829 (source (origin
1830 (method git-fetch)
1831 (uri (git-reference
1832 (url "https://github.com/TrilbyWhite/interrobang")
1833 (commit commit)))
1834 (file-name (string-append name "-" version))
1835 (sha256
1836 (base32
1837 "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
1838 (build-system gnu-build-system)
1839 (arguments
1840 `(#:tests? #f ; no tests
1841 #:phases
1842 (modify-phases %standard-phases
1843 (delete 'configure)) ; no configure script
1844 #:make-flags (list (string-append "PREFIX="
1845 (assoc-ref %outputs "out")))))
1846 (inputs
1847 `(("libx11" ,libx11)))
1848 (native-inputs
1849 `(("pkg-config" ,pkg-config)))
1850 (synopsis "Scriptable launcher menu")
1851 (description "Interrobang is a scriptable launcher menu with a customizable
1852 shortcut syntax and completion options.")
1853 (home-page "https://github.com/TrilbyWhite/interrobang")
1854 (license license:gpl3+))))
1855
1856
1857
1858 (define-public pam-krb5
1859 (package
1860 (name "pam-krb5")
1861 (version "4.7")
1862 (source (origin
1863 (method url-fetch)
1864 (uri (string-append
1865 "https://archives.eyrie.org/software/kerberos/" name "-"
1866 version ".tar.xz"))
1867 (sha256
1868 (base32
1869 "0abf8cfpkprmhw5ca8iyqgrggh65lgqvmfllc1y6qz7zw1gas894"))))
1870 (build-system gnu-build-system)
1871 (arguments
1872 `(#:phases
1873 (modify-phases %standard-phases
1874 (add-before 'configure 'disable-tests
1875 (lambda _
1876 ;; The build container seems to interfere with some tests.
1877 (substitute* "tests/TESTS"
1878 (("module/basic\n") ""))
1879 (substitute* "tests/TESTS"
1880 (("pam-util/vector\n") ""))
1881 #t)))))
1882 (inputs
1883 `(("linux-pam" ,linux-pam)
1884 ("mit-krb5" ,mit-krb5)))
1885 (native-inputs
1886 `(("perl" ,perl)
1887 ("perl-test-pod" ,perl-test-pod))) ; required for tests
1888 (synopsis "Kerberos PAM module")
1889 (description
1890 "Pam-krb5 is a Kerberos PAM module for either MIT Kerberos or Heimdal.
1891 It supports ticket refreshing by screen savers, configurable
1892 authorization handling, authentication of non-local accounts for network
1893 services, password changing, and password expiration, as well as all the
1894 standard expected PAM features. It works correctly with OpenSSH, even
1895 with ChallengeResponseAuthentication and PrivilegeSeparation enabled,
1896 and supports extensive configuration either by PAM options or in
1897 krb5.conf or both. PKINIT is supported with recent versions of both MIT
1898 Kerberos and Heimdal and FAST is supported with recent MIT Kerberos.")
1899 (home-page "http://www.eyrie.org/~eagle/software/pam-krb5")
1900 ;; Dual licenced under a homebrew non-copyleft OR GPL (any version)
1901 ;; However, the tarball does not contain a copy of the GPL, so unless
1902 ;; we put one in, we cannot distribute it under GPL without violating
1903 ;; clause requiring us to give all recipients a copy.
1904 (license license:gpl1+)))
1905
1906 ;;http://archives.eyrie.org/software/kerberos/pam-krb5-4.7.tar.xz
1907
1908 (define-public sunxi-tools
1909 (package
1910 (name "sunxi-tools")
1911 (version "1.4.2")
1912 (source
1913 (origin
1914 (method url-fetch)
1915 (uri (string-append "https://github.com/linux-sunxi/"
1916 "sunxi-tools/archive/v" version ".tar.gz"))
1917 (sha256
1918 (base32 "08iqwj95qw2s7ilhrdi2lkbc8dx64zk5lzz1qk587jr0lla81x41"))
1919 (modules '((guix build utils)))
1920 (snippet
1921 ;; Remove binaries contained in the tarball which are only for the
1922 ;; target and can be regenerated anyway.
1923 '(delete-file-recursively "bin"))
1924 (file-name (string-append name "-" version ".tar.gz"))))
1925 (native-inputs
1926 `(("pkg-config" ,pkg-config)
1927 ("cross-gcc" ,(cross-gcc "arm-linux-gnueabihf"
1928 #:xbinutils (cross-binutils "arm-linux-gnueabihf")
1929 #:libc (cross-libc "arm-linux-gnueabihf")))
1930 ("cross-libc" ,(cross-libc "arm-linux-gnueabihf"))))
1931 (inputs
1932 `(("libusb" ,libusb)))
1933 (build-system gnu-build-system)
1934 (arguments
1935 `(#:tests? #f ; no tests exist
1936 #:make-flags (list (string-append "PREFIX="
1937 (assoc-ref %outputs "out"))
1938 (string-append "CROSS_COMPILE="
1939 "arm-linux-gnueabihf-")
1940 "CC=gcc")
1941 #:phases
1942 (modify-phases %standard-phases
1943 (delete 'configure)
1944 (add-before 'build 'set-environment-up
1945 (lambda* (#:key make-flags #:allow-other-keys)
1946 (define (cross? x)
1947 (string-contains x "cross-arm-linux"))
1948 (setenv "CROSS_C_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))
1949 (setenv "CROSS_CPLUS_INCLUDE_PATH" (getenv "CPLUS_INCLUDE_PATH"))
1950 (setenv "CROSS_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
1951 (for-each
1952 (lambda (env-name)
1953 (let* ((env-value (getenv env-name))
1954 (search-path (search-path-as-string->list env-value))
1955 (new-search-path (filter (lambda (e) (not (cross? e)))
1956 search-path))
1957 (new-env-value (list->search-path-as-string
1958 new-search-path ":")))
1959 (setenv env-name new-env-value)))
1960 '("C_INCLUDE_PATH" "CPLUS_INCLUDE_PATH" "LIBRARY_PATH"))
1961 #t))
1962 (replace 'build
1963 (lambda* (#:key make-flags #:allow-other-keys)
1964 (zero? (apply system* "make" "tools" "misc" make-flags))))
1965 (add-after 'build 'build-armhf
1966 (lambda* (#:key make-flags #:allow-other-keys)
1967 (zero? (apply system* "make" "target-tools" make-flags))))
1968 (replace 'install
1969 (lambda* (#:key make-flags #:allow-other-keys)
1970 (zero? (apply system* "make" "install-all" "install-misc"
1971 make-flags)))))))
1972 (home-page "https://github.com/linux-sunxi/sunxi-tools")
1973 (synopsis "Hardware management tools for Allwinner computers")
1974 (description "This package contains tools for Allwinner devices:
1975 @enumerate
1976 @item @command{sunxi-fexc}, @command{bin2fex}, @command{fex2bin}: Compile
1977 a textual description of a board (.fex) to a binary representation (.bin).
1978 @item @command{sunxi-fel}: Puts an Allwinner device into FEL mode which
1979 makes it register as a special USB device (rather than USB host).
1980 You can then connect it to another computer and flash it from there.
1981 @item @command{sunxi-nand-part}: Partitions NAND flash.
1982 @item @command{sunxi-bootinfo}: Reads out boot0 and boot1 (Allwinner
1983 bootloader) parameters.
1984 @item @command{sunxi-pio}: Sets GPIO parameters and oscillates a GPIO
1985 in order to be able to find it.
1986 @item @command{sunxi-meminfo}: Prints memory bus settings.
1987 @item @command{sunxi-nand-image-builder}: Prepares raw NAND images.
1988 @end enumerate")
1989 (license license:gpl2+)))
1990
1991 (define-public sedsed
1992 (package
1993 (name "sedsed")
1994 (version "1.0")
1995 (source
1996 (origin
1997 (method url-fetch)
1998 (uri (string-append "https://github.com/aureliojargas/sedsed/"
1999 "archive/v" version ".tar.gz"))
2000 (file-name (string-append name "-" version ".tar.gz"))
2001 (sha256
2002 (base32
2003 "0139jkqvm8ipiwfj7k69ry2f9b1ffgpk79arpz4r7w9kf6h23bnh"))))
2004 (build-system python-build-system)
2005 (arguments
2006 `(#:tests? #f ; No tests.
2007 #:python ,python-2
2008 #:phases
2009 (modify-phases %standard-phases
2010 (add-after 'unpack 'patch-sed-in
2011 (lambda _
2012 (substitute* "sedsed.py"
2013 (("sedbin = 'sed'")
2014 (string-append "sedbin = '" (which "sed") "'")))
2015 #t))
2016 (delete 'build)
2017 (replace 'install
2018 (lambda* (#:key outputs #:allow-other-keys)
2019 (let* ((out (assoc-ref outputs "out"))
2020 (bin (string-append out "/bin")))
2021 ;; Just one file to copy around
2022 (install-file "sedsed.py" bin)
2023 #t)))
2024 (add-after 'install 'symlink
2025 ;; Create 'sedsed' symlink to "sedsed.py".
2026 (lambda* (#:key outputs #:allow-other-keys)
2027 (let* ((out (assoc-ref outputs "out"))
2028 (bin (string-append out "/bin"))
2029 (sed (string-append bin "/sedsed"))
2030 (sedpy (string-append bin "/sedsed.py")))
2031 (symlink sedpy sed)
2032 #t))))))
2033 (home-page "http://aurelio.net/projects/sedsed")
2034 (synopsis "Sed sed scripts")
2035 (description
2036 "@code{sedsed} can debug, indent, tokenize and HTMLize your sed(1) script.
2037
2038 In debug mode it reads your script and add extra commands to it. When
2039 executed you can see the data flow between the commands, revealing all the
2040 magic sed does on its internal buffers.
2041
2042 In indent mode your script is reformatted with standard spacing.
2043
2044 In tokenize mode you can see the elements of every command you use.
2045
2046 In HTMLize mode your script is converted to a beautiful colored HTML file,
2047 with all the commands and parameters identified for your viewing pleasure.
2048
2049 With sedsed you can master any sed script. No more secrets, no more hidden
2050 buffers.")
2051 (license license:expat)))
2052
2053 (define-public intel-gpu-tools
2054 (package
2055 (name "intel-gpu-tools")
2056 (version "1.18")
2057 (source (origin
2058 (method url-fetch)
2059 (uri (string-append "https://cgit.freedesktop.org/xorg/app/"
2060 "intel-gpu-tools/snapshot/"
2061 "intel-gpu-tools-" version ".tar.gz"))
2062 (sha256
2063 (base32
2064 "0w7djk0y5w76hzn1b3cm39zd5c6w9za1wfn80wd857h0v313rzq3"))))
2065 (build-system gnu-build-system)
2066 (arguments
2067 `(#:tests? #f ; many of the tests try to load kernel modules
2068 #:phases
2069 (modify-phases %standard-phases
2070 (add-after 'unpack 'autogen
2071 (lambda _
2072 ;; Don't run configure in this phase
2073 (setenv "NOCONFIGURE" "1")
2074 (zero? (system* "sh" "autogen.sh")))))))
2075 (inputs
2076 `(("util-macros" ,util-macros)
2077 ("libdrm" ,libdrm)
2078 ("libpciaccess" ,libpciaccess)
2079 ("kmod" ,kmod)
2080 ("procps" ,procps)
2081 ("cairo" ,cairo)
2082 ("libunwind" ,libunwind)
2083 ("libxrandr" ,libxrandr)
2084 ("glib" ,glib)))
2085 (native-inputs
2086 `(("autoconf" ,autoconf)
2087 ("automake" ,automake)
2088 ("libtool" ,libtool)
2089 ("pkg-config" ,pkg-config)))
2090 (home-page "https://cgit.freedesktop.org/xorg/app/intel-gpu-tools/")
2091 (synopsis "Tools for development and testing of the Intel DRM driver")
2092 (description "Intel GPU Tools is a collection of tools for development and
2093 testing of the Intel DRM driver. There are many macro-level test suites that
2094 get used against the driver, including xtest, rendercheck, piglit, and
2095 oglconform, but failures from those can be difficult to track down to kernel
2096 changes, and many require complicated build procedures or specific testing
2097 environments to get useful results. Therefore, Intel GPU Tools includes
2098 low-level tools and tests specifically for development and testing of the
2099 Intel DRM Driver.")
2100 (license license:expat)))
2101
2102 (define-public fabric
2103 (package
2104 (name "fabric")
2105 (version "1.13.2")
2106 (source
2107 (origin
2108 (method url-fetch)
2109 (uri (pypi-uri "Fabric" version))
2110 (sha256
2111 (base32
2112 "0k944dxr41whw7ib6380q9x15wyskx7fqni656icdn8rzshn9bwq"))))
2113 (build-system python-build-system)
2114 (arguments
2115 `(#:python ,python-2)) ; Python 2 only
2116 (native-inputs
2117 `(("python2-fudge" ,python2-fudge)
2118 ("python2-jinja2" ,python2-jinja2)
2119 ("python2-nose" ,python2-nose)))
2120 (propagated-inputs
2121 `(("python2-paramiko" ,python2-paramiko)))
2122 (home-page "http://fabfile.org")
2123 (synopsis "Simple Pythonic remote execution and deployment tool")
2124 (description
2125 "Fabric is designed to upload files and run shell commands on a number of
2126 servers in parallel or serially. These commands are grouped in tasks (which
2127 are regular Python functions) and specified in a @dfn{fabfile}.
2128
2129 It is similar to Capistrano, except it's implemented in Python and doesn't
2130 expect you to be deploying Rails applications. Fabric is a simple, Pythonic
2131 tool for remote execution and deployment.")
2132 (license license:bsd-2)))
2133
2134 (define-public neofetch
2135 (package
2136 (name "neofetch")
2137 (version "3.2.0")
2138 (source (origin
2139 (method url-fetch)
2140 (uri (string-append "https://github.com/dylanaraps/neofetch/"
2141 "archive/" version ".tar.gz"))
2142 (file-name (string-append name "-" version ".tar.gz"))
2143 (sha256
2144 (base32
2145 "07a32rzmch51znxspzyc7zyaldmr383v70b49wmnjdjs2qfdbv3a"))))
2146 (build-system gnu-build-system)
2147 (arguments
2148 '(#:tests? #f ; there are no tests
2149 #:make-flags
2150 (list (string-append "PREFIX=" %output))
2151 #:phases
2152 (modify-phases %standard-phases
2153 (add-after 'unpack 'patch-target-directories
2154 (lambda* (#:key outputs #:allow-other-keys)
2155 (let ((out (assoc-ref outputs "out")))
2156 (substitute* "Makefile"
2157 (("\\$\\(DESTDIR\\)/etc/")
2158 "$(PREFIX)/etc/"))
2159 (substitute* "neofetch"
2160 (("\"/etc/neofetch")
2161 (string-append "\"" out "/etc/neofetch"))
2162 (("\"/usr/share/neofetch")
2163 (string-append "\"" out "/share/neofetch"))))
2164 #t))
2165 (delete 'configure))))
2166 (home-page "https://github.com/dylanaraps/neofetch")
2167 (synopsis "System info script")
2168 (description "Neofetch is a CLI system information tool written in Bash.
2169 Neofetch displays information about your system next to an image, your OS
2170 logo, or any ASCII file of your choice. The main purpose of Neofetch is to be
2171 used in screenshots to show other users what operating system or distribution
2172 you are running, what theme or icon set you are using, etc.")
2173 (license license:expat)))
2174
2175 (define-public nnn
2176 (package
2177 (name "nnn")
2178 (version "1.3")
2179 (source (origin
2180 (method url-fetch)
2181 (uri (string-append "https://github.com/jarun/nnn/"
2182 "archive/v" version ".tar.gz"))
2183 (file-name (string-append name "-" version ".tar.gz"))
2184 (sha256
2185 (base32
2186 "0sivgcmg3hihz15v2wgbxnd0icn06pyvvqdqh8x0mwkhvm434fpb"))))
2187 (build-system gnu-build-system)
2188 (inputs `(("ncurses" ,ncurses)
2189 ("readline" ,readline)))
2190 (arguments
2191 '(#:tests? #f ; no tests
2192 #:phases
2193 ;; We do not provide `ncurses.h' within an `ncursesw'
2194 ;; sub-directory, so patch the source accordingly. See
2195 ;; <http://bugs.gnu.org/19018>.
2196 ;; Thanks to gtypist maintainer.
2197 (modify-phases %standard-phases
2198 (add-after 'unpack 'patch-curses-lib
2199 (lambda* (#:key outputs #:allow-other-keys)
2200 (let ((out (assoc-ref outputs "out")))
2201 (substitute* "Makefile"
2202 (("-lncursesw")
2203 "-lncurses"))
2204 (substitute* "nnn.c"
2205 (("ncursesw\\/curses.h")
2206 "ncurses.h")))
2207 #t))
2208 (delete 'configure))
2209 #:make-flags
2210 (list
2211 (string-append "PREFIX="
2212 (assoc-ref %outputs "out"))
2213 (string-append "-Wl,-rpath="
2214 %output "/lib")
2215 "CC=gcc")))
2216 (home-page "https://github.com/jarun/nnn")
2217 (synopsis "Terminal file browser")
2218 (description "@command{nnn} is a fork of @command{noice}, a blazing-fast
2219 lightweight terminal file browser with easy keyboard shortcuts for
2220 navigation, opening files and running tasks. There is no config file and
2221 mime associations are hard-coded. The incredible user-friendliness and speed
2222 make it a perfect utility on modern distros.")
2223 (license license:bsd-2)))
2224
2225 (define-public thermald
2226 (package
2227 (name "thermald")
2228 (version "1.6")
2229 (source
2230 (origin
2231 (method url-fetch)
2232 (uri (string-append "https://github.com/01org/thermal_daemon/archive/v"
2233 version ".tar.gz"))
2234 (file-name (string-append name "-" version ".tar.gz"))
2235 (sha256 (base32
2236 "14klz9fnvi9jdlaqwrp61xa5nh051n8ykrs1fh1wxd7j66qf2fn6"))))
2237 (build-system gnu-build-system)
2238 (arguments
2239 `(#:phases (modify-phases %standard-phases
2240 (add-after
2241 'unpack 'autogen.sh-and-fix-paths
2242 (lambda* (#:key outputs #:allow-other-keys)
2243 (let ((out (assoc-ref outputs "out")))
2244 ;; upstartconfir is hardcoded to /etc/init and the build
2245 ;; system tries to mkdir that. We don't even need upstart
2246 ;; files at all; this is a fast and kludgy workaround
2247 (substitute* "data/Makefile.am"
2248 (("upstartconfdir = /etc/init")
2249 (string-append "upstartconfdir = "
2250 out "/etc/init")))
2251 ;; Now run autogen
2252 (zero? (system* "sh" "autogen.sh"))))))
2253 #:configure-flags
2254 (let ((out (assoc-ref %outputs "out")))
2255 (list (string-append "--sysconfdir="
2256 out "/etc")
2257 (string-append "--with-udev-dir="
2258 out "/lib/udev")
2259 (string-append "--with-dbus-sys-dir="
2260 out "/etc/dbus-1/system.d")
2261 "--localstatedir=/var"))))
2262 (native-inputs
2263 `(("autoconf" ,autoconf)
2264 ("automake" ,automake)
2265 ("glib" ,glib "bin") ; for glib-genmarshal, etc.
2266 ("pkg-config" ,pkg-config)))
2267 (inputs
2268 `(("dbus-glib" ,dbus-glib)
2269 ("libxml2" ,libxml2)))
2270 (home-page "https://01.org/linux-thermal-daemon/")
2271 (synopsis "CPU scaling for thermal management")
2272 (description "The Linux Thermal Daemon helps monitor and control temperature
2273 on systems running the Linux kernel.")
2274 ;; arm and aarch64 don't have cpuid.h
2275 (supported-systems '("i686-linux" "x86_64-linux"))
2276 (license license:gpl2+)))