gnu: ansible: Work around issues with Guix wrapper scripts.
[jackhill/guix/guix.git] / gnu / packages / admin.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
4 ;;; Copyright © 2014, 2015, 2016, 2018, 2019 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 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, 2017 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, 2018, 2019 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 <ng0@n0.is>
16 ;;; Copyright © 2016, 2017, 2018, 2019 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 ;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
22 ;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
23 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
24 ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
25 ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
26 ;;; Copyright © 2019 Brett Gilio <brettg@posteo.net>
27 ;;; Copyright © 2019 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
28 ;;; Copyright © 2019 Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>
29 ;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
30 ;;;
31 ;;; This file is part of GNU Guix.
32 ;;;
33 ;;; GNU Guix is free software; you can redistribute it and/or modify it
34 ;;; under the terms of the GNU General Public License as published by
35 ;;; the Free Software Foundation; either version 3 of the License, or (at
36 ;;; your option) any later version.
37 ;;;
38 ;;; GNU Guix is distributed in the hope that it will be useful, but
39 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
40 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 ;;; GNU General Public License for more details.
42 ;;;
43 ;;; You should have received a copy of the GNU General Public License
44 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
45
46 (define-module (gnu packages admin)
47 #:use-module ((guix licenses) #:prefix license:)
48 #:use-module (guix packages)
49 #:use-module (guix utils)
50 #:use-module (guix download)
51 #:use-module (guix git-download)
52 #:use-module (guix build-system cmake)
53 #:use-module (guix build-system emacs)
54 #:use-module (guix build-system gnu)
55 #:use-module (guix build-system meson)
56 #:use-module (guix build-system perl)
57 #:use-module (guix build-system python)
58 #:use-module (guix build-system trivial)
59 #:use-module (gnu packages)
60 #:use-module (gnu packages algebra)
61 #:use-module (gnu packages base)
62 #:use-module (gnu packages bash)
63 #:use-module (gnu packages check)
64 #:use-module (gnu packages crypto)
65 #:use-module (gnu packages cyrus-sasl)
66 #:use-module (gnu packages dns)
67 #:use-module (gnu packages file)
68 #:use-module (gnu packages ncurses)
69 #:use-module (gnu packages readline)
70 #:use-module (gnu packages linux)
71 #:use-module (gnu packages lua)
72 #:use-module (gnu packages guile)
73 #:use-module (gnu packages gettext)
74 #:use-module (gnu packages imagemagick)
75 #:use-module (gnu packages inkscape)
76 #:use-module (gnu packages pcre)
77 #:use-module (gnu packages perl)
78 #:use-module (gnu packages perl-check)
79 #:use-module (gnu packages tcl)
80 #:use-module (gnu packages compression)
81 #:use-module (gnu packages cross-base)
82 #:use-module (gnu packages tls)
83 #:use-module (gnu packages gnupg)
84 #:use-module (gnu packages bison)
85 #:use-module (gnu packages flex)
86 #:use-module (gnu packages gl)
87 #:use-module (gnu packages glib)
88 #:use-module (gnu packages openldap)
89 #:use-module (gnu packages mcrypt)
90 #:use-module (gnu packages pkg-config)
91 #:use-module (gnu packages popt)
92 #:use-module (gnu packages python)
93 #:use-module (gnu packages python-crypto)
94 #:use-module (gnu packages python-web)
95 #:use-module (gnu packages python-xyz)
96 #:use-module (gnu packages qt)
97 #:use-module (gnu packages sphinx)
98 #:use-module (gnu packages terminals)
99 #:use-module (gnu packages texinfo)
100 #:use-module (gnu packages groff)
101 #:use-module (gnu packages pciutils)
102 #:use-module (gnu packages libunwind)
103 #:use-module (gnu packages libusb)
104 #:use-module (gnu packages libftdi)
105 #:use-module (gnu packages image)
106 #:use-module (gnu packages xorg)
107 #:use-module (gnu packages xdisorg)
108 #:use-module (gnu packages man)
109 #:use-module (gnu packages autotools)
110 #:use-module (gnu packages gnome)
111 #:use-module (gnu packages kerberos)
112 #:use-module (gnu packages gtk)
113 #:use-module (gnu packages xml)
114 #:use-module (gnu packages boost)
115 #:use-module (gnu packages elf)
116 #:use-module (gnu packages mpi)
117 #:use-module (gnu packages version-control)
118 #:use-module (gnu packages web))
119
120 (define-public aide
121 (package
122 (name "aide")
123 (version "0.16.2")
124 (source
125 (origin
126 (method url-fetch)
127 (uri (string-append "https://github.com/aide/aide/releases/download/v"
128 version "/aide-" version ".tar.gz"))
129 (sha256
130 (base32 "15xp47sz7kk1ciffw3f5xw2jg2mb2lqrbr3q6p4bkbz5dap9iy8p"))))
131 (build-system gnu-build-system)
132 (native-inputs
133 `(("bison" ,bison)
134 ("flex" ,flex)))
135 (inputs
136 `(("libgcrypt" ,libgcrypt)
137 ("libgpg-error" ,libgpg-error)
138 ("libmhash" ,libmhash)
139 ("pcre:static" ,pcre "static")
140 ("pcre" ,pcre)
141 ("zlib:static" ,zlib "static")
142 ("zlib" ,zlib)))
143 (synopsis "File and directory integrity checker")
144 (description
145 "AIDE (Advanced Intrusion Detection Environment) is a file and directory
146 integrity checker. It creates a database from the regular expression rules
147 that it finds from its configuration files. Once this database is initialized
148 it can be used to verify the integrity of the files. It has several message
149 digest algorithms that are used to check the integrity of files. All of the
150 usual file attributes can be checked for inconsistencies.")
151 (home-page "https://aide.github.io/")
152 (license license:gpl2+)))
153
154 (define-public progress
155 (package
156 (name "progress")
157 (version "0.14")
158 (source
159 (origin
160 (method git-fetch)
161 (uri (git-reference
162 (url "https://github.com/Xfennec/progress.git")
163 (commit (string-append "v" version))))
164 (sha256
165 (base32 "1lk2v4b767klib93an4g3f7z5qrv9kdk9jf7545vw1immc4kamrl"))
166 (file-name (git-file-name name version))))
167 (build-system gnu-build-system)
168 (native-inputs
169 `(("pkg-config" ,pkg-config)
170 ("which" ,which)))
171 (inputs
172 `(("ncurses" ,ncurses)))
173 (arguments
174 `(#:tests? #f ; no test suite
175 #:make-flags (list "CC=gcc"
176 (string-append "PREFIX=" (assoc-ref %outputs "out")))
177 #:phases
178 (modify-phases %standard-phases
179 (delete 'configure)))) ; no configure script
180 (home-page "https://github.com/Xfennec/progress")
181 (synopsis "Program to view the progress of the coreutils commands")
182 (description "A program that looks for coreutils basic commands (cp, mv,
183 dd, tar, gzip/gunzip, cat, etc.) currently running on your system and displays
184 the percentage of copied data. It can also show estimated time and throughput,
185 and provides a \"top-like\" mode (monitoring).")
186 (license license:gpl3+)))
187
188 (define-public shepherd
189 (package
190 (name "shepherd")
191 (version "0.6.1")
192 (source (origin
193 (method url-fetch)
194 (uri (string-append "mirror://gnu/shepherd/shepherd-"
195 version ".tar.gz"))
196 (sha256
197 (base32
198 "1xn6mb5bh8bpfgdrh09ja31jk0ln7bmxbbf0vjcqxkkixs2wl6sk"))))
199 (build-system gnu-build-system)
200 (arguments
201 '(#:configure-flags '("--localstatedir=/var")))
202 (native-inputs
203 `(("pkg-config" ,pkg-config)
204
205 ;; This is the Guile we use as a cross-compiler...
206 ("guile" ,guile-2.2)))
207 (inputs
208 ;; ... and this is the one that appears in shebangs when cross-compiling.
209 `(("guile" ,guile-2.2)
210
211 ;; The 'shepherd' command uses Readline when used interactively. It's
212 ;; an unusual use case though, so we don't propagate it.
213 ("guile-readline" ,guile-readline)))
214 (synopsis "System service manager")
215 (description
216 "The GNU Shepherd is a daemon-managing daemon, meaning that it supervises
217 the execution of system services, replacing similar functionality found in
218 typical init systems. It provides dependency-handling through a convenient
219 interface and is based on GNU Guile.")
220 (license license:gpl3+)
221 (home-page "https://www.gnu.org/software/shepherd/")))
222
223 (define-public cloud-utils
224 (package
225 (name "cloud-utils")
226 (version "0.31")
227 (source
228 (origin
229 (method url-fetch)
230 (uri (string-append
231 "https://launchpad.net/cloud-utils/trunk/"
232 version "/+download/cloud-utils-" version ".tar.gz"))
233 (sha256
234 (base32
235 "07fl3dlqwdzw4xx7mcxhpkks6dnmaxha80zgs9f6wmibgzni8z0r"))))
236 (build-system gnu-build-system)
237 (arguments
238 '(#:make-flags
239 (let ((out (assoc-ref %outputs "out")))
240 (list (string-append "BINDIR=" out "/bin")
241 (string-append "MANDIR=" out "/share/man/man1")
242 (string-append "DOCDIR=" out "/share/doc")))
243 #:phases
244 (modify-phases %standard-phases
245 (delete 'configure)
246 (delete 'check)
247 (add-after 'install 'wrap
248 (lambda* (#:key outputs inputs #:allow-other-keys)
249 (let ((growpart (string-append (assoc-ref outputs "out")
250 "/bin/growpart")))
251 (wrap-program growpart
252 `("PATH" ":" prefix (,(dirname (which "sfdisk"))
253 ,(dirname (which "readlink"))))))
254 #t)))))
255 (inputs
256 `(("python" ,python)
257 ("util-linux" ,util-linux))) ; contains sfdisk for growpart
258 (home-page "https://launchpad.net/cloud-utils")
259 (synopsis "Set of utilities for cloud computing environments")
260 (description
261 "This package contains a set of utilities for cloud computing
262 environments:
263
264 @itemize @bullet
265 @item @command{cloud-localds} Create a disk for cloud-init to utilize nocloud
266 @item @command{cloud-publish-image} Wrapper for cloud image publishing
267 @item @command{cloud-publish-tarball} Wrapper for publishing cloud tarballs
268 @item @command{cloud-publish-ubuntu} Import a Ubuntu cloud image
269 @item @command{ec2metadata} Query and display @acronym{EC2,Amazon Elastic
270 Compute Cloud} metadata
271 @item @command{growpart} Grow a partition to fill the device
272 @item @command{mount-image-callback} Mount a file and run a command
273 @item @command{resize-part-image} Resize a partition image to a new size
274 @item @command{ubuntu-cloudimg-query} Get the latest Ubuntu
275 @acronym{AMI,Amazon Machine Image}
276 @item @command{ubuntu-ec2-run} Run a @acronym{EC2,Amazon Elastic Compute
277 Cloud} instance using Ubuntu
278 @item @command{vcs-run} Obtain a repository, and run a command
279 @item @command{write-mime-multipart} Handle multipart
280 @acronym{MIME,Multipurpose Internet Mail Extensions} messages
281 @end itemize")
282 (license license:gpl3)))
283
284 (define-public daemontools
285 (package
286 (name "daemontools")
287 (version "0.76")
288 (source (origin
289 (method url-fetch)
290 (uri (string-append
291 "https://cr.yp.to/daemontools/"
292 "daemontools-" version ".tar.gz"))
293 (sha256
294 (base32
295 "07scvw88faxkscxi91031pjkpccql6wspk4yrlnsbrrb5c0kamd5"))))
296 (build-system gnu-build-system)
297 (arguments
298 `(#:tests? #f ;; No tests as far as I can tell.
299 #:phases
300 (modify-phases %standard-phases
301 (add-after 'unpack 'chdir
302 (lambda _
303 (chdir ,(string-append "daemontools-" version))
304 #t))
305 (delete 'configure)
306 (add-before 'build 'patch
307 (lambda _
308 (substitute* "src/error.h"
309 (("extern int errno;")
310 "#include <errno.h>"))
311 #t))
312 (replace 'build
313 (lambda _
314 (invoke "package/compile")))
315 (replace 'install
316 (lambda* (#:key outputs #:allow-other-keys)
317 (let* ((out (assoc-ref outputs "out"))
318 (bin (string-append out "/bin")))
319 (for-each (lambda (file)
320 (install-file file bin))
321 (find-files "command")))
322 #t)))))
323 (synopsis "Tools for managing UNIX style services")
324 (description
325 "@code{daemontools} is a collection of tools for managing UNIX
326 services.")
327 (license license:public-domain)
328 (home-page "https://cr.yp.to/daemontools.html")))
329
330 (define-public dfc
331 (package
332 (name "dfc")
333 (version "3.1.1")
334 (source
335 (origin
336 (method url-fetch)
337 (uri (string-append
338 "https://projects.gw-computing.net/attachments/download/615/dfc-"
339 version ".tar.gz"))
340 (sha256
341 (base32
342 "0m1fd7l85ckb7bq4c5c3g257bkjglm8gq7x42pkmpp87fkknc94n"))))
343 (build-system cmake-build-system)
344 (arguments '(#:tests? #f)) ; There are no tests.
345 (native-inputs `(("gettext" ,gettext-minimal)))
346 (home-page "https://projects.gw-computing.net/projects/dfc")
347 (synopsis "Display file system space usage using graphs and colors")
348 (description
349 "dfc (df color) is a modern version of df. It uses colors, draws pretty
350 graphs and can export its output to different formats.")
351 (license license:bsd-3)))
352
353 (define-public htop
354 (package
355 (name "htop")
356 (version "2.2.0")
357 (source (origin
358 (method url-fetch)
359 (uri (string-append "http://hisham.hm/htop/releases/"
360 version "/htop-" version ".tar.gz"))
361 (sha256
362 (base32
363 "0mrwpb3cpn3ai7ar33m31yklj64c3pp576vh1naqff6f21pq5mnr"))))
364 (build-system gnu-build-system)
365 (inputs
366 `(("ncurses" ,ncurses)))
367 (native-inputs
368 `(("python" ,python-wrapper))) ;for scripts/MakeHeader.py
369 (home-page "https://hisham.hm/htop/")
370 (synopsis "Interactive process viewer")
371 (description
372 "This is htop, an interactive process viewer. It is a text-mode
373 application (for console or X terminals) and requires ncurses.")
374 (license license:gpl2)))
375
376 (define-public pies
377 (package
378 (name "pies")
379 (version "1.4")
380 (source
381 (origin
382 (method url-fetch)
383 (uri (string-append "mirror://gnu/pies/pies-"
384 version ".tar.bz2"))
385 (sha256
386 (base32
387 "14jb4pa4zs26d5j2skxbaypnwhsx2lw8jgj1irrgs03c2dnf7gp6"))))
388 (build-system gnu-build-system)
389 (arguments
390 '(#:phases (modify-phases %standard-phases
391 (add-before 'build 'patch-/bin/sh
392 (lambda* (#:key inputs #:allow-other-keys)
393 ;; Use the right shell when executing user-provided
394 ;; shell commands.
395 (let ((bash (assoc-ref inputs "bash")))
396 (substitute* '("src/progman.c" "src/comp.c")
397 (("\"/bin/sh\"")
398 (string-append "\"" bash "/bin/sh\"")))
399 #t))))))
400 (home-page "https://www.gnu.org/software/pies/")
401 (synopsis "Program invocation and execution supervisor")
402 (description
403 "GNU pies is a program that supervises the invocation and execution of
404 other programs. It reads the list of programs to be started from its
405 configuration file, executes them, and then monitors their status,
406 re-executing them as necessary.")
407 (license license:gpl3+)))
408
409 (define-public inetutils
410 (package
411 (name "inetutils")
412 (version "1.9.4")
413 (source (origin
414 (method url-fetch)
415 (uri (string-append "mirror://gnu/inetutils/inetutils-"
416 version ".tar.gz"))
417 (sha256
418 (base32
419 "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy"))))
420 (build-system gnu-build-system)
421 (arguments
422 `(#:configure-flags '("--localstatedir=/var"
423
424 ;; Make sure 'PATH_PROCNET_DEV' gets defined when
425 ;; cross-compiling (by default it does not.)
426 ,@(if (%current-target-system)
427 '("--with-path-procnet-dev=/proc/net/dev")
428 '()))
429 ;; On some systems, 'libls.sh' may fail with an error such as:
430 ;; "Failed to tell switch -a apart from -A".
431 #:parallel-tests? #f))
432 (inputs `(("ncurses" ,ncurses)
433 ("readline" ,readline))) ;for 'ftp'
434 (native-inputs `(("netstat" ,net-tools))) ;for tests
435 (home-page "https://www.gnu.org/software/inetutils/")
436 (synopsis "Basic networking utilities")
437 (description
438 "Inetutils is a collection of common network programs, such as an ftp
439 client and server, a telnet client and server, an rsh client and server, and
440 hostname.")
441 (license license:gpl3+)))
442
443 (define-public shadow
444 (package
445 (name "shadow")
446 (version "4.7")
447 (source (origin
448 (method url-fetch)
449 (uri (string-append
450 "https://github.com/shadow-maint/shadow/releases/"
451 "download/" version "/shadow-" version ".tar.xz"))
452 (sha256
453 (base32
454 "0v71474rx38lg9kidrm4xbk35sg3icv3s5pk2b42icp3lyj9dqg5"))))
455 (build-system gnu-build-system)
456 (arguments
457 `(;; Assume System V `setpgrp (void)', which is the default on GNU
458 ;; variants (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
459 #:configure-flags
460 '("--with-libpam" "ac_cv_func_setpgrp_void=yes")
461
462 #:phases
463 (modify-phases %standard-phases
464 (add-before 'build 'set-nscd-file-name
465 (lambda* (#:key inputs #:allow-other-keys)
466 ;; Use the right file name for nscd.
467 (let ((libc (assoc-ref inputs
468 ,(if (%current-target-system)
469 "cross-libc"
470 "libc"))))
471 (substitute* "lib/nscd.c"
472 (("/usr/sbin/nscd")
473 (string-append libc "/sbin/nscd")))
474 #t)))
475 (add-after 'install 'remove-groups
476 (lambda* (#:key outputs #:allow-other-keys)
477 ;; Remove `groups', which is already provided by Coreutils.
478 (let* ((out (assoc-ref outputs "out"))
479 (bin (string-append out "/bin"))
480 (man (string-append out "/share/man")))
481 (delete-file (string-append bin "/groups"))
482 (for-each delete-file (find-files man "^groups\\."))
483 #t))))))
484
485 (inputs (if (string-contains (or (%current-target-system)
486 (%current-system))
487 "-linux")
488 `(("linux-pam" ,linux-pam))
489 '()))
490 (home-page "https://github.com/shadow-maint/shadow")
491 (synopsis "Authentication-related tools such as passwd, su, and login")
492 (description
493 "Shadow provides a number of authentication-related tools, including:
494 login, passwd, su, groupadd, and useradd.")
495
496 ;; The `vipw' program is GPLv2+.
497 ;; libmisc/salt.c is public domain.
498 (license license:bsd-3)))
499
500 (define-public mingetty
501 (package
502 (name "mingetty")
503 (version "1.08")
504 (source (origin
505 (method url-fetch)
506 (uri (string-append "mirror://sourceforge/mingetty/mingetty/"
507 version "/mingetty-" version ".tar.gz"))
508 (sha256
509 (base32
510 "05yxrp44ky2kg6qknk1ih0kvwkgbn9fbz77r3vci7agslh5wjm8g"))))
511 (build-system gnu-build-system)
512 (arguments
513 `(#:phases
514 (modify-phases %standard-phases
515 (replace 'configure
516 (lambda* (#:key inputs outputs #:allow-other-keys)
517 (let* ((out (assoc-ref outputs "out"))
518 (man8 (string-append out "/share/man/man8"))
519 (sbin (string-append out "/sbin"))
520 (shadow (assoc-ref inputs "shadow"))
521 (login (string-append shadow "/bin/login")))
522 (substitute* "Makefile"
523 (("^SBINDIR.*")
524 (string-append "SBINDIR = " out
525 "/sbin\n"))
526 (("^MANDIR.*")
527 (string-append "MANDIR = " out
528 "/share/man/man8\n")))
529
530 ;; Pick the right 'login' by default.
531 (substitute* "mingetty.c"
532 (("\"/bin/login\"")
533 (string-append "\"" login "\"")))
534
535 (mkdir-p sbin)
536 (mkdir-p man8))
537 #t)))
538 #:tests? #f)) ; no tests
539 (inputs `(("shadow" ,shadow)))
540
541 (home-page "https://sourceforge.net/projects/mingetty")
542 (synopsis "Getty for the text console")
543 (description
544 "Small console getty that is started on the Linux text console,
545 asks for a login name and then transfers over to @code{login}. It is extended
546 to allow automatic login and starting any app.")
547 (license license:gpl2+)))
548
549 (define-public net-base
550 (package
551 (name "net-base")
552 (version "5.3")
553 (source (origin
554 (method url-fetch)
555 (uri (string-append
556 "mirror://debian/pool/main/n/netbase/netbase_"
557 version ".tar.xz"))
558 (sha256
559 (base32
560 "12xqjwg3p4rzmmh2iib6sigm9l29y3dgk74mmnw64k84jnbwdxl1"))))
561 (build-system trivial-build-system)
562 (arguments
563 `(#:modules ((guix build utils))
564 #:builder (begin
565 (use-modules (guix build utils)
566 (srfi srfi-26))
567
568 (let* ((source (assoc-ref %build-inputs "source"))
569 (tar (assoc-ref %build-inputs "tar"))
570 (xz (assoc-ref %build-inputs "xz"))
571 (output (assoc-ref %outputs "out"))
572 (etc (string-append output "/etc")))
573 (setenv "PATH" (string-append xz "/bin"))
574 (invoke (string-append tar "/bin/tar") "xvf"
575 source)
576 (chdir ,(string-append "netbase-" version))
577 (mkdir-p etc)
578 (for-each copy-file
579 '("etc-services" "etc-protocols" "etc-rpc")
580 (map (cut string-append etc "/" <>)
581 '("services" "protocols" "rpc")))
582 #t))))
583 (native-inputs `(("tar" ,tar)
584 ("xz" ,xz)))
585 (synopsis "IANA protocol, port, and RPC number assignments")
586 (description
587 "This package provides the /etc/services, /etc/protocols, and /etc/rpc
588 files, which contain information about the IANA-assigned port, protocol, and
589 ONC RPC numbers.")
590 (home-page "https://packages.debian.org/sid/netbase")
591 (license license:gpl2)))
592
593 (define-public netcat
594 (package
595 (name "netcat")
596 (version "0.7.1")
597 (source (origin
598 (method url-fetch)
599 (uri (string-append "mirror://sourceforge/netcat/netcat/" version
600 "/netcat-" version ".tar.bz2"))
601 (sha256
602 (base32
603 "1frjcdkhkpzk0f84hx6hmw5l0ynpmji8vcbaxg8h5k2svyxz0nmm"))))
604 (build-system gnu-build-system)
605 (arguments
606 `(#:configure-flags
607 ;; By default, man and info pages are put in PREFIX/{man,info},
608 ;; but we want them in PREFIX/share/{man,info}.
609 (let ((out (assoc-ref %outputs "out")))
610 (list (string-append "--mandir=" out "/share/man")
611 (string-append "--infodir=" out "/share/info")))))
612 (home-page "http://netcat.sourceforge.net")
613 (synopsis "Read and write data over TCP/IP")
614 (description
615 "Netcat is a featured networking utility which reads and writes data
616 across network connections, using the TCP/IP protocol. It is designed to be a
617 reliable \"back-end\" tool that can be used directly or easily driven by other
618 programs and scripts. At the same time, it is a feature-rich network debugging
619 and exploration tool, since it can create almost any kind of connection you
620 would need and has several interesting built-in capabilities.")
621 (license license:gpl2+)))
622
623 (define-public sipcalc
624 (package
625 (name "sipcalc")
626 (version "1.1.6")
627 (source
628 (origin
629 (method url-fetch)
630 (uri (string-append "http://www.routemeister.net/projects"
631 "/sipcalc/files/sipcalc" "-" version ".tar.gz"))
632 (sha256
633 (base32
634 "0mv3wndj4z2bsshh2k8d5sy3j8wxzgf8mzmmkvj1k8gpcz37dm6g"))))
635 (build-system gnu-build-system)
636 (home-page "http://www.routemeister.net/projects/sipcalc/")
637 (synopsis "Command-line IP subnet calculator")
638 (description
639 "Sipcalc is an advanced command-line IP subnet calculator. It can take
640 multiple forms of input (IPv4/IPv6/interface/hostname) and output a multitude
641 of information about a given subnet.
642
643 Features include:
644
645 @itemize @bullet
646 @item IPv4
647 @itemize
648 @item Retrieving of address information from interfaces.
649 @item Classfull and CIDR output.
650 @item Multiple address and netmask input and output formats (dotted quad, hex,
651 number of bits).
652 @item Output of broadcast address, network class, Cisco wildcard,
653 hosts/range, network range.
654 @item The ability to split a network based on a smaller netmask, now also with
655 recursive runs on the generated subnets. (also IPv6)
656 @end itemize
657 @item IPv6
658 @itemize
659 @item Compressed and expanded input and output addresses.
660 @item Standard IPv6 network output.
661 @item v4 in v6 output.
662 @item Reverse DNS address generation.
663 @end itemize
664 @end itemize\n")
665 (license license:bsd-3)))
666
667 (define-public alive
668 (package
669 (name "alive")
670 (version "2.0.2")
671 (source (origin
672 (method url-fetch)
673 (uri (string-append "mirror://gnu/alive/alive-"
674 version ".tar.xz"))
675 (sha256
676 (base32
677 "1vrzg51ai68x9yld7vbgl58sxaw5qpx8rbakwcxn4cqq6vpxj38j"))))
678 (build-system gnu-build-system)
679 (arguments '(#:configure-flags '("alive_cv_nice_ping=yes")))
680 (inputs `(("guile" ,guile-2.0)
681 ("inetutils" ,inetutils)))
682 (home-page "https://www.gnu.org/software/alive/")
683 (synopsis "Autologin and keep-alive daemon")
684 (description
685 "GNU Alive sends periodic pings to a server, generally to keep a
686 connection alive.")
687 (license license:gpl3+)))
688
689 (define-public isc-dhcp
690 (let* ((bind-major-version "9")
691 (bind-minor-version "11")
692 (bind-patch-version "11")
693 (bind-release-type "") ; for patch release, use "-P"
694 (bind-release-version "") ; for patch release, e.g. "6"
695 (bind-version (string-append bind-major-version
696 "."
697 bind-minor-version
698 "."
699 bind-patch-version
700 bind-release-type
701 bind-release-version)))
702 (package
703 (name "isc-dhcp")
704 (version "4.4.1")
705 (source (origin
706 (method url-fetch)
707 (uri (string-append "https://ftp.isc.org/isc/dhcp/"
708 version "/dhcp-" version ".tar.gz"))
709 (sha256
710 (base32
711 "025nfqx4zwdgv4b3rkw26ihcj312vir08jk6yi57ndmb4a4m08ia"))))
712 (build-system gnu-build-system)
713 (arguments
714 `(#:parallel-build? #f
715 #:phases
716 (modify-phases %standard-phases
717 (add-after 'unpack 'replace-bundled-bind
718 (lambda* (#:key inputs native-inputs #:allow-other-keys)
719 ;; XXX TODO: Remove the following invocation of 'patch' when
720 ;; isc-dhcp is updated. It should be needed only for 4.4.1.
721 (let ((patch (string-append (assoc-ref (or native-inputs inputs)
722 "patch")
723 "/bin/patch"))
724 (the-patch (assoc-ref (or native-inputs inputs)
725 "fixes-for-newer-bind.patch")))
726 (format #t "applying '~a'...~%" the-patch)
727 (invoke patch "--force" "--no-backup-if-mismatch"
728 "-p1" "--input" the-patch))
729
730 (delete-file "bind/bind.tar.gz")
731 (copy-file (assoc-ref inputs "bind-source-tarball")
732 "bind/bind.tar.gz")
733 (chmod "bind/bind.tar.gz" #o644)
734 (substitute* "bind/version.tmp"
735 (("^MAJORVER=.*")
736 (format #f "MAJORVER=~a\n" ,bind-major-version))
737 (("^MINORVER=.*")
738 (format #f "MINORVER=~a\n" ,bind-minor-version))
739 (("^PATCHVER=.*")
740 (format #f "PATCHVER=~a\n" ,bind-patch-version))
741 (("^RELEASETYPE=.*")
742 (format #f "RELEASETYPE=~a\n" ,bind-release-type))
743 (("^RELEASEVER=.*")
744 (format #f "RELEASEVER=~a\n" ,bind-release-version)))
745 #t))
746 (add-after 'configure 'post-configure
747 (lambda* (#:key outputs #:allow-other-keys)
748 ;; Point to the right client script, which will be
749 ;; installed in a later phase.
750 (substitute* "includes/dhcpd.h"
751 (("#define[[:blank:]]+_PATH_DHCLIENT_SCRIPT.*")
752 (let ((out (assoc-ref outputs "out")))
753 (string-append "#define _PATH_DHCLIENT_SCRIPT \""
754 out "/libexec/dhclient-script"
755 "\"\n"))))
756
757 ;; During the 'build' phase, 'bind.tar.gz' is extracted, so
758 ;; we must patch shebangs in there and make sure the right
759 ;; shell is used.
760 (with-directory-excursion "bind"
761 (substitute* "Makefile"
762 (("\\./configure ")
763 (let ((sh (which "sh")))
764 (string-append "./configure CONFIG_SHELL="
765 sh " SHELL=" sh " "))))
766
767 (let ((bind-directory (string-append "bind-" ,bind-version)))
768 (invoke "tar" "xf" "bind.tar.gz")
769 (for-each patch-shebang
770 (find-files bind-directory ".*"))
771 (substitute* (string-append bind-directory "/configure")
772 (("/usr/bin/file")
773 (which "file")))
774 (invoke "tar" "cf" "bind.tar.gz"
775 bind-directory
776 ;; avoid non-determinism in the archive
777 "--sort=name"
778 "--mtime=@0"
779 "--owner=root:0"
780 "--group=root:0")))))
781 (add-after 'install 'post-install
782 (lambda* (#:key inputs outputs #:allow-other-keys)
783 ;; Install the dhclient script for GNU/Linux and make sure
784 ;; if finds all the programs it needs.
785 (let* ((out (assoc-ref outputs "out"))
786 (libexec (string-append out "/libexec"))
787 (coreutils (assoc-ref inputs "coreutils"))
788 (inetutils (assoc-ref inputs "inetutils"))
789 (net-tools (assoc-ref inputs "net-tools"))
790 (sed (assoc-ref inputs "sed")))
791 (substitute* "client/scripts/linux"
792 (("/sbin/ip")
793 (string-append (assoc-ref inputs "iproute")
794 "/sbin/ip")))
795
796 (mkdir-p libexec)
797 (copy-file "client/scripts/linux"
798 (string-append libexec "/dhclient-script"))
799
800 (wrap-program
801 (string-append libexec "/dhclient-script")
802 `("PATH" ":" prefix
803 ,(map (lambda (dir)
804 (string-append dir "/bin:"
805 dir "/sbin"))
806 (list inetutils net-tools coreutils sed))))
807 #t))))))
808
809 (native-inputs
810 `(("perl" ,perl)
811 ("file" ,file)
812
813 ;; XXX TODO: Remove the following patch, and also the 'patch'
814 ;; program, when isc-dhcp is updated.
815 ("fixes-for-newer-bind.patch"
816 ,(search-patch "isc-dhcp-4.4.1-fixes-for-newer-bind.patch"))
817 ("patch" ,patch)))
818
819 (inputs `(("inetutils" ,inetutils)
820 ("net-tools" ,net-tools)
821 ("iproute" ,iproute)
822
823 ;; XXX isc-dhcp bundles a copy of bind that has security
824 ;; flaws, so we use a newer version.
825 ("bind-source-tarball"
826 ,(origin
827 (method url-fetch)
828 (uri (string-append "https://ftp.isc.org/isc/bind9/"
829 bind-version
830 "/bind-" bind-version ".tar.gz"))
831 (sha256
832 (base32
833 "0swavslyli3vcrkcm2ip11s6p58g3k7r4gjs2b899r25cqrk0lk1"))))
834
835 ;; When cross-compiling, we need the cross Coreutils and sed.
836 ;; Otherwise just use those from %FINAL-INPUTS.
837 ,@(if (%current-target-system)
838 `(("coreutils" ,coreutils)
839 ("sed" ,sed))
840 '())))
841
842 (home-page "https://www.isc.org/products/DHCP/")
843 (synopsis "Dynamic Host Configuration Protocol (DHCP) tools")
844 (description
845 "ISC's Dynamic Host Configuration Protocol (DHCP) distribution provides a
846 reference implementation of all aspects of DHCP, through a suite of DHCP
847 tools: server, client, and relay agent.")
848 (license license:mpl2.0)
849 (properties '((cpe-name . "dhcp"))))))
850
851 (define-public libpcap
852 (package
853 (name "libpcap")
854 (version "1.9.1")
855 (source (origin
856 (method url-fetch)
857 (uri (string-append "https://www.tcpdump.org/release/libpcap-"
858 version ".tar.gz"))
859 (sha256
860 (base32
861 "153h1378diqyc27jjgz6gg5nxmb4ddk006d9xg69nqavgiikflk3"))))
862 (build-system gnu-build-system)
863 (native-inputs
864 `(("bison" ,bison)
865 ("flex" ,flex)))
866 (arguments
867 ;; There are some tests in testprogs/, but no automated test suite.
868 '(#:tests? #f))
869 (home-page "https://www.tcpdump.org")
870 (synopsis "Network packet capture library")
871 (description
872 "libpcap is an interface for user-level packet capture. It provides a
873 portable framework for low-level network monitoring. Applications include
874 network statistics collection, security monitoring, network debugging, etc.")
875 (license (list license:bsd-4 ; fad-*.c and several other source files
876 license:bsd-3 ; pcap/, sockutils.* & others
877 license:bsd-2)))) ; the rest
878
879 (define-public tcpdump
880 (package
881 (name "tcpdump")
882 (version "4.9.3")
883 (source (origin
884 (method url-fetch)
885 (uri (string-append "https://www.tcpdump.org/release/tcpdump-"
886 version ".tar.gz"))
887 (sha256
888 (base32
889 "0434vdcnbqaia672rggjzdn4bb8p8dchz559yiszzdk0sjrprm1c"))))
890 (build-system gnu-build-system)
891 (inputs `(("libpcap" ,libpcap)
892 ("openssl" ,openssl)))
893 (native-inputs `(("perl" ,perl))) ; for tests
894 (home-page "https://www.tcpdump.org/")
895 (synopsis "Network packet analyzer")
896 (description
897 "Tcpdump is a command-line tool to analyze network traffic passing
898 through the network interface controller.")
899 (license license:bsd-3)))
900
901 (define-public jnettop
902 (package
903 (name "jnettop")
904 (version "0.13.0")
905 (source (origin
906 (method url-fetch)
907 (uri
908 (string-append "https://web.archive.org/web/20161221100811/"
909 "http://jnettop.kubs.info/dist/jnettop-"
910 version ".tar.gz"))
911 (sha256
912 (base32
913 "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9"))))
914 (build-system gnu-build-system)
915 (native-inputs
916 `(("pkg-config" ,pkg-config)))
917 (inputs
918 `(("glib" ,glib)
919 ("ncurses" ,ncurses)
920 ("libpcap" ,libpcap)))
921 (home-page
922 "https://web.archive.org/web/20160703195221/http://jnettop.kubs.info/wiki/")
923 (synopsis "Visualize network traffic by bandwidth use")
924 (description
925 "Jnettop is a traffic visualiser, which captures traffic going
926 through the host it is running from and displays streams sorted
927 by bandwidth they use.")
928 (license license:gpl2+)))
929
930 (define-public clusterssh
931 (package
932 (name "clusterssh")
933 (version "4.13.2")
934 (source (origin
935 (method url-fetch)
936 (uri (string-append "mirror://sourceforge/clusterssh/"
937 "2.%20ClusterSSH%20Series%204/"
938 "App-ClusterSSH-v" version ".tar.gz"))
939 (sha256
940 (base32
941 "0rmk2p3f2wz1h092anidjclh212rv3gxyk0c641qk3frlrjnw6mp"))))
942 (build-system perl-build-system)
943 (arguments
944 `(#:phases
945 (modify-phases %standard-phases
946 (add-after 'unpack 'refer-to-inputs
947 (lambda* (#:key inputs #:allow-other-keys)
948 (substitute* (list "lib/App/ClusterSSH/Config.pm"
949 "t/15config.t")
950 (("xterm")
951 (which "xterm")))
952 #t))
953 (add-before 'check 'delete-failing-tests
954 (lambda _
955 ;; This checks whether all code is nicely formatted. The above
956 ;; ‘refer-to-inputs’ phase breaks this pedantry, so disable it.
957 (delete-file "t/perltidy.t")
958 ;; Update the manifest so t/manifest.t happily passes.
959 (substitute* "MANIFEST"
960 (("t/perltidy.t\n") ""))
961 #t))
962 (add-after 'install 'augment-library-path
963 (lambda* (#:key inputs outputs #:allow-other-keys)
964 (let* ((out (assoc-ref outputs "out"))
965 (bin (string-append out "/bin")))
966 (with-directory-excursion bin
967 (for-each
968 (lambda (program)
969 (wrap-program program
970 `("PERL5LIB" ":" prefix
971 ,(map (lambda (file-name)
972 (string-append file-name
973 "/lib/perl5/site_perl"))
974 (cons out
975 (map (lambda (input)
976 (assoc-ref inputs input))
977 ;; These may be propagated and hence
978 ;; not explicitly listed as inputs.
979 (list "perl-class-data-inheritable"
980 "perl-devel-stacktrace"
981 "perl-exception-class"
982 "perl-tk"
983 "perl-try-tiny"
984 "perl-x11-protocol"
985 "perl-x11-protocol-other")))))))
986 (find-files "." ".*")))
987 #t))))))
988 (native-inputs
989 `(("perl-cpan-changes" ,perl-cpan-changes)
990 ("perl-file-slurp" ,perl-file-slurp)
991 ("perl-file-which" ,perl-file-which)
992 ("perl-module-build" ,perl-module-build)
993 ("perl-readonly" ,perl-readonly)
994 ("perl-test-differences" ,perl-test-differences)
995 ("perl-test-distmanifest" ,perl-test-distmanifest)
996 ("perl-test-perltidy" ,perl-test-perltidy)
997 ("perl-test-pod" ,perl-test-pod)
998 ("perl-test-pod-coverage" ,perl-test-pod-coverage)
999 ("perl-test-trap" ,perl-test-trap)
1000 ("perltidy" ,perltidy)))
1001 (inputs
1002 `(("perl-exception-class" ,perl-exception-class)
1003 ("perl-sort-naturally" ,perl-sort-naturally)
1004 ("perl-tk" ,perl-tk)
1005 ("perl-try-tiny" ,perl-try-tiny)
1006 ("perl-x11-protocol" ,perl-x11-protocol)
1007 ("perl-x11-protocol-other" ,perl-x11-protocol-other)
1008 ("xterm" ,xterm)))
1009 ;; The clusterssh.sourceforge.net address requires login to view
1010 (home-page "https://sourceforge.net/projects/clusterssh/")
1011 (synopsis "Secure concurrent multi-server terminal control")
1012 (description
1013 "ClusterSSH controls a number of xterm windows via a single graphical
1014 console window to allow commands to be interactively run on multiple servers
1015 over ssh connections.")
1016 (license license:gpl2+)))
1017
1018 (define-public rename
1019 (package
1020 (name "rename")
1021 (version "1.10")
1022 (source (origin
1023 (method url-fetch)
1024 (uri (string-append
1025 "mirror://cpan/authors/id/R/RM/RMBARKER/File-Rename-"
1026 version ".tar.gz"))
1027 (sha256
1028 (base32
1029 "137m8s06r4n038ivlr5r1d9a7q9l7shmwpvnyx053r9ndhvbnkh5"))))
1030 (build-system perl-build-system)
1031 (arguments
1032 `(#:phases
1033 (modify-phases %standard-phases
1034 (add-after 'install 'find-itself
1035 ;; Fix run-time 'Can't locate File/Rename.pm in @INC' failure.
1036 (lambda* (#:key outputs #:allow-other-keys)
1037 (let* ((out (assoc-ref outputs "out"))
1038 (bin (string-append out "/bin")))
1039 (with-directory-excursion bin
1040 (for-each
1041 (lambda (program)
1042 (wrap-program program
1043 `("PERL5LIB" ":" prefix
1044 (,(string-append out "/lib/perl5/site_perl")))))
1045 (find-files "." ".*")))
1046 #t))))))
1047 (native-inputs
1048 `(("perl-module-build" ,perl-module-build)
1049 ("perl-test-pod" ,perl-test-pod)
1050 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1051 (home-page "https://metacpan.org/pod/distribution/File-Rename/rename.PL")
1052 (synopsis "Perl extension for renaming multiple files")
1053 (description
1054 "This package provides a Perl interface (@code{Perl::Rename}) as well
1055 as a command-line utility (@command{rename}) that can rename multiple files
1056 at once based on a Perl regular expression.")
1057 (license license:perl-license)))
1058
1059 (define-public rottlog
1060 (package
1061 (name "rottlog")
1062 (version "0.72.2")
1063 (source (origin
1064 (method url-fetch)
1065 (uri (string-append "mirror://gnu/rottlog/rottlog-"
1066 version ".tar.gz"))
1067 (sha256
1068 (base32
1069 "0751mb9l2f0jrk3vj6q8ilanifd121dliwk0c34g8k0dlzsv3kd7"))
1070 (modules '((guix build utils)))
1071 (snippet
1072 '(begin
1073 (substitute* "Makefile.in"
1074 (("-o \\$\\{LOG_OWN\\} -g \\$\\{LOG_GROUP\\}")
1075 ;; Don't try to chown root.
1076 "")
1077 (("mkdir -p \\$\\(ROTT_STATDIR\\)")
1078 ;; Don't attempt to create /var/lib/rottlog.
1079 "true"))
1080 #t))))
1081 (build-system gnu-build-system)
1082 (arguments
1083 '(#:configure-flags (list "ROTT_ETCDIR=/etc/rottlog" ;rc file location
1084 "--localstatedir=/var")
1085
1086 ;; Install example config files in OUT/etc.
1087 #:make-flags (list (string-append "ROTT_ETCDIR="
1088 (assoc-ref %outputs "out")
1089 "/etc"))
1090
1091 #:phases (modify-phases %standard-phases
1092 (add-after 'unpack 'patch-paths
1093 (lambda _
1094 (substitute* "rc/rc"
1095 (("/usr/sbin/sendmail") "sendmail"))
1096 #t))
1097 (add-after 'build 'set-packdir
1098 (lambda _
1099 ;; Set a default location for archived logs.
1100 (substitute* "rc/rc"
1101 (("packdir=\"\"")
1102 "packdir=\"/var/log\""))
1103 #t))
1104 (add-before 'install 'tweak-rc-weekly
1105 (lambda _
1106 (substitute* "rc/weekly"
1107 (("/bin/kill")
1108 (which "kill"))
1109 (("syslogd\\.pid")
1110 ;; The file is called 'syslog.pid' (no 'd').
1111 "syslog.pid"))
1112 #t))
1113 (add-after 'install 'install-info
1114 (lambda _
1115 (invoke "make" "install-info"))))))
1116 (native-inputs `(("texinfo" ,texinfo)
1117 ("util-linux" ,util-linux))) ; for 'cal'
1118 (home-page "https://www.gnu.org/software/rottlog/")
1119 (synopsis "Log rotation and management")
1120 (description
1121 "GNU Rot[t]log is a program for managing log files. It is used to
1122 automatically rotate out log files when they have reached a given size or
1123 according to a given schedule. It can also be used to automatically compress
1124 and archive such logs. Rot[t]log will mail reports of its activity to the
1125 system administrator.")
1126 (license license:gpl3+)))
1127
1128 (define-public sudo
1129 (package
1130 (name "sudo")
1131 (version "1.8.28")
1132 (source (origin
1133 (method url-fetch)
1134 (uri
1135 (list (string-append "https://www.sudo.ws/sudo/dist/sudo-"
1136 version ".tar.gz")
1137 (string-append "ftp://ftp.sudo.ws/pub/sudo/OLD/sudo-"
1138 version ".tar.gz")))
1139 (sha256
1140 (base32
1141 "188k3w67aflbmi4b5z23pxrvzfcfndi22b84w86gzjh8b9sglaci"))
1142 (modules '((guix build utils)))
1143 (snippet
1144 '(begin
1145 (delete-file-recursively "lib/zlib")
1146 #t))))
1147 (build-system gnu-build-system)
1148 (arguments
1149 `(#:configure-flags
1150 (list "--with-logpath=/var/log/sudo.log"
1151 "--with-rundir=/var/run/sudo" ; must be cleaned up at boot time
1152 "--with-vardir=/var/db/sudo"
1153 "--with-iologdir=/var/log/sudo-io"
1154
1155 ;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
1156 ;; provide it.
1157 (string-append "CPPFLAGS=-D_PATH_MV='\""
1158 (assoc-ref %build-inputs "coreutils")
1159 "/bin/mv\"'"))
1160
1161 ;; Avoid non-determinism; see <http://bugs.gnu.org/21918>.
1162 #:parallel-build? #f
1163
1164 #:phases
1165 (modify-phases %standard-phases
1166 (add-before 'configure 'pre-configure
1167 (lambda _
1168 (substitute* "src/sudo_usage.h.in"
1169 ;; Do not capture 'configure' arguments since we would
1170 ;; unduly retain references, and also because the
1171 ;; CPPFLAGS above would close the string literal
1172 ;; prematurely.
1173 (("@CONFIGURE_ARGS@") "\"\""))
1174 (substitute* (find-files "." "Makefile\\.in")
1175 (("-o [[:graph:]]+ -g [[:graph:]]+")
1176 ;; Allow installation as non-root.
1177 "")
1178 (("^install: (.*)install-sudoers(.*)" _ before after)
1179 ;; Don't try to create /etc/sudoers.
1180 (string-append "install: " before after "\n"))
1181 (("\\$\\(DESTDIR\\)\\$\\(rundir\\)")
1182 ;; Don't try to create /run/sudo.
1183 "$(TMPDIR)/dummy")
1184 (("\\$\\(DESTDIR\\)\\$\\(vardir\\)")
1185 ;; Don't try to create /var/db/sudo.
1186 "$(TMPDIR)/dummy"))
1187 #t)))
1188
1189 ;; XXX: The 'testsudoers' test series expects user 'root' to exist, but
1190 ;; the chroot's /etc/passwd doesn't have it. Turn off the tests.
1191 #:tests? #f))
1192 (inputs
1193 `(("groff" ,groff)
1194 ("linux-pam" ,linux-pam)
1195 ("zlib" ,zlib)
1196 ("coreutils" ,coreutils)))
1197 (home-page "https://www.sudo.ws/")
1198 (synopsis "Run commands as root")
1199 (description
1200 "Sudo (su \"do\") allows a system administrator to delegate authority to
1201 give certain users (or groups of users) the ability to run some (or all)
1202 commands as root or another user while providing an audit trail of the
1203 commands and their arguments.")
1204
1205 ;; See <http://www.sudo.ws/sudo/license.html>.
1206 (license license:x11)))
1207
1208 (define-public wpa-supplicant-minimal
1209 (package
1210 (name "wpa-supplicant-minimal")
1211 (version "2.9")
1212 (source (origin
1213 (method url-fetch)
1214 (uri (string-append
1215 "https://w1.fi/releases/wpa_supplicant-"
1216 version ".tar.gz"))
1217 (sha256
1218 (base32
1219 "05qzak1mssnxcgdrafifxh9w86a4ha69qabkg4bsigk499xyxggw"))
1220 (modules '((guix build utils)))
1221 (snippet
1222 '(begin
1223 (substitute* "wpa_supplicant/defconfig"
1224 ;; Disable D-Bus to save ~14MiB on the closure size.
1225 (("^CONFIG_CTRL_IFACE_DBUS" line _)
1226 (string-append "#" line)))
1227 #t))))
1228 (build-system gnu-build-system)
1229 (arguments
1230 '(#:phases
1231 (modify-phases %standard-phases
1232 (replace 'configure
1233 (lambda* (#:key outputs #:allow-other-keys)
1234 (chdir "wpa_supplicant")
1235 (copy-file "defconfig" ".config")
1236 (let ((port (open-file ".config" "al")))
1237 (display "
1238 CONFIG_DEBUG_SYSLOG=y
1239
1240 CONFIG_TLS=openssl
1241
1242 CONFIG_DRIVER_NL80211=y
1243 CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
1244 CONFIG_LIBNL32=y
1245 CONFIG_READLINE=y\n" port)
1246 (close-port port))
1247 #t))
1248 (add-after 'install 'install-documentation
1249 (lambda* (#:key outputs #:allow-other-keys)
1250 (let* ((out (assoc-ref outputs "out"))
1251 (doc (string-append out "/share/doc/wpa-supplicant"))
1252 (man (string-append out "/share/man"))
1253 (man5 (string-append man "/man5"))
1254 (man8 (string-append man "/man8")))
1255 (define (copy-man-page target)
1256 (lambda (file)
1257 (install-file file target)))
1258
1259 (mkdir-p man5) (mkdir man8)
1260 (for-each (copy-man-page man5)
1261 (find-files "doc/docbook" "\\.5"))
1262 (for-each (copy-man-page man8)
1263 (find-files "doc/docbook" "\\.8"))
1264
1265 ;; wpa_supplicant.conf(5) does not explain all configuration
1266 ;; options but refers to the example config file, so install it
1267 ;; along with READMEs.
1268 (for-each (lambda (file)
1269 (install-file file doc))
1270 '("README" "README-DPP" "README-HS20"
1271 "README-P2P" "README-WPS"
1272 "wpa_supplicant.conf"))
1273 #t))))
1274
1275 #:make-flags (list "CC=gcc"
1276 (string-append "BINDIR=" (assoc-ref %outputs "out")
1277 "/sbin")
1278 (string-append "LIBDIR=" (assoc-ref %outputs "out")
1279 "/lib"))
1280 #:tests? #f))
1281 (inputs
1282 `(("readline" ,readline)
1283 ("libnl" ,libnl)
1284 ("openssl" ,openssl)))
1285 (native-inputs
1286 `(("pkg-config" ,pkg-config)))
1287 (home-page "https://w1.fi/wpa_supplicant/")
1288 (synopsis "Connecting to WPA and WPA2-protected wireless networks")
1289 (description
1290 "wpa_supplicant is a WPA Supplicant with support for WPA and WPA2 (IEEE
1291 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in
1292 the client stations. It implements key negotiation with a WPA Authenticator
1293 and it controls the roaming and IEEE 802.11 authentication/association of the
1294 WLAN driver.
1295
1296 This package provides the @code{wpa_supplicant} daemon and the @code{wpa_cli}
1297 command.")
1298
1299 ;; In practice, this is linked against Readline, which makes it GPLv3+.
1300 (license license:bsd-3)
1301
1302 (properties `((cpe-name . "wpa_supplicant")))))
1303
1304 (define-public wpa-supplicant
1305 (package (inherit wpa-supplicant-minimal)
1306 (name "wpa-supplicant")
1307 (inputs `(("dbus" ,dbus)
1308 ,@(package-inputs wpa-supplicant-minimal)))
1309 (arguments
1310 (substitute-keyword-arguments (package-arguments wpa-supplicant-minimal)
1311 ((#:phases phases)
1312 `(modify-phases ,phases
1313 (add-after 'configure 'configure-for-dbus
1314 (lambda _
1315 (let ((port (open-file ".config" "al")))
1316 (display "
1317 CONFIG_CTRL_IFACE_DBUS_NEW=y
1318 CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
1319 (close-port port))
1320 #t))
1321 (add-after 'install-documentation 'install-dbus-conf
1322 (lambda* (#:key outputs #:allow-other-keys)
1323 (let* ((out (assoc-ref outputs "out"))
1324 (dir (string-append out "/etc/dbus-1/system.d")))
1325 (mkdir-p dir)
1326 (copy-file "dbus/dbus-wpa_supplicant.conf"
1327 (string-append dir "/wpa_supplicant.conf")))
1328 #t))))))))
1329
1330 (define-public wpa-supplicant-gui
1331 (package
1332 (inherit wpa-supplicant)
1333 (name "wpa-supplicant-gui")
1334 (inputs `(("qtbase" ,qtbase)
1335 ("qtsvg" ,qtsvg)
1336 ,@(package-inputs wpa-supplicant)))
1337 (native-inputs
1338 ;; For icons.
1339 `(("imagemagick" ,imagemagick)
1340 ("inkscape" ,inkscape)
1341 ,@(package-native-inputs wpa-supplicant)))
1342 (arguments
1343 `(#:phases (modify-phases %standard-phases
1344 (add-after 'unpack 'chdir
1345 (lambda _
1346 (chdir "wpa_supplicant/wpa_gui-qt4")
1347 #t))
1348 (delete 'configure)
1349 (replace 'build
1350 (lambda _
1351 (invoke "qmake" "wpa_gui.pro")
1352 (invoke "make" "-j" (number->string (parallel-job-count)))
1353 (invoke "make" "-C" "icons")))
1354 (replace 'install
1355 (lambda* (#:key inputs outputs #:allow-other-keys)
1356 (let ((out (assoc-ref outputs "out"))
1357 (qt '("qtbase" "qtsvg")))
1358 (install-file "wpa_gui" (string-append out "/bin"))
1359 (install-file "wpa_gui.desktop"
1360 (string-append out "/share/applications"))
1361 (copy-recursively "icons/hicolor"
1362 (string-append out "/share/icons/hicolor"))
1363 (wrap-program (string-append out "/bin/wpa_gui")
1364 `("QT_PLUGIN_PATH" ":" prefix
1365 ,(map (lambda (label)
1366 (string-append (assoc-ref inputs label)
1367 "/lib/qt5/plugins/"))
1368 qt)))
1369 #t))))))
1370 (synopsis "Graphical user interface for WPA supplicant")))
1371
1372 (define-public hostapd
1373 (package
1374 (name "hostapd")
1375 (version "2.8")
1376 (source (origin
1377 (method url-fetch)
1378 (uri (string-append "https://w1.fi/releases/hostapd-" version
1379 ".tar.gz"))
1380 (sha256
1381 (base32
1382 "1c74rrazkhy4lr7pwgwa2igzca7h9l4brrs7672kiv7fwqmm57wj"))))
1383 (build-system gnu-build-system)
1384 (arguments
1385 '(#:phases
1386 (modify-phases %standard-phases
1387 (replace 'configure
1388 (lambda* (#:key outputs #:allow-other-keys)
1389 ;; This is mostly copied from 'wpa-supplicant' above.
1390 (chdir "hostapd")
1391 (copy-file "defconfig" ".config")
1392 (let ((port (open-file ".config" "al")))
1393 (display "
1394 CONFIG_LIBNL32=y
1395 CONFIG_IEEE80211R=y
1396 CONFIG_IEEE80211N=y
1397 CONFIG_IEEE80211AC=y\n" port)
1398 (close-port port))
1399 #t))
1400 (add-after 'install 'install-man-pages
1401 (lambda* (#:key outputs #:allow-other-keys)
1402 (let* ((out (assoc-ref outputs "out"))
1403 (man (string-append out "/share/man"))
1404 (man1 (string-append man "/man1"))
1405 (man8 (string-append man "/man8")))
1406 (define (copy-man-page target)
1407 (lambda (file)
1408 (install-file file target)))
1409
1410 (for-each (copy-man-page man1)
1411 (find-files "." "\\.1"))
1412 (for-each (copy-man-page man8)
1413 (find-files "." "\\.8"))
1414 #t))))
1415
1416 #:make-flags (list "CC=gcc"
1417 (string-append "BINDIR=" (assoc-ref %outputs "out")
1418 "/sbin")
1419 (string-append "LIBDIR=" (assoc-ref %outputs "out")
1420 "/lib"))
1421 #:tests? #f))
1422 (native-inputs `(("pkg-config" ,pkg-config)))
1423
1424 ;; There's an optional dependency on SQLite.
1425 (inputs `(("openssl" ,openssl)
1426 ("libnl" ,libnl)))
1427 (home-page "https://w1.fi/hostapd/")
1428 (synopsis "Daemon for Wi-Fi access points and authentication servers")
1429 (description
1430 "hostapd is a user-space daemon for WiFi access points and authentication
1431 servers. It implements IEEE 802.11 access point management, IEEE
1432 802.1X/WPA/WPA2/EAP Authenticators, RADIUS client, EAP server, and RADIUS
1433 authentication server.")
1434
1435 ;; Same license as wpa_supplicant.
1436 (license license:bsd-3)))
1437
1438 (define-public wakelan
1439 (package
1440 (name "wakelan")
1441 (version "1.1")
1442 (source (origin
1443 (method url-fetch)
1444 (uri (string-append
1445 "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
1446 version ".tar.gz"))
1447 (sha256
1448 (base32
1449 "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
1450 (build-system gnu-build-system)
1451 (arguments
1452 '(#:phases
1453 (modify-phases %standard-phases
1454 (replace 'configure
1455 (lambda* (#:key outputs #:allow-other-keys)
1456 (let ((out (assoc-ref outputs "out")))
1457 (mkdir-p (string-append out "/bin"))
1458 (mkdir-p (string-append out "/share/man/man1"))
1459
1460 ;; It's an old configure script that doesn't understand
1461 ;; the extra options we pass.
1462 (setenv "CONFIG_SHELL" (which "bash"))
1463 (invoke "./configure"
1464 (string-append "--prefix=" out)
1465 (string-append "--mandir=" out
1466 "/share/man"))))))
1467 #:tests? #f))
1468 (home-page "https://www.kernel.org") ; really, no home page
1469 (synopsis "Send a wake-on-LAN packet")
1470 (description
1471 "WakeLan broadcasts a properly formatted UDP packet across the local area
1472 network, which causes enabled computers to power on.")
1473 (license license:gpl2+)))
1474
1475 (define-public dmidecode
1476 (package
1477 (name "dmidecode")
1478 (version "3.2")
1479 (source (origin
1480 (method url-fetch)
1481 (uri (string-append
1482 "mirror://savannah/dmidecode/dmidecode-"
1483 version ".tar.xz"))
1484 (sha256
1485 (base32
1486 "1pcfhcgs2ifdjwp7amnsr3lq95pgxpr150bjhdinvl505px0cw07"))))
1487 (build-system gnu-build-system)
1488 (arguments
1489 '(#:phases (modify-phases %standard-phases (delete 'configure))
1490 #:tests? #f ; no 'check' target
1491 #:make-flags (list (string-append "prefix="
1492 (assoc-ref %outputs "out")))))
1493 (home-page "https://www.nongnu.org/dmidecode/")
1494 (synopsis "Read hardware information from the BIOS")
1495 (description
1496 "Dmidecode reports information about your system's hardware as described
1497 in your system BIOS according to the SMBIOS/DMI standard. This typically
1498 includes system manufacturer, model name, serial number, BIOS version, asset
1499 tag as well as a lot of other details of varying level of interest and
1500 reliability depending on the manufacturer. This will often include usage
1501 status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory
1502 module slots, and the list of I/O ports (e.g. serial, parallel, USB).")
1503 (license license:gpl2+)))
1504
1505 (define-public acpica
1506 (package
1507 (name "acpica")
1508 (version "20190816")
1509 (source (origin
1510 (method url-fetch)
1511 (uri (string-append
1512 "https://acpica.org/sites/acpica/files/acpica-unix2-"
1513 version ".tar.gz"))
1514 (sha256
1515 (base32
1516 "0lipy3jwl498lvgwzj6xcvmg61myl7hhilpallh1cf3ppgrq13l8"))))
1517 (build-system gnu-build-system)
1518 (native-inputs `(("flex" ,flex)
1519 ("bison" ,bison)))
1520 (arguments
1521 '(#:make-flags (list (string-append "PREFIX=" %output)
1522 "CC=gcc"
1523 "HOST=_LINUX"
1524 "OPT_CFLAGS=-Wall -fno-strict-aliasing")
1525 #:tests? #f ; no 'check' target
1526 #:phases (modify-phases %standard-phases (delete 'configure))))
1527 (home-page "https://acpica.org/")
1528 (synopsis "Tools for the development and debug of ACPI tables")
1529 (description
1530 "The ACPI Component Architecture (@dfn{ACPICA}) project provides an
1531 OS-independent reference implementation of the Advanced Configuration and
1532 Power Interface Specification (@dfn{ACPI}). ACPICA code contains those portions
1533 of ACPI meant to be directly integrated into the host OS as a kernel-resident
1534 subsystem, and a small set of tools to assist in developing and debugging ACPI
1535 tables. This package contains only the user-space tools needed for ACPI table
1536 development, not the kernel implementation of ACPI.")
1537 (license license:gpl2))) ; dual GPLv2/ACPICA Licence
1538
1539 (define-public s-tui
1540 (package
1541 (name "s-tui")
1542 (version "0.8.3")
1543 (source
1544 (origin
1545 (method url-fetch)
1546 (uri (pypi-uri "s-tui" version))
1547 (sha256
1548 (base32
1549 "00lsh2v4i8rwfyjyxx5lijd6rnk9smcfffhzg5sv94ijpcnh216m"))))
1550 (build-system python-build-system)
1551 (inputs
1552 `(("python-psutil" ,python-psutil)
1553 ("python-urwid" ,python-urwid)))
1554 (home-page "https://github.com/amanusk/s-tui")
1555 (synopsis "Interactive terminal stress test and monitoring tool")
1556 (description
1557 "The Stress Terminal UI displays graphs of the CPU frequency,
1558 utilization, temperature and power.")
1559 (license license:gpl2+)))
1560
1561 (define-public stress
1562 (package
1563 (name "stress")
1564 (version "1.0.4")
1565 (source (origin
1566 (method url-fetch)
1567 (uri (string-append "mirror://debian/pool/main/s/stress/stress_"
1568 version ".orig.tar.gz"))
1569 (sha256
1570 (base32
1571 "0nw210jajk38m3y7h8s130ps2qsbz7j75wab07hi2r3hlz14yzh5"))))
1572 (build-system gnu-build-system)
1573 (home-page "https://packages.debian.org/sid/stress")
1574 (synopsis "Impose load on and stress test a computer system")
1575 (description
1576 "Stress is a tool that imposes a configurable amount of CPU, memory, I/O,
1577 or disk stress on a POSIX-compliant operating system and reports any errors it
1578 detects.
1579
1580 Stress is not a benchmark. It is a tool used by system administrators to
1581 evaluate how well their systems will scale, by kernel programmers to evaluate
1582 perceived performance characteristics, and by systems programmers to expose
1583 the classes of bugs which only or more frequently manifest themselves when the
1584 system is under heavy load.")
1585 (license license:gpl2+)))
1586
1587 (define-public detox
1588 (package
1589 (name "detox")
1590 (version "1.3.0")
1591 (source (origin
1592 (method git-fetch)
1593 (uri (git-reference
1594 (url "https://github.com/dharple/detox.git")
1595 (commit (string-append "v" version))))
1596 (sha256
1597 (base32
1598 "1dd608c7g65s5lj02cddvani3q9kzirddgkjqa22ap9d4f8b9xgr"))))
1599 (build-system gnu-build-system)
1600 (native-inputs
1601 `(("autoconf" ,autoconf)
1602 ("automake" ,automake)
1603 ("flex" ,flex)))
1604 (arguments
1605 `(#:tests? #f ;no 'check' target
1606 #:phases (modify-phases %standard-phases
1607 (add-after 'unpack 'delete-configure
1608 ;; The "configure" script is present, but otherwise the
1609 ;; project is not bootstrapped: missing install-sh and
1610 ;; Makefile.in, so delete it so the bootstrap phase will
1611 ;; take over.
1612 (lambda _ (delete-file "configure") #t)))))
1613 (home-page "https://github.com/dharple/detox")
1614 (synopsis "Clean up file names")
1615 (description
1616 "Detox is a program that renames files to make them easier to work with
1617 under Unix and related operating systems. Spaces and various other unsafe
1618 characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1)
1619 characters can be replaced as well, as can UTF-8 characters.")
1620 (license license:bsd-3)))
1621
1622 (define-public testdisk
1623 (package
1624 (name "testdisk")
1625 (version "7.1")
1626 (source (origin
1627 (method url-fetch)
1628 (uri (string-append "https://www.cgsecurity.org/testdisk-"
1629 version ".tar.bz2"))
1630 (sha256
1631 (base32
1632 "1zlh44w67py416hkvw6nrfmjickc2d43v51vcli5p374d5sw84ql"))))
1633 (build-system gnu-build-system)
1634 (inputs
1635 `(("ntfs-3g" ,ntfs-3g)
1636 ("util-linux" ,util-linux)
1637 ("openssl" ,openssl)
1638 ;; FIXME: add reiserfs.
1639 ("zlib" ,zlib)
1640 ("e2fsprogs" ,e2fsprogs)
1641 ("libjpeg" ,libjpeg)
1642 ("ncurses" ,ncurses)))
1643 (home-page "https://www.cgsecurity.org/wiki/TestDisk")
1644 (synopsis "Data recovery tool")
1645 (description
1646 "TestDisk is a program for data recovery, primarily designed to help
1647 recover lost partitions and/or make non-booting disks bootable again.")
1648 (license license:gpl2+)))
1649
1650 (define-public tree
1651 (package
1652 (name "tree")
1653 (version "1.8.0")
1654 (source (origin
1655 (method url-fetch)
1656 (uri (string-append
1657 "http://mama.indstate.edu/users/ice/tree/src/tree-"
1658 version ".tgz"))
1659 (sha256
1660 (base32 "1hmpz6k0mr6salv0nprvm1g0rdjva1kx03bdf1scw8a38d5mspbi"))))
1661 (build-system gnu-build-system)
1662 (arguments
1663 '(#:phases (modify-phases %standard-phases (delete 'configure))
1664 #:tests? #f ; no check target
1665 #:make-flags (let ((out (assoc-ref %outputs "out")))
1666 (list (string-append "prefix=" out)))))
1667 (synopsis "Recursively list the contents of a directory")
1668 (description
1669 "Tree is a recursive directory listing command that produces a depth
1670 indented listing of files, which is colorized ala dircolors if the LS_COLORS
1671 environment variable is set and output is to tty.")
1672 (home-page "http://mama.indstate.edu/users/ice/tree/")
1673 (license license:gpl2+)))
1674
1675 (define-public direvent
1676 (package
1677 (name "direvent")
1678 (version "5.2")
1679 (source (origin
1680 (method url-fetch)
1681 (uri (string-append "mirror://gnu/direvent/direvent-"
1682 version ".tar.gz"))
1683 (sha256
1684 (base32
1685 "0m9vi01b1km0cpknflyzsjnknbava0s1n6393b2bpjwyvb6j5613"))
1686 (modules '((guix build utils)))
1687 (snippet '(begin
1688 (substitute* "tests/testsuite"
1689 (("#![[:blank:]]?/bin/sh")
1690 "#!$SHELL"))
1691 #t))))
1692 (build-system gnu-build-system)
1693 (arguments
1694 '(#:phases
1695 (modify-phases %standard-phases
1696 (add-before 'build 'patch-/bin/sh
1697 (lambda* (#:key inputs #:allow-other-keys)
1698 ;; Use the right shell when executing the watcher and
1699 ;; user-provided shell commands.
1700 (let ((bash (assoc-ref inputs "bash")))
1701 (substitute* '("src/direvent.c" "src/progman.c")
1702 (("\"/bin/sh\"")
1703 (string-append "\"" bash "/bin/sh\"")))
1704
1705 ;; Adjust the 'shell.at' test accordingly.
1706 (substitute* "tests/testsuite"
1707 (("SHELL=/bin/sh")
1708 (string-append "SHELL=" bash "/bin/sh")))
1709
1710 #t))))))
1711 (home-page "https://www.gnu.org/software/direvent/")
1712 (synopsis "Daemon to monitor directories for events such as file removal")
1713 (description
1714 "A daemon that monitors directories for events, such as creating,
1715 deleting or modifying files. It can monitor different sets of directories for
1716 different events. When an event is detected, direvent calls a specified
1717 external program with information about the event, such as the location
1718 within the file system where it occurred. Thus, \"direvent\" provides an
1719 easy way to react immediately if given files undergo changes, for example, to
1720 track changes in important system configuration files.")
1721 (license license:gpl3+)))
1722
1723 (define-public libcap-ng
1724 (package
1725 (name "libcap-ng")
1726 (version "0.7.10")
1727 (source (origin
1728 (method url-fetch)
1729 (uri (string-append
1730 "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-"
1731 version ".tar.gz"))
1732 (sha256
1733 (base32
1734 "1gzzy12agfa9ddipdf72h9y68zqqnvsjjylv4vnq6hj4w2safk58"))))
1735 (build-system gnu-build-system)
1736 (arguments
1737 `(#:configure-flags
1738 (list "--without-python")))
1739 (home-page "https://people.redhat.com/sgrubb/libcap-ng/")
1740 (synopsis "Library for more easily working with POSIX capabilities")
1741 (description
1742 "The libcap-ng library is intended to make programming with POSIX
1743 capabilities easier than the traditional libcap library. It includes
1744 utilities that can analyse all currently running applications and print out
1745 any capabilities and whether or not it has an open ended bounding set. The
1746 included utilities are designed to let admins and developers spot apps from
1747 various ways that may be running with too much privilege.")
1748 ;; The library is lgpl2.1+, but also ships some utils which are gpl2+.
1749 (license (list license:lgpl2.1+ license:gpl2+))))
1750
1751 (define-public smartmontools
1752 (package
1753 (name "smartmontools")
1754 (version "7.0")
1755 (source (origin
1756 (method url-fetch)
1757 (uri (string-append
1758 "mirror://sourceforge/smartmontools/smartmontools/"
1759 version "/smartmontools-" version ".tar.gz"))
1760 (sha256
1761 (base32
1762 "077nx2rn9szrg6isdh0938zbp7vr3dsyxl4jdyyzv1xwhqksrqg5"))))
1763 (build-system gnu-build-system)
1764 (inputs `(("libcap-ng" ,libcap-ng)))
1765 (home-page "https://www.smartmontools.org/")
1766 (synopsis "S.M.A.R.T. harddisk control and monitoring tools")
1767 (description
1768 "The smartmontools package contains utility programs to control and
1769 monitor storage systems using the Self-Monitoring, Analysis and Reporting
1770 Technology System (@dfn{S.M.A.R.T.}) built into most modern ATA and SCSI hard
1771 disks. In many cases, these utilities will provide advanced warning of disk
1772 degradation and failure.")
1773 (license license:gpl2+)))
1774
1775 (define-public fdupes
1776 (package
1777 (name "fdupes")
1778 (version "1.6.1")
1779 (source
1780 (origin
1781 (method git-fetch)
1782 (uri (git-reference
1783 (url "https://github.com/adrianlopezroche/fdupes.git")
1784 (commit (string-append "v" version))))
1785 (file-name (git-file-name name version))
1786 (sha256
1787 (base32 "19b6vqblddaw8ccw4sn0qsqzbswlhrz8ia6n4m3hymvcxn8skpz9"))))
1788 (build-system gnu-build-system)
1789 (arguments
1790 '(#:phases (modify-phases %standard-phases
1791 (delete 'configure))
1792 #:tests? #f ; no 'check' target
1793 #:make-flags (list "CC=gcc"
1794 (string-append "PREFIX="
1795 (assoc-ref %outputs "out")))))
1796 (home-page "https://github.com/adrianlopezroche/fdupes")
1797 (synopsis "Identify duplicate files")
1798 (description
1799 "fdupes is a program for identifying duplicate files residing within
1800 specified directories.")
1801 (license license:expat)))
1802
1803 (define-public graphios
1804 (package
1805 (name "graphios")
1806 (version "2.0.3")
1807 (source
1808 (origin
1809 (method url-fetch)
1810 (uri (pypi-uri "graphios" version))
1811 (sha256
1812 (base32
1813 "1h87hvc315wg6lklbf4l7csd3n5pgljwrfli1p3nasdi0izgn66i"))))
1814 (build-system python-build-system)
1815 (arguments
1816 ;; Be warned: Building with Python 3 succeeds, but the build process
1817 ;; throws a syntax error that is ignored.
1818 `(#:python ,python-2
1819 #:phases
1820 (modify-phases %standard-phases
1821 (add-before 'build 'fix-setup.py
1822 (lambda* (#:key outputs #:allow-other-keys)
1823 ;; Fix hardcoded, unprefixed file names.
1824 (let ((out (assoc-ref outputs "out")))
1825 (substitute* '("setup.py")
1826 (("/etc") (string-append out "/etc"))
1827 (("/usr") out)
1828 (("distro_ver = .*") "distro_ver = ''"))
1829 #t))))))
1830 (home-page "https://github.com/shawn-sterling/graphios")
1831 (synopsis "Emit Nagios metrics to Graphite, Statsd, and Librato")
1832 (description
1833 "Graphios is a script to emit nagios perfdata to various upstream metrics
1834 processing and time-series systems. It's currently compatible with Graphite,
1835 Statsd, Librato and InfluxDB. Graphios can emit Nagios metrics to any number
1836 of supported upstream metrics systems simultaneously.")
1837 (license license:gpl2+)))
1838
1839 (define-public ansible
1840 (package
1841 (name "ansible")
1842 (version "2.8.1")
1843 (source
1844 (origin
1845 (method url-fetch)
1846 (uri (pypi-uri "ansible" version))
1847 (sha256
1848 (base32 "0ia4x17ywym3r1m96ar4h0wc2xlylhbjp6x4wzwkh4p2i0x1vmg1"))))
1849 (build-system python-build-system)
1850 (native-inputs
1851 `(("python-bcrypt" ,python-bcrypt)
1852 ("python-pynacl" ,python-pynacl)
1853 ("python-httplib2" ,python-httplib2)
1854 ("python-passlib" ,python-passlib)
1855 ("python-nose" ,python-nose)
1856 ("python-mock" ,python-mock)
1857 ("python-jinja2" ,python-jinja2)
1858 ("python-pyyaml" ,python-pyyaml)
1859 ("python-paramiko" ,python-paramiko)))
1860 (inputs
1861 `(("python-cryptography" ,python-cryptography)
1862 ("python-jinja2" ,python-jinja2)
1863 ("python-pyyaml" ,python-pyyaml)
1864 ("python-paramiko" ,python-paramiko)))
1865 (arguments
1866 `(#:phases
1867 (modify-phases %standard-phases
1868 ;; Several ansible commands (ansible-config, ansible-console, etc.)
1869 ;; are just symlinks to a single ansible executable. The ansible
1870 ;; executable behaves differently based on the value of
1871 ;; sys.argv[0]. This does not work well with our wrap phase, and
1872 ;; therefore the following two phases are required as a workaround.
1873 (add-after 'unpack 'hide-wrapping
1874 (lambda _
1875 ;; Overwrite sys.argv[0] to hide the wrapper script from it.
1876 (substitute* "bin/ansible"
1877 (("import traceback" all)
1878 (string-append all "
1879 import re
1880 sys.argv[0] = re.sub(r'\\.([^/]*)-real$', r'\\1', sys.argv[0])
1881 ")))
1882 #t))
1883 (add-after 'install 'replace-symlinks
1884 (lambda* (#:key outputs #:allow-other-keys)
1885 ;; Replace symlinks with duplicate copies of the ansible
1886 ;; executable.
1887 (let ((out (assoc-ref outputs "out")))
1888 (for-each
1889 (lambda (subprogram)
1890 (delete-file (string-append out "/bin/ansible-" subprogram))
1891 (copy-file (string-append out "/bin/ansible")
1892 (string-append out "/bin/ansible-" subprogram)))
1893 (list "config" "console" "doc" "galaxy"
1894 "inventory" "playbook" "pull" "vault")))
1895 #t)))))
1896 (home-page "https://www.ansible.com/")
1897 (synopsis "Radically simple IT automation")
1898 (description "Ansible is a radically simple IT automation system. It
1899 handles configuration management, application deployment, cloud provisioning,
1900 ad hoc task execution, and multinode orchestration---including trivializing
1901 things like zero-downtime rolling updates with load balancers.")
1902 (license license:gpl3+)))
1903
1904 (define-public debops
1905 (package
1906 (name "debops")
1907 (version "1.1.0")
1908 (source
1909 (origin
1910 (method git-fetch)
1911 (uri (git-reference
1912 (url "https://github.com/debops/debops")
1913 (commit (string-append "v" version))))
1914 (file-name (git-file-name name version))
1915 (sha256
1916 (base32 "052b2dykdn35pdpn9s4prawl6nl6yzih8nyf54hpvhpisvjrm1v5"))
1917 (patches
1918 (search-patches "debops-constants-for-external-program-names.patch"
1919 "debops-debops-defaults-fall-back-to-less.patch"))))
1920 (build-system python-build-system)
1921 (native-inputs
1922 `(("git" ,git)))
1923 (inputs
1924 `(("ansible" ,ansible)
1925 ("encfs" ,encfs)
1926 ("fuse" ,fuse)
1927 ("util-linux" ,util-linux) ;; for umount
1928 ("findutils" ,findutils)
1929 ("gnupg" ,gnupg)
1930 ("which" ,which)))
1931 (propagated-inputs
1932 `(("python-future" ,python-future)
1933 ("python-distro" ,python-distro)))
1934 (arguments
1935 `(#:tests? #f
1936 #:phases
1937 (modify-phases %standard-phases
1938 (add-after 'unpack 'nuke-debops-update
1939 (lambda _
1940 (chmod "bin/debops-update" #o755) ; FIXME work-around git-fetch issue
1941 (with-output-to-file "bin/debops-update"
1942 (lambda ()
1943 (format #t "#!/bin/sh
1944 echo 'debops is installed via guix. guix-update is useless in this case.
1945 Please use `guix package -u debops` instead.'")))
1946 #t))
1947 ;; patch shebangs only in actuall scripts, not in files included in
1948 ;; roles (which are to be delivered to the targte systems)
1949 (delete `patch-generated-file-shebangs)
1950 (replace 'patch-source-shebangs
1951 (lambda _
1952 (for-each patch-shebang
1953 (find-files "bin"
1954 (lambda (file stat)
1955 ;; Filter out symlinks.
1956 (eq? 'regular (stat:type stat)))
1957 #:stat lstat))))
1958 (add-after 'unpack 'fix-paths
1959 (lambda _
1960 (define (substitute-program-names file)
1961 ;; e.g. ANSIBLE_PLAYBOOK = '/gnu/store/…/bin/ansible-playbook'
1962 (for-each
1963 (lambda (name)
1964 (let ((varname (string-upcase
1965 (string-map
1966 (lambda (c) (if (char=? c #\-) #\_ c))
1967 name))))
1968 (substitute* file
1969 (((string-append "^(" varname " = )'.*'") line prefix)
1970 (string-append prefix "'" (which name) "'")))))
1971 '("ansible-playbook" "encfs" "find" "fusermount"
1972 "umount" "gpg" "ansible" "which")))
1973 (for-each substitute-program-names
1974 '("bin/debops"
1975 "bin/debops-padlock"
1976 "bin/debops-task"
1977 "debops/__init__.py"
1978 "debops/cmds/__init__.py"))
1979 #t)))))
1980 (home-page "https://www.debops.org/")
1981 (synopsis "Collection of general-purpose Ansible roles")
1982 (description "The Ansible roles provided by that can be used to manage
1983 Debian or Ubuntu hosts. In addition, a default set of Ansible playbooks can
1984 be used to apply the provided roles in a controlled way, using Ansible
1985 inventory groups.
1986
1987 The roles are written with a high customization in mind, which can be done
1988 using Ansible inventory. This way the role and playbook code can be shared
1989 between multiple environments, with different configuration in to each one.
1990
1991 Services can be managed on a single host, or spread between multiple hosts.
1992 DebOps provides support for different SQL and NoSQL databases, web servers,
1993 programming languages and specialized applications useful in a data center
1994 environment or in a cluster. The project can also be used to deploy
1995 virtualization environments using KVM/libvirt, Docker or LXC technologies to
1996 manage virtual machines and/or containers.")
1997 (license license:gpl3+)))
1998
1999 (define-public emacs-ansible-doc
2000 (let ((commit "86083a7bb2ed0468ca64e52076b06441a2f8e9e0"))
2001 (package
2002 (name "emacs-ansible-doc")
2003 (version (git-version "0.4" "1" commit))
2004 (source
2005 (origin
2006 (method git-fetch)
2007 (uri (git-reference
2008 (url "https://github.com/lunaryorn/ansible-doc.el")
2009 (commit commit)))
2010 (file-name (git-file-name name version))
2011 (sha256
2012 (base32
2013 "0lap404ch74w99n3xip176jr42b38xhyzkfnkyqg0g3wk2cd3aq8"))))
2014 (build-system emacs-build-system)
2015 ;; Unmaintained by upstream.
2016 (home-page "https://github.com/lunaryorn/ansible-doc.el")
2017 (synopsis "Ansible documentation for Emacs")
2018 (description
2019 "This package provides an Ansible documentation for GNU Emacs.
2020
2021 @code{ansible-doc} allows you to view the documentation of an Ansible
2022 module and @code{ansible-doc-mode} minor mode adds documentation
2023 lookup to YAML Mode. You could enable the mode with @code{(add-hook
2024 'yaml-mode-hook #'ansible-doc-mode)}.")
2025 (license license:gpl3+))))
2026
2027 (define-public cpulimit
2028 (package
2029 (name "cpulimit")
2030 (version "0.2")
2031 (source
2032 (origin
2033 (method git-fetch)
2034 (uri (git-reference
2035 (url "https://github.com/opsengine/cpulimit.git")
2036 (commit (string-append "v" version))))
2037 (file-name (git-file-name name version))
2038 (sha256
2039 (base32 "1dz045yhcsw1rdamzpz4bk8mw888in7fyqk1q1b3m1yk4pd1ahkh"))))
2040 (build-system gnu-build-system)
2041 (arguments
2042 `(#:phases (modify-phases %standard-phases
2043 (delete 'configure)
2044 (replace 'build
2045 (lambda _
2046 (invoke "make" "CC=gcc" "-Csrc")))
2047 (replace 'check
2048 (lambda _
2049 (invoke "make" "CC=gcc" "-Ctests")))
2050 (replace 'install
2051 (lambda* (#:key outputs #:allow-other-keys)
2052 (let* ((out (assoc-ref outputs "out"))
2053 (bin (string-append out "/bin")))
2054 (install-file "src/cpulimit" bin))
2055 #t)))))
2056 (home-page "https://github.com/opsengine/cpulimit")
2057 (synopsis "Limit CPU usage")
2058 (description
2059 "Cpulimit limits the CPU usage of a process. It does not change the nice
2060 value or other scheduling priority settings, but the real CPU usage, and is
2061 able to adapt itself dynamically to the overall system load. Children
2062 processes and threads of the specified process may optionally share the same
2063 limits.")
2064 (license license:gpl2+)))
2065
2066 (define-public autojump
2067 (package
2068 (name "autojump")
2069 (version "22.5.3")
2070 (source
2071 (origin
2072 (method git-fetch)
2073 (uri (git-reference
2074 (url "https://github.com/wting/autojump.git")
2075 (commit (string-append "release-v" version))))
2076 (file-name (git-file-name name version))
2077 (sha256
2078 (base32 "1rgpsh70manr2dydna9da4x7p8ahii7dgdgwir5fka340n1wrcws"))))
2079 (build-system gnu-build-system)
2080 (native-inputs ; for tests
2081 `(("python-mock" ,python-mock)
2082 ("python-pytest" ,python-pytest)))
2083 (inputs
2084 `(("python" ,python-wrapper)))
2085 (arguments
2086 `(#:phases
2087 (modify-phases %standard-phases
2088 (add-after 'unpack 'make-git-checkout-writable
2089 ;; ‘install.py’ modifies files before installing them.
2090 (lambda _
2091 (for-each make-file-writable (find-files "."))
2092 #t))
2093 (delete 'configure)
2094 (delete 'build)
2095 (replace 'check
2096 (lambda _
2097 (invoke "python" "tests/unit/autojump_utils_test.py")))
2098 (replace 'install
2099 (lambda* (#:key outputs #:allow-other-keys)
2100 (setenv "SHELL" (which "bash"))
2101 (invoke "python" "install.py"
2102 (string-append "--destdir="
2103 (assoc-ref outputs "out"))))))))
2104 (home-page "https://github.com/wting/autojump")
2105 (synopsis "Shell extension for file system navigation")
2106 (description
2107 "Autojump provides a faster way to navigate your file system, with a \"cd
2108 command that learns\". It works by maintaining a database of the directories
2109 you use the most from the command line and allows you to \"jump\" to
2110 frequently used directories by typing only a small pattern.")
2111 (license license:gpl3+)))
2112
2113 (define-public fasd
2114 (package
2115 (name "fasd")
2116 (version "1.0.1")
2117 (source (origin
2118 (method git-fetch)
2119 (uri (git-reference
2120 (url "https://github.com/clvv/fasd.git")
2121 (commit version)))
2122 (file-name (git-file-name name version))
2123 (sha256
2124 (base32
2125 "1awi71jdv3mhjrmar2d4z1i90kn7apd7aq1w31sh6w4yibz9kiyj"))))
2126 (build-system gnu-build-system)
2127 (arguments
2128 `(#:phases (modify-phases %standard-phases
2129 (delete 'configure)) ;no configuration
2130 #:tests? #f ;no tests
2131 #:make-flags (list (string-append "PREFIX=" %output))))
2132 (home-page "https://github.com/clvv/fasd")
2133 (synopsis "Quick access to files and directories for shells")
2134 (description
2135 "Fasd (pronounced similar to \"fast\") is a command-line productivity
2136 booster. Fasd offers quick access to files and directories for POSIX shells.
2137 It is inspired by tools like autojump, z, and v. Fasd keeps track of files
2138 and directories you have accessed so that you can quickly reference them in
2139 the command line.")
2140 (license license:x11)))
2141
2142 (define-public iftop
2143 (package
2144 (name "iftop")
2145 (version "1.0pre4")
2146 (source (origin
2147 (method url-fetch)
2148 (uri (string-append "http://www.ex-parrot.com/~pdw/iftop/download"
2149 "/iftop-" version ".tar.gz"))
2150 (sha256
2151 (base32
2152 "15sgkdyijb7vbxpxjavh5qm5nvyii3fqcg9mzvw7fx8s6zmfwczp"))))
2153 (build-system gnu-build-system)
2154 (inputs
2155 `(("libpcap" ,libpcap)
2156 ("ncurses" ,ncurses)))
2157 (synopsis "Monitor network usage")
2158 (description "Iftop does for network usage what @command{top} does
2159 for CPU usage. It listens to network traffic on a named interface and
2160 displays a table of current bandwidth usage by pairs of hosts.")
2161 (home-page "http://www.ex-parrot.com/~pdw/iftop/")
2162 (license license:gpl2+)))
2163
2164 (define-public munge
2165 (package
2166 (name "munge")
2167 (version "0.5.13")
2168 (source (origin
2169 (method url-fetch)
2170 (uri (string-append "https://github.com/dun/munge/releases/"
2171 "download/munge-" version "/munge-"
2172 version ".tar.xz"))
2173 (sha256
2174 (base32
2175 "1nj486bbg1adfg298zck96vgx57kchcypc1zdz1n7w540vyksxcr"))
2176 (modules '((guix build utils)))
2177 (snippet
2178 '(begin
2179 ;; Don't insist on write access to /var.
2180 (substitute* "src/etc/Makefile.in"
2181 (("\\$\\(INSTALL\\)(.*)localstatedir" _ middle)
2182 (string-append "-$(INSTALL)" middle "localstatedir")))
2183 #t))))
2184 (inputs
2185 `(("openssl" ,openssl)
2186 ("libgcrypt" ,libgcrypt)))
2187 (build-system gnu-build-system)
2188 (arguments '(#:configure-flags '("--localstatedir=/var")))
2189 (home-page "https://dun.github.io/munge/")
2190 (synopsis "Cluster computing authentication service")
2191 (description
2192 "Munge is an authentication service for creating and validating
2193 credentials. It allows a process to authenticate the UID and GID of another
2194 local or remote process within a group of hosts having common users and
2195 groups. These hosts form a security realm that is defined by a shared
2196 cryptographic key. Clients within this security realm can create and validate
2197 credentials without the use of root privileges, reserved ports, or
2198 platform-specific methods.")
2199 (license license:gpl3+)))
2200
2201 (define-public audit
2202 (package
2203 (name "audit")
2204 (home-page "https://people.redhat.com/sgrubb/audit/")
2205 (version "2.8.5")
2206 (source (origin
2207 (method url-fetch)
2208 (uri (string-append home-page "audit-" version ".tar.gz"))
2209 (sha256
2210 (base32
2211 "1dzcwb2q78q7x41shcachn7f4aksxbxd470yk38zh03fch1l2p8f"))))
2212 (build-system gnu-build-system)
2213 (arguments
2214 `(#:configure-flags (list "--with-python=no"
2215 "--disable-static")))
2216 (inputs
2217 `(("openldap" ,openldap)
2218 ("gnutls" ,gnutls)
2219 ("sasl" ,cyrus-sasl)))
2220 (synopsis "User-space component to the Linux auditing system")
2221 (description
2222 "auditd is the user-space component to the Linux auditing system, which
2223 allows logging of system calls made by user-land processes. It's responsible
2224 for writing audit records to the disk. Viewing the logs is done with the
2225 @code{ausearch} or @code{aureport} utilities. Configuring the audit rules is
2226 done with the @code{auditctl} utility.")
2227 (license license:gpl2+)))
2228
2229 (define-public nmap
2230 (package
2231 (name "nmap")
2232 (version "7.80")
2233 (source (origin
2234 (method url-fetch)
2235 (uri (string-append "https://nmap.org/dist/nmap-" version
2236 ".tar.bz2"))
2237 (sha256
2238 (base32
2239 "1aizfys6l9f9grm82bk878w56mg0zpkfns3spzj157h98875mypw"))
2240 (modules '((guix build utils)))
2241 (snippet
2242 '(begin
2243 (for-each delete-file-recursively
2244 ;; Remove bundled lua, pcap, and pcre libraries.
2245 ;; FIXME: Remove bundled liblinear once packaged.
2246 '("liblua"
2247 "libpcap"
2248 "libpcre"
2249 ;; Remove pre-compiled binares.
2250 "mswin32"))
2251 #t))))
2252 (build-system gnu-build-system)
2253 (inputs
2254 `(("openssl" ,openssl)
2255 ("libpcap" ,libpcap)
2256 ("pcre" ,pcre)
2257 ("lua" ,lua)
2258 ("zlib" ,zlib) ;for NSE compression support
2259
2260 ;; For 'ndiff'.
2261 ("python" ,python-2)))
2262
2263 ;; TODO Add zenmap output.
2264 (outputs '("out" "ndiff"))
2265 (arguments
2266 `(#:configure-flags '("--without-zenmap")
2267 #:phases
2268 (modify-phases %standard-phases
2269 (add-after 'configure 'patch-Makefile
2270 (lambda _
2271 (substitute* "Makefile"
2272 ;; Do not attempt to build lua.
2273 (("build-dnet build-lua") "build-dnet"))
2274 #t))
2275 (replace 'install
2276 (lambda* (#:key outputs #:allow-other-keys)
2277 (define (make out . args)
2278 (apply invoke "make"
2279 (string-append "prefix=" out)
2280 args))
2281 (define (python-path dir)
2282 (string-append dir "/lib/python"
2283 ,(version-major+minor
2284 (package-version python))
2285 "/site-packages"))
2286 (let ((out (assoc-ref outputs "out"))
2287 (ndiff (assoc-ref outputs "ndiff")))
2288 (for-each mkdir-p (list out ndiff))
2289 (make out
2290 "install-nmap"
2291 "install-nse"
2292 "install-ncat"
2293 "install-nping")
2294 (make ndiff "install-ndiff")
2295 (wrap-program (string-append ndiff "/bin/ndiff")
2296 `("PYTHONPATH" prefix
2297 (,(python-path ndiff)))))
2298 #t))
2299 ;; These are the tests that do not require network access.
2300 (replace 'check
2301 (lambda _ (invoke "make"
2302 "check-nse"
2303 "check-ndiff"
2304 "check-dns"))))
2305 ;; Nmap can't cope with out-of-source building.
2306 #:out-of-source? #f))
2307 (home-page "https://nmap.org/")
2308 (synopsis "Network discovery and security auditing tool")
2309 (description
2310 "Nmap (\"Network Mapper\") is a network discovery and security auditing
2311 tool. It is also useful for tasks such as network inventory, managing service
2312 upgrade schedules, and monitoring host or service uptime. It also provides an
2313 advanced netcat implementation (ncat), a utility for comparing scan
2314 results (ndiff), and a packet generation and response analysis tool (nping).")
2315 ;; This package uses nmap's bundled versions of libdnet and liblinear, which
2316 ;; both use a 3-clause BSD license.
2317 (license (list license:nmap license:bsd-3))))
2318
2319 (define-public dstat
2320 (package
2321 (name "dstat")
2322 (version "0.7.4")
2323 (source
2324 (origin
2325 (method git-fetch)
2326 (uri (git-reference
2327 (url "https://github.com/dagwieers/dstat.git")
2328 (commit (string-append "v" version))))
2329 (file-name (git-file-name "dstat" version))
2330 (sha256
2331 (base32 "1qnmkhqmjd1m3if05jj29dvr5hn6kayq9bkkkh881w472c0zhp8v"))
2332 (patches (search-patches "dstat-fix-crash-when-specifying-delay.patch"
2333 "dstat-skip-devices-without-io.patch"))))
2334 (build-system gnu-build-system)
2335 (arguments
2336 `(#:tests? #f ; no make check
2337 #:make-flags (let ((out (assoc-ref %outputs "out")))
2338 (list (string-append "DESTDIR=" out)
2339 "prefix=/"))
2340 #:phases
2341 (modify-phases %standard-phases
2342 (add-after 'unpack 'fix-python3-DeprecationWarning
2343 (lambda _
2344 (substitute* "dstat"
2345 (("collections") "collections.abc"))
2346 #t))
2347 (delete 'configure) ; no configure script
2348 (add-after 'install 'wrap
2349 (lambda* (#:key outputs #:allow-other-keys)
2350 (let ((out (assoc-ref outputs "out")))
2351 (wrap-program (string-append out "/bin/dstat")
2352 `("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH"))))
2353 #t))))))
2354 (inputs
2355 `(("python" ,python-wrapper)
2356 ("python-six" ,python-six)))
2357 (synopsis "Versatile resource statistics tool")
2358 (description "Dstat is a versatile replacement for @command{vmstat},
2359 @command{iostat}, @command{netstat}, and @command{ifstat}. Dstat overcomes
2360 some of their limitations and adds some extra features, more counters and
2361 flexibility. Dstat is handy for monitoring systems during performance tuning
2362 tests, benchmarks or troubleshooting.
2363
2364 Dstat allows you to view all of your system resources in real-time, you can,
2365 e.g., compare disk utilization in combination with interrupts from your IDE
2366 controller, or compare the network bandwidth numbers directly with the disk
2367 throughput (in the same interval).")
2368 (home-page "http://dag.wiee.rs/home-made/dstat/")
2369 (license license:gpl2+)))
2370
2371 (define-public thefuck
2372 (package
2373 (name "thefuck")
2374 (version "3.29")
2375 (source
2376 (origin
2377 (method git-fetch)
2378 (uri (git-reference
2379 (url "https://github.com/nvbn/thefuck.git")
2380 (commit version)))
2381 (file-name (git-file-name name version))
2382 (sha256
2383 (base32 "1qhxwjjgrzpqrqjv7l2847ywpln76lyd6j8bl9gz2r6kl0fx2fqs"))
2384 (patches (search-patches "thefuck-test-environ.patch"))))
2385 (build-system python-build-system)
2386 (arguments
2387 '(#:phases
2388 (modify-phases %standard-phases
2389 (delete 'check)
2390 (add-after 'install 'check
2391 (lambda* (#:key inputs outputs #:allow-other-keys)
2392 ;; Tests look for installed package
2393 (add-installed-pythonpath inputs outputs)
2394 ;; Some tests need write access to $HOME.
2395 (setenv "HOME" "/tmp")
2396 (invoke "py.test" "-v")
2397 #t)))))
2398 (propagated-inputs
2399 `(("python-colorama" ,python-colorama)
2400 ("python-decorator" ,python-decorator)
2401 ("python-psutil" ,python-psutil)
2402 ("python-pyte" ,python-pyte)
2403 ("python-six" ,python-six)))
2404 (native-inputs
2405 `(("python-mock" ,python-mock)
2406 ("python-pytest" ,python-pytest)
2407 ("python-pytest-mock" ,python-pytest-mock)))
2408 (home-page "https://github.com/nvbn/thefuck")
2409 (synopsis "Correct mistyped console command")
2410 (description
2411 "The Fuck tries to match a rule for a previous, mistyped command, creates
2412 a new command using the matched rule, and runs it.")
2413 (license license:x11)))
2414
2415 (define-public di
2416 (package
2417 (name "di")
2418 (version "4.47.1")
2419 (source
2420 (origin
2421 (method url-fetch)
2422 (uri (string-append "https://gentoo.com/di/di-" version ".tar.gz"))
2423 (sha256
2424 (base32 "1bdbl9k3gqf4h6g21difqc0w17pjid6r587y19wi37vx36aava7f"))))
2425 (build-system gnu-build-system)
2426 (arguments
2427 `(#:tests? #f ; obscure test failures
2428 #:phases
2429 (modify-phases %standard-phases
2430 (delete 'configure) ; no configure script
2431 (add-before 'build 'setup-environment
2432 (lambda* (#:key outputs #:allow-other-keys)
2433 (setenv "CC" "gcc")
2434 (setenv "prefix" (assoc-ref outputs "out"))
2435 #t)))
2436 #:make-flags (list "--environment-overrides")))
2437 (home-page "https://www.gentoo.com/di/")
2438 (synopsis "Advanced df like disk information utility")
2439 (description
2440 "@code{di} is a disk information utility, displaying everything that your
2441 @code{df} command does and more. It features the ability to display your disk
2442 usage in whatever format you prefer. It is designed to be highly portable and
2443 produce uniform output across heterogeneous networks.")
2444 (license license:zlib)))
2445
2446 (define-public cbatticon
2447 (package
2448 (name "cbatticon")
2449 (version "1.6.9")
2450 (source
2451 (origin
2452 (method git-fetch)
2453 (uri (git-reference
2454 (url "https://github.com/valr/cbatticon.git")
2455 (commit version)))
2456 (sha256
2457 (base32 "0kw09d678sd3m18fmi4380sl4a2m5lkfmq0kps16cdmq7z80rvaf"))
2458 (file-name (git-file-name name version))))
2459 (build-system gnu-build-system)
2460 (arguments
2461 `(#:tests? #f ; no tests
2462 #:make-flags
2463 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
2464 "CC=gcc")
2465 #:phases
2466 (modify-phases %standard-phases
2467 (delete 'configure)))) ; no configure script
2468 (inputs
2469 `(("gtk+" ,gtk+)
2470 ("gettext" ,gettext-minimal)
2471 ("libnotify" ,libnotify)))
2472 (native-inputs
2473 `(("pkg-config" ,pkg-config)))
2474 (synopsis "Lightweight battery icon for the system tray")
2475 (description "cbatticon is a lightweight battery icon that displays
2476 the status of your battery in the system tray.")
2477 (home-page "https://github.com/valr/cbatticon")
2478 (license license:gpl2+)))
2479
2480 (define-public interrobang
2481 (let ((revision "1")
2482 (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
2483 (package
2484 (name "interrobang")
2485 (version (git-version "0.0.0" revision commit))
2486 (source
2487 (origin
2488 (method git-fetch)
2489 (uri (git-reference
2490 (url "https://github.com/TrilbyWhite/interrobang.git")
2491 (commit commit)))
2492 (file-name (git-file-name name version))
2493 (sha256
2494 (base32 "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
2495 (build-system gnu-build-system)
2496 (arguments
2497 `(#:tests? #f ; no tests
2498 #:phases
2499 (modify-phases %standard-phases
2500 (delete 'configure)) ; no configure script
2501 #:make-flags (list (string-append "PREFIX="
2502 (assoc-ref %outputs "out")))))
2503 (inputs
2504 `(("libx11" ,libx11)))
2505 (native-inputs
2506 `(("pkg-config" ,pkg-config)))
2507 (synopsis "Scriptable launcher menu")
2508 (description "Interrobang is a scriptable launcher menu with a customizable
2509 shortcut syntax and completion options.")
2510 (home-page "https://github.com/TrilbyWhite/interrobang")
2511 (license license:gpl3+))))
2512
2513 (define-public pam-krb5
2514 (package
2515 (name "pam-krb5")
2516 (version "4.8")
2517 (source (origin
2518 (method url-fetch)
2519 (uri (string-append
2520 "https://archives.eyrie.org/software/kerberos/"
2521 "pam-krb5-" version ".tar.xz"))
2522 (sha256
2523 (base32
2524 "1qjp8i1s9bz7g6kiqrkzzkxn5pfspa4sy53b6z40fqmdf9przdfb"))))
2525 (build-system gnu-build-system)
2526 (arguments
2527 `(#:phases
2528 (modify-phases %standard-phases
2529 (add-before 'configure 'disable-tests
2530 (lambda _
2531 ;; The build container seems to interfere with some tests.
2532 (substitute* "tests/TESTS"
2533 (("module/basic\n") ""))
2534 (substitute* "tests/TESTS"
2535 (("pam-util/vector\n") ""))
2536 #t)))))
2537 (inputs
2538 `(("linux-pam" ,linux-pam)
2539 ("mit-krb5" ,mit-krb5)))
2540 (native-inputs
2541 `(("perl" ,perl)
2542 ("perl-test-pod" ,perl-test-pod))) ; required for tests
2543 (synopsis "Kerberos PAM module")
2544 (description
2545 "Pam-krb5 is a Kerberos PAM module for either MIT Kerberos or Heimdal.
2546 It supports ticket refreshing by screen savers, configurable
2547 authorization handling, authentication of non-local accounts for network
2548 services, password changing, and password expiration, as well as all the
2549 standard expected PAM features. It works correctly with OpenSSH, even
2550 with @code{ChallengeResponseAuthentication} and @code{PrivilegeSeparation}
2551 enabled, and supports extensive configuration either by PAM options or in
2552 krb5.conf or both. PKINIT is supported with recent versions of both MIT
2553 Kerberos and Heimdal and FAST is supported with recent MIT Kerberos.")
2554 (home-page "https://www.eyrie.org/~eagle/software/pam-krb5")
2555 ;; Dual licenced under a homebrew non-copyleft OR GPL (any version)
2556 ;; However, the tarball does not contain a copy of the GPL, so unless
2557 ;; we put one in, we cannot distribute it under GPL without violating
2558 ;; clause requiring us to give all recipients a copy.
2559 (license license:gpl1+)))
2560
2561 (define-public sunxi-tools
2562 (package
2563 (name "sunxi-tools")
2564 (version "1.4.2")
2565 (source
2566 (origin
2567 (method git-fetch)
2568 (uri (git-reference
2569 (url "https://github.com/linux-sunxi/sunxi-tools.git")
2570 (commit (string-append "v" version))))
2571 (sha256
2572 (base32 "04f3jqg8ww4jxsf9c6ddcdgy2xbhkyp0b3l5f1hvvbv94p81rjxd"))
2573 (modules '((guix build utils)))
2574 (snippet
2575 ;; Remove binaries contained in the tarball which are only for the
2576 ;; target and can be regenerated anyway.
2577 '(begin
2578 (delete-file-recursively "bin")
2579 #t))
2580 (file-name (git-file-name name version))))
2581 (native-inputs
2582 `(("pkg-config" ,pkg-config)
2583 ("cross-gcc" ,(cross-gcc "arm-linux-gnueabihf"
2584 #:xbinutils (cross-binutils "arm-linux-gnueabihf")
2585 #:libc (cross-libc "arm-linux-gnueabihf")))
2586 ("cross-libc" ,(cross-libc "arm-linux-gnueabihf")) ; header files
2587 ("cross-libc-static" ,(cross-libc "arm-linux-gnueabihf") "static")))
2588 (inputs
2589 `(("libusb" ,libusb)))
2590 (build-system gnu-build-system)
2591 (arguments
2592 `(#:tests? #f ; no tests exist
2593 #:make-flags (list (string-append "PREFIX="
2594 (assoc-ref %outputs "out"))
2595 (string-append "CROSS_COMPILE="
2596 "arm-linux-gnueabihf-")
2597 "CC=gcc")
2598 #:phases
2599 (modify-phases %standard-phases
2600 (delete 'configure)
2601 (add-before 'build 'set-environment-up
2602 (lambda* (#:key make-flags #:allow-other-keys)
2603 (define (cross? x)
2604 (string-contains x "cross-arm-linux"))
2605 (define (filter-environment! filter-predicate
2606 environment-variable-names)
2607 (for-each
2608 (lambda (env-name)
2609 (let* ((env-value (getenv env-name))
2610 (search-path (search-path-as-string->list env-value))
2611 (new-search-path (filter filter-predicate
2612 search-path))
2613 (new-env-value (list->search-path-as-string
2614 new-search-path ":")))
2615 (setenv env-name new-env-value)))
2616 environment-variable-names))
2617 (setenv "CROSS_C_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))
2618 (setenv "CROSS_CPLUS_INCLUDE_PATH" (getenv "CPLUS_INCLUDE_PATH"))
2619 (setenv "CROSS_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
2620 (filter-environment! cross?
2621 '("CROSS_C_INCLUDE_PATH" "CROSS_CPLUS_INCLUDE_PATH"
2622 "CROSS_LIBRARY_PATH"))
2623 (filter-environment! (lambda (e) (not (cross? e)))
2624 '("C_INCLUDE_PATH" "CPLUS_INCLUDE_PATH"
2625 "LIBRARY_PATH"))
2626 #t))
2627 (replace 'build
2628 (lambda* (#:key make-flags #:allow-other-keys)
2629 (apply invoke "make" "tools" "misc" make-flags)))
2630 (add-after 'build 'build-armhf
2631 (lambda* (#:key make-flags #:allow-other-keys)
2632 (setenv "LIBRARY_PATH" #f)
2633 (apply invoke "make" "target-tools" make-flags)))
2634 (replace 'install
2635 (lambda* (#:key make-flags #:allow-other-keys)
2636 (apply invoke "make" "install-all" "install-misc"
2637 make-flags))))))
2638 (home-page "https://github.com/linux-sunxi/sunxi-tools")
2639 (synopsis "Hardware management tools for Allwinner computers")
2640 (description "This package contains tools for Allwinner devices:
2641 @enumerate
2642 @item @command{sunxi-fexc}, @command{bin2fex}, @command{fex2bin}: Compile
2643 a textual description of a board (.fex) to a binary representation (.bin).
2644 @item @command{sunxi-fel}: Puts an Allwinner device into FEL mode which
2645 makes it register as a special USB device (rather than USB host).
2646 You can then connect it to another computer and flash it from there.
2647 @item @command{sunxi-nand-part}: Partitions NAND flash.
2648 @item @command{sunxi-bootinfo}: Reads out boot0 and boot1 (Allwinner
2649 bootloader) parameters.
2650 @item @command{sunxi-pio}: Sets GPIO parameters and oscillates a GPIO
2651 in order to be able to find it.
2652 @item @command{sunxi-meminfo}: Prints memory bus settings.
2653 @item @command{sunxi-nand-image-builder}: Prepares raw NAND images.
2654 @end enumerate")
2655 (license license:gpl2+)))
2656
2657 (define-public sedsed
2658 (package
2659 (name "sedsed")
2660 (version "1.1")
2661 (source
2662 (origin
2663 (method git-fetch)
2664 (uri (git-reference
2665 (url "https://github.com/aureliojargas/sedsed.git")
2666 (commit (string-append "v" version))))
2667 (file-name (git-file-name name version))
2668 (sha256
2669 (base32 "05cl35mwljdb9ynbbsfa8zx6ig8r0xncbg2cir9vwn5manndjj18"))))
2670 (build-system python-build-system)
2671 (arguments
2672 `(#:tests? #f ; no tests
2673 #:phases
2674 (modify-phases %standard-phases
2675 (add-after 'unpack 'patch-sed-in
2676 (lambda _
2677 (substitute* "sedsed.py"
2678 (("sedbin = 'sed'")
2679 (string-append "sedbin = '" (which "sed") "'")))
2680 #t))
2681 (delete 'build)
2682 (replace 'install
2683 (lambda* (#:key outputs #:allow-other-keys)
2684 (let* ((out (assoc-ref outputs "out"))
2685 (bin (string-append out "/bin")))
2686 ;; Just one file to copy around
2687 (install-file "sedsed.py" bin)
2688 #t)))
2689 (add-after 'wrap 'symlink
2690 ;; Create 'sedsed' symlink to "sedsed.py".
2691 (lambda* (#:key outputs #:allow-other-keys)
2692 (let* ((out (assoc-ref outputs "out"))
2693 (bin (string-append out "/bin"))
2694 (sed (string-append bin "/sedsed"))
2695 (sedpy (string-append bin "/sedsed.py")))
2696 (symlink sedpy sed)
2697 #t))))))
2698 (home-page "https://aurelio.net/projects/sedsed")
2699 (synopsis "Sed sed scripts")
2700 (description
2701 "@code{sedsed} can debug, indent, tokenize and HTMLize your @command{sed}
2702 script.
2703
2704 In debug mode, it reads your script and adds extra commands to it. When
2705 executed you can see the data flow between the commands, revealing all the
2706 magic sed performs on its internal buffers.
2707
2708 In indent mode, your script is reformatted with standard spacing.
2709
2710 In tokenize mode, you can see the elements of every command you use.
2711
2712 In HTMLize mode, your script is converted to a beautiful colored HTML file,
2713 with all the commands and parameters identified for your viewing pleasure.
2714
2715 With sedsed you can master any sed script. No more secrets, no more hidden
2716 buffers.")
2717 (license license:expat)))
2718
2719 (define-public igt-gpu-tools
2720 (package
2721 (name "igt-gpu-tools")
2722 (version "1.23")
2723 (source (origin
2724 (method url-fetch)
2725 (uri (string-append "https://cgit.freedesktop.org/xorg/app/"
2726 "intel-gpu-tools/snapshot/"
2727 "igt-gpu-tools-" version ".tar.gz"))
2728 (sha256
2729 (base32
2730 "0vzv2i4jfv2pkbqby5k3ap9pzidkmajwqmg3s7wnv8i1h33775iq"))))
2731 (build-system gnu-build-system)
2732 (arguments
2733 `(#:tests? #f ; many of the tests try to load kernel modules
2734 #:phases
2735 (modify-phases %standard-phases
2736 (replace 'bootstrap
2737 (lambda _
2738 ;; Don't run configure in this phase.
2739 (setenv "NOCONFIGURE" "1")
2740 (invoke "sh" "autogen.sh"))))))
2741 (inputs
2742 `(("cairo" ,cairo)
2743 ("eudev" ,eudev)
2744 ("glib" ,glib)
2745 ("kmod" ,kmod)
2746 ("libdrm" ,libdrm)
2747 ("libpciaccess" ,libpciaccess)
2748 ("libunwind" ,libunwind)
2749 ("libxrandr" ,libxrandr)
2750 ("openssl" ,openssl)
2751 ("procps" ,procps)
2752 ("util-macros" ,util-macros)))
2753 (native-inputs
2754 `(("autoconf" ,autoconf)
2755 ("automake" ,automake)
2756 ("libtool" ,libtool)
2757 ("pkg-config" ,pkg-config)))
2758 (home-page "https://cgit.freedesktop.org/xorg/app/intel-gpu-tools/")
2759 (synopsis "Tools for development and testing of the Intel DRM driver")
2760 (description "IGT GPU Tools is a collection of tools for development and
2761 testing of the Intel DRM driver. There are many macro-level test suites that
2762 get used against the driver, including xtest, rendercheck, piglit, and
2763 oglconform, but failures from those can be difficult to track down to kernel
2764 changes, and many require complicated build procedures or specific testing
2765 environments to get useful results. Therefore, IGT GPU Tools includes
2766 low-level tools and tests specifically for development and testing of the
2767 Intel DRM Driver.")
2768 (supported-systems '("i686-linux" "x86_64-linux"))
2769 (license license:expat)))
2770
2771 (define-public intel-gpu-tools
2772 (deprecated-package "intel-gpu-tools" igt-gpu-tools))
2773
2774 (define-public fabric
2775 (package
2776 (name "fabric")
2777 (version "1.14.0")
2778 (source
2779 (origin
2780 (method url-fetch)
2781 (uri (pypi-uri "Fabric" version))
2782 (sha256
2783 (base32
2784 "13r0b0hllgf8j9rh6x1knmbgvingbdmx046aazv6vck2ll120mw1"))))
2785 (build-system python-build-system)
2786 (arguments
2787 `(#:python ,python-2 ; Python 2 only
2788 #:phases
2789 (modify-phases %standard-phases
2790 (replace 'check
2791 (lambda _
2792 (invoke
2793 "nosetests" "-v" "tests/"
2794 ;; This test hangs indefinitely when run on a single core VM
2795 ;; (see GNU bug #26647 and Debian bug #850230).
2796 "--exclude=test_nested_execution_with_explicit_ports"
2797 ;; This test randomly fails in certain environments causing too
2798 ;; much noise to be useful (see Debian bug #854686).
2799 "--exclude=test_should_use_sentinel_for_tasks_that_errored"))))))
2800 (native-inputs
2801 `(("python2-fudge" ,python2-fudge) ; Requires < 1.0
2802 ("python2-jinja2" ,python2-jinja2) ; Requires < 3.0
2803 ("python2-nose" ,python2-nose) ; Requires < 2.0
2804 ("python2-pynacl" ,python2-pynacl)
2805 ("python2-bcrypt" ,python2-bcrypt)))
2806 (propagated-inputs
2807 `(("python2-paramiko" ,python2-paramiko)))
2808 (home-page "http://fabfile.org")
2809 (synopsis "Simple Pythonic remote execution and deployment tool")
2810 (description
2811 "Fabric is designed to upload files and run shell commands on a number of
2812 servers in parallel or serially. These commands are grouped in tasks (which
2813 are regular Python functions) and specified in a @dfn{fabfile}.
2814
2815 It is similar to Capistrano, except it's implemented in Python and doesn't
2816 expect you to be deploying Rails applications. Fabric is a simple, Pythonic
2817 tool for remote execution and deployment.")
2818 (license license:bsd-2)))
2819
2820 (define-public neofetch
2821 (package
2822 (name "neofetch")
2823 (version "6.1.0")
2824 (source (origin
2825 (method git-fetch)
2826 (uri (git-reference
2827 (url "https://github.com/dylanaraps/neofetch")
2828 (commit version)))
2829 (sha256
2830 (base32
2831 "022xzn9jk18k2f4b6011d8jk5nbl84i3mw3inlz4q52p2hvk8fch"))))
2832 (build-system gnu-build-system)
2833 (arguments
2834 `(#:tests? #f ; there are no tests
2835 #:make-flags
2836 (list (string-append "PREFIX=" %output))
2837 #:phases
2838 (modify-phases %standard-phases
2839 (delete 'configure)))) ; no configure script
2840 (home-page "https://github.com/dylanaraps/neofetch")
2841 (synopsis "System information script")
2842 (description "Neofetch is a command-line system information tool written in
2843 Bash. Neofetch displays information about your system next to an image, your OS
2844 logo, or any ASCII file of your choice. The main purpose of Neofetch is to be
2845 used in screenshots to show other users what operating system or distribution
2846 you are running, what theme or icon set you are using, etc.")
2847 (license license:expat)))
2848
2849 (define-public screenfetch
2850 (package
2851 (name "screenfetch")
2852 (version "3.9.0")
2853 (source (origin
2854 (method git-fetch)
2855 (uri (git-reference
2856 (url "https://github.com/KittyKatt/screenFetch")
2857 (commit (string-append "v" version))))
2858 (file-name (git-file-name name version))
2859 (sha256
2860 (base32
2861 "13i7dczbqwhws08zzrdraki1zkqv0qkbgx9c1r8vmg5qr9f7hfzg"))))
2862 (build-system trivial-build-system)
2863 (arguments
2864 `(#:modules ((guix build utils))
2865 #:builder
2866 (begin
2867 (use-modules (guix build utils))
2868 (let ((source (assoc-ref %build-inputs "source"))
2869 (out (assoc-ref %outputs "out")))
2870 (mkdir-p (string-append out "/bin/"))
2871 (copy-file (string-append source "/screenfetch-dev")
2872 (string-append out "/bin/screenfetch"))
2873 (install-file (string-append source "/screenfetch.1")
2874 (string-append out "/man/man1/"))
2875 (install-file (string-append source "/COPYING")
2876 (string-append out "/share/doc/" ,name "-" ,version))
2877 (substitute* (string-append out "/bin/screenfetch")
2878 (("/usr/bin/env bash")
2879 (string-append (assoc-ref %build-inputs "bash")
2880 "/bin/bash")))
2881 (wrap-program
2882 (string-append out "/bin/screenfetch")
2883 `("PATH" ":" prefix
2884 (,(string-append (assoc-ref %build-inputs "bc") "/bin:"
2885 (assoc-ref %build-inputs "scrot") "/bin:"
2886 (assoc-ref %build-inputs "xdpyinfo") "/bin"
2887 (assoc-ref %build-inputs "xprop") "/bin"))))
2888 (substitute* (string-append out "/bin/screenfetch")
2889 (("#!#f")
2890 (string-append "#!" (assoc-ref %build-inputs "bash")
2891 "/bin/bash")))))))
2892 (inputs
2893 `(("bash" ,bash)
2894 ("bc" ,bc)
2895 ("scrot" ,scrot)
2896 ("xdpyinfo" ,xdpyinfo)
2897 ("xprop" ,xprop)))
2898 (home-page "https://github.com/KittyKatt/screenFetch")
2899 (synopsis "System information script")
2900 (description "Bash screenshot information tool which can be used to
2901 generate those nifty terminal theme information and ASCII distribution logos in
2902 everyone's screenshots nowadays.")
2903 (license license:gpl3)))
2904
2905 (define-public nnn
2906 (package
2907 (name "nnn")
2908 (version "2.6")
2909 (source
2910 (origin
2911 (method url-fetch)
2912 (uri (string-append "https://github.com/jarun/nnn/releases/download/v"
2913 version "/nnn-v" version ".tar.gz"))
2914 (sha256
2915 (base32 "0xb6crd9vig3xgjwl8m4bmgcs4azfmfdpx3g8pdpzs28jdg7i3rr"))))
2916 (build-system gnu-build-system)
2917 (inputs
2918 `(("ncurses" ,ncurses)
2919 ("readline" ,readline)))
2920 (native-inputs
2921 `(("pkg-config" ,pkg-config)))
2922 (arguments
2923 '(#:tests? #f ; no tests
2924 #:phases
2925 (modify-phases %standard-phases
2926 (delete 'configure)) ; no configure script
2927 #:make-flags
2928 (list
2929 (string-append "PREFIX="
2930 (assoc-ref %outputs "out"))
2931 "CC=gcc")))
2932 (home-page "https://github.com/jarun/nnn")
2933 (synopsis "Terminal file browser")
2934 (description "@command{nnn} is a fork of @command{noice}, a blazing-fast
2935 lightweight terminal file browser with easy keyboard shortcuts for
2936 navigation, opening files and running tasks. There is no config file and
2937 mime associations are hard-coded. The incredible user-friendliness and speed
2938 make it a perfect utility on modern distros.")
2939 (license license:bsd-2)))
2940
2941 (define-public thermald
2942 (package
2943 (name "thermald")
2944 (version "1.8")
2945 (source
2946 (origin
2947 (method git-fetch)
2948 (uri (git-reference
2949 (url "https://github.com/01org/thermal_daemon")
2950 (commit (string-append "v" version))))
2951 (file-name (git-file-name name version))
2952 (sha256
2953 (base32 "1g1l7k8yxj8bl1ysdx8v6anv1s7xk9j072y44gwki70dy48n7j92"))
2954 (patches
2955 (search-patches "thermald-make-int-max32-visible.patch"))))
2956 (build-system gnu-build-system)
2957 (arguments
2958 `(#:configure-flags
2959 (let ((out (assoc-ref %outputs "out")))
2960 (list (string-append "--sysconfdir="
2961 out "/etc")
2962 (string-append "--with-dbus-sys-dir="
2963 out "/etc/dbus-1/system.d")
2964 "--localstatedir=/var"))))
2965 (native-inputs
2966 `(("autoconf" ,autoconf)
2967 ("automake" ,automake)
2968 ("glib" ,glib "bin") ; for glib-genmarshal, etc.
2969 ("pkg-config" ,pkg-config)))
2970 (inputs
2971 `(("dbus-glib" ,dbus-glib)
2972 ("libxml2" ,libxml2)))
2973 (home-page "https://01.org/linux-thermal-daemon/")
2974 (synopsis "CPU scaling for thermal management")
2975 (description "The Linux Thermal Daemon helps monitor and control temperature
2976 on systems running the Linux kernel.")
2977 ;; arm and aarch64 don't have cpuid.h.
2978 (supported-systems '("i686-linux" "x86_64-linux"))
2979 (license license:gpl2+)))
2980
2981 (define-public masscan
2982 (package
2983 (name "masscan")
2984 (version "1.0.5")
2985 (source
2986 (origin
2987 (method git-fetch)
2988 (uri (git-reference
2989 (url "https://github.com/robertdavidgraham/masscan.git")
2990 (commit version)))
2991 (file-name (git-file-name name version))
2992 (sha256
2993 (base32 "0q0c7bsf0pbl8napry1qyg0gl4pd8wn872h4mz9b56dx4rx90vqg"))))
2994 (build-system gnu-build-system)
2995 (inputs
2996 `(("libpcap" ,libpcap)))
2997 (arguments
2998 '(#:test-target "regress"
2999 #:make-flags
3000 (list "CC=gcc"
3001 (string-append "PREFIX=" (assoc-ref %outputs "out")))
3002 #:phases
3003 (modify-phases %standard-phases
3004 (delete 'configure) ; no ./configure script
3005 (add-after 'unpack 'patch-path
3006 (lambda* (#:key outputs inputs #:allow-other-keys)
3007 (let* ((out (assoc-ref outputs "out"))
3008 (pcap (assoc-ref inputs "libpcap")))
3009 (substitute* "src/rawsock-pcap.c"
3010 (("libpcap.so") (string-append pcap "/lib/libpcap.so")))
3011 #t))))))
3012 (synopsis "TCP port scanner")
3013 (description "MASSCAN is an asynchronous TCP port scanner. It can detect
3014 open ports, and also complete the TCP connection and interact with the remote
3015 application, collecting the information received.")
3016 (home-page "https://github.com/robertdavidgraham/masscan")
3017 ;; 'src/siphash24.c' is the SipHash reference implementation, which
3018 ;; bears a CC0 Public Domain Dedication.
3019 (license license:agpl3+)))
3020
3021 (define-public hungrycat
3022 (package
3023 (name "hungrycat")
3024 (version "0.4.1")
3025 (source (origin
3026 (method url-fetch)
3027 (uri (string-append "https://github.com/jwilk/hungrycat/"
3028 "releases/download/" version "/"
3029 "hungrycat-" version ".tar.gz"))
3030 (sha256
3031 (base32
3032 "03fc1zsrf99lvxa7b4ps6pbi43304wbxh1f6ci4q0vkal370yfwh"))))
3033 (build-system gnu-build-system)
3034 (native-inputs
3035 ;; For tests.
3036 `(("python" ,python-wrapper)
3037 ("python-nose" ,python-nose)))
3038 (arguments
3039 `(#:test-target "test"))
3040 (synopsis "A single tool that combines @command{cat} & @command{rm}")
3041 (description
3042 "hungrycat prints the contents of a file to standard output, while
3043 simultaneously freeing the disk space it occupied. It is useful if you need
3044 to process a large file, don't have enough space to store both the input and
3045 output files, and don't need the input file afterwards.
3046 While similar in principle to running @command{cat} immediately followed by
3047 @command{rm}, @command{hungrycat} actually frees blocks as soon as they are
3048 printed instead of after the entire file has been read, which is often too
3049 late.")
3050 (home-page "https://jwilk.net/software/hungrycat")
3051 (license license:expat)))
3052
3053 (define-public launchmon
3054 (package
3055 (name "launchmon")
3056 (version "1.0.2")
3057 (source (origin
3058 (method url-fetch)
3059 (uri (string-append
3060 "https://github.com/LLNL/LaunchMON/releases/download/v"
3061 version "/launchmon-v" version ".tar.gz"))
3062 (sha256
3063 (base32
3064 "0fm3nd9mydm9v2bf7bh01dbgrfnpwkapxa3dsvy3x1z0rz61qc0x"))))
3065 (build-system gnu-build-system)
3066 (inputs
3067 `(("mpi" ,openmpi)
3068 ("munge" ,munge)
3069 ("boost" ,boost)
3070 ("libelf" ,libelf)
3071 ("libgcrypt" ,libgcrypt)
3072 ("libgpg-error" ,libgpg-error)))
3073 (synopsis "Infrastructue for large scale tool daemon launching")
3074 (description
3075 "LaunchMON is a software infrastructure that enables HPC run-time
3076 tools to co-locate tool daemons with a parallel job. Its API allows a
3077 tool to identify all the remote processes of a job and to scalably
3078 launch daemons into the relevant nodes.")
3079 (home-page "https://github.com/LLNL/LaunchMON")
3080 (supported-systems '("i686-linux" "x86_64-linux"))
3081 (license license:lgpl2.1)))
3082
3083 (define-public spindle
3084 (package
3085 (name "spindle")
3086 (version "0.10")
3087 (source (origin
3088 ;; We use git checkout to avoid github auto-generated tarballs
3089 (method git-fetch)
3090 (uri (git-reference
3091 (url "https://github.com/hpc/Spindle.git")
3092 (commit (string-append "v" version))))
3093 (file-name (git-file-name name version))
3094 (sha256
3095 (base32
3096 "15n3ay0qq81r5v7fif61q1vdjcq44pp2nynkh3fvbzc9fj3c39wd"))))
3097 (build-system gnu-build-system)
3098 (arguments '(#:configure-flags '("--enable-sec-launchmon"
3099 "--enable-sec-munge"
3100 "--enable-sec-none")))
3101 (inputs
3102 `(("mpi" ,openmpi)
3103 ("munge" ,munge)
3104 ("launchmon" ,launchmon)
3105 ("libgcrypt" ,libgcrypt)))
3106 (synopsis "Scalable library loading in HPC environments")
3107 (description
3108 "Spindle is a tool for improving the performance of dynamic library and
3109 Python loading in HPC environments.")
3110 (home-page "https://github.com/hpc/Spindle")
3111 ;; This package supports x86_64 and PowerPC64
3112 (supported-systems '("x86_64-linux"))
3113 (license license:lgpl2.1)))
3114
3115 (define-public inxi-minimal
3116 (let ((real-name "inxi"))
3117 (package
3118 (name "inxi-minimal")
3119 (version "3.0.34-1")
3120 (source
3121 (origin
3122 (method git-fetch)
3123 (uri (git-reference
3124 (url "https://github.com/smxi/inxi")
3125 (commit version)))
3126 (file-name (git-file-name real-name version))
3127 (sha256
3128 (base32 "0x2s40lwsan2pk292nspjgyw00f9f5fdfmwfvl50924pxhyxn2fh"))))
3129 (build-system trivial-build-system)
3130 (inputs
3131 `(("bash" ,bash-minimal)
3132 ("perl" ,perl)
3133 ("procps" ,procps)))
3134 (native-inputs
3135 `(("gzip" ,gzip)))
3136 (arguments
3137 `(#:modules
3138 ((guix build utils)
3139 (ice-9 match)
3140 (srfi srfi-26))
3141 #:builder
3142 (begin
3143 (use-modules (guix build utils)
3144 (ice-9 match)
3145 (srfi srfi-26))
3146 (setenv "PATH" (string-append
3147 (assoc-ref %build-inputs "bash") "/bin" ":"
3148 (assoc-ref %build-inputs "gzip") "/bin" ":"
3149 (assoc-ref %build-inputs "perl") "/bin" ":"))
3150 (copy-recursively (assoc-ref %build-inputs "source")
3151 ,(string-append real-name "-" version))
3152 (with-directory-excursion ,(string-append real-name "-" version)
3153 (with-fluids ((%default-port-encoding #f))
3154 (substitute* "inxi" (("/usr/bin/env perl") (which "perl"))))
3155 (let ((bin (string-append %output "/bin")))
3156 (install-file "inxi" bin)
3157 (wrap-program (string-append bin "/inxi")
3158 `("PATH" ":" =
3159 ("$PATH"
3160 ,@(map (lambda (input)
3161 (match input
3162 ((name . store)
3163 (let ((store-append
3164 (cut string-append store <>)))
3165 (cond
3166 ((member name '("util-linux"))
3167 (string-append (store-append "/bin") ":"
3168 (store-append "/sbin")))
3169 ((member name '("dmidecode" "iproute2"))
3170 (store-append "/sbin"))
3171 (else (store-append "/bin")))))))
3172 %build-inputs)))
3173 `("PERL5LIB" ":" =
3174 ,(delete
3175 ""
3176 (map (match-lambda
3177 (((? (cut string-prefix? "perl-" <>) name) . dir)
3178 (string-append dir "/lib/perl5/site_perl"))
3179 (_ ""))
3180 %build-inputs)))))
3181 (invoke "gzip" "inxi.1")
3182 (install-file "inxi.1.gz"
3183 (string-append %output "/share/man/man1")))
3184 #t)))
3185 (home-page "https://smxi.org/docs/inxi.htm")
3186 (synopsis "Full-featured system information script")
3187 (description "Inxi is a system information script that can display
3188 various things about your hardware and software to users in an IRC chatroom or
3189 support forum. It runs with the @code{/exec} command in most IRC clients.")
3190 (license license:gpl3+))))
3191
3192 (define-public inxi
3193 (package
3194 (inherit inxi-minimal)
3195 (name "inxi")
3196 (inputs
3197 `(("dmidecode" ,dmidecode)
3198 ("file" ,file)
3199 ("bind:utils" ,isc-bind "utils") ; dig
3200 ("gzip" ,gzip)
3201 ("iproute2" ,iproute) ; ip
3202 ("kmod" ,kmod) ; modinfo
3203 ("lm-sensors" ,lm-sensors)
3204 ("mesa-utils" ,mesa-utils)
3205 ("pciutils" ,pciutils)
3206 ("tar" ,tar)
3207 ("tree" ,tree)
3208 ("util-linux" ,util-linux) ; lsblk
3209 ("usbutils" ,usbutils) ; lsusb
3210 ("wmctrl" ,wmctrl)
3211 ("xdpyinfo" ,xdpyinfo)
3212 ("xprop" ,xprop)
3213 ("xrandr" ,xrandr)
3214 ("coreutils" ,coreutils) ; uptime
3215 ("inetutils" ,inetutils) ; ifconfig
3216 ("perl-cpanel-json-xs" ,perl-cpanel-json-xs)
3217 ("perl-http-tiny" ,perl-http-tiny)
3218 ("perl-io-socket-ssl" ,perl-io-socket-ssl)
3219 ("perl-json-xs" ,perl-json-xs)
3220 ("perl-time-hires" ,perl-time-hires)
3221 ;; TODO: Add more inputs:
3222 ;; ipmi-sensors
3223 ;; hddtemp
3224 ;; perl-xml-dumper
3225 ;; ipmitool
3226 ,@(package-inputs inxi-minimal)))))
3227
3228 (define-public pscircle
3229 (package
3230 (name "pscircle")
3231 (version "1.3.0")
3232 (source
3233 (origin
3234 (method git-fetch)
3235 (uri (git-reference
3236 (url "https://gitlab.com/mildlyparallel/pscircle.git")
3237 (commit (string-append "v" version))))
3238 (file-name (git-file-name name version))
3239 (sha256
3240 (base32
3241 "0qsif00dkqa8ky3vl2ycx5anx2yk62nrv47f5lrlqzclz91f00fx"))))
3242 (build-system meson-build-system)
3243 (native-inputs
3244 `(("pkg-config" ,pkg-config)))
3245 (inputs
3246 `(("cairo" ,cairo)
3247 ("libpng" ,libpng)
3248 ("libx11" ,libx11)))
3249 (home-page "https://gitlab.com/mildlyparallel/pscircle")
3250 (synopsis "Visualize Linux processes in a form of radial tree")
3251 (description
3252 "@code{pscircle} visualizes Linux processes in the form of a radial tree.")
3253 (license license:gpl2+)))
3254
3255 (define-public python-pyudev
3256 (package
3257 (name "python-pyudev")
3258 (version "0.21.0")
3259 (source
3260 (origin
3261 (method url-fetch)
3262 (uri (pypi-uri "pyudev" version))
3263 (sha256
3264 (base32
3265 "0arz0dqp75sszsmgm6vhg92n1lsx91ihddx3m944f4ah0487ljq9"))))
3266 (build-system python-build-system)
3267 (arguments
3268 `(#:tests? #f ; Tests require /sys
3269 #:phases
3270 (modify-phases %standard-phases
3271 (add-after 'unpack 'patch-ctypes-udev
3272 (lambda* (#:key inputs outputs #:allow-other-keys)
3273 (let ((eudev (assoc-ref inputs "eudev")))
3274 (substitute* "src/pyudev/core.py"
3275 (("'udev'")
3276 (string-append "'" eudev "/lib/libudev.so'")))
3277 (substitute* "src/pyudev/_ctypeslib/utils.py"
3278 ;; Use absolute paths instead of keys.
3279 (("= find_library") "= "))
3280 #t))))))
3281 (inputs
3282 `(("eudev" ,eudev)))
3283 (propagated-inputs
3284 `(("python-six" ,python-six)))
3285 (native-inputs
3286 `(("python-docutils" ,python-docutils)
3287 ("python-hypothesis" ,python-hypothesis)
3288 ("python-mock" ,python-mock)
3289 ("python-pytest" ,python-pytest)
3290 ("python-sphinx" ,python-sphinx)))
3291 (home-page "http://pyudev.readthedocs.org/")
3292 (synopsis "Python udev binding")
3293 (description "This package provides @code{udev} bindings for Python.")
3294 (license license:lgpl2.1)))
3295
3296 (define-public solaar
3297 (package
3298 (name "solaar")
3299 (version "0.9.2")
3300 (source (origin
3301 (method git-fetch)
3302 (uri (git-reference
3303 (url "https://github.com/pwr/Solaar.git")
3304 (commit version)))
3305 (file-name (git-file-name name version))
3306 (sha256
3307 (base32
3308 "085mfa13dap3wqik1dqlad0d7kff4rv7j4ljh99c7l8nhczkqgwm"))))
3309 (build-system python-build-system)
3310 (arguments
3311 `(#:phases
3312 (modify-phases %standard-phases
3313 (add-after 'unpack 'fix-prefix-detection
3314 (lambda _
3315 (substitute* "setup.py"
3316 (("'--prefix' in sys\\.argv")
3317 "len([x.startswith('--prefix=') for x in sys.argv]) > 0"))
3318 #t))
3319 (replace 'build
3320 (lambda _
3321 (invoke "python" "setup.py" "build")))
3322 (add-before 'check 'setenv-PATH
3323 (lambda _
3324 (setenv "PYTHONPATH" (string-append "lib:" (getenv "PYTHONPATH")))
3325 #t)))))
3326 (propagated-inputs
3327 `(("python-pygobject" ,python-pygobject)
3328 ("python-pyudev" ,python-pyudev)))
3329 (home-page "https://smxi.org/docs/inxi.htm")
3330 (synopsis "Linux devices manager for the Logitech Unifying Receiver")
3331 (description "This package provides tools to manage clients of the
3332 Logitech Unifying Receiver.")
3333 (license license:gpl2)))
3334
3335 (define-public lynis
3336 (package
3337 (name "lynis")
3338 ;; Also update the ‘lynis-sdk’ input to the commit matching this release.
3339 (version "2.7.5")
3340 (source
3341 (origin
3342 (method git-fetch)
3343 (uri (git-reference
3344 (url "https://github.com/CISOfy/lynis")
3345 (commit version)))
3346 (file-name (git-file-name name version))
3347 (sha256
3348 (base32 "1lkkbvxm0rgrrlx0szaxmf8ghc3d26wal96sgqk84m37mvs1f7p0"))
3349 (modules '((guix build utils)))
3350 (snippet
3351 '(begin
3352 ;; Remove proprietary plugins. As of now, all plugins supplied with
3353 ;; lynis are proprietary. In the future, if free plugins are
3354 ;; provided, whitelist them from deletion.
3355 (for-each delete-file (find-files "plugins"))
3356 #t))))
3357 (build-system gnu-build-system)
3358 (native-inputs
3359 `(;; For tests
3360 ("lynis-sdk"
3361 ,(origin
3362 (method git-fetch)
3363 (uri (git-reference
3364 (url "https://github.com/CISOfy/lynis-sdk")
3365 (commit "bf1c1d95121da9ca79a9eac5a15ed8d81e34094d")))
3366 (file-name (git-file-name "lynis-sdk" version))
3367 (sha256
3368 (base32 "1ndz5v0039dqa87cva2dk55a8hkw0fibsw8hh2ddmny9qkr4l3dp"))))))
3369 (arguments
3370 `(#:phases
3371 (modify-phases %standard-phases
3372 (replace 'configure
3373 (lambda* (#:key inputs outputs #:allow-other-keys)
3374 (substitute* "lynis"
3375 (("/usr/share/lynis")
3376 (string-append (assoc-ref outputs "out") "/share/lynis")))
3377 (substitute* "include/functions"
3378 (("/usr/local/etc/lynis")
3379 (string-append (assoc-ref outputs "out") "/etc/lynis")))
3380 #t))
3381 (delete 'build)
3382 (replace 'install
3383 (lambda* (#:key outputs #:allow-other-keys)
3384 (let ((out (assoc-ref outputs "out")))
3385 (install-file "lynis" (string-append out "/bin/"))
3386 (install-file "default.prf" (string-append out "/etc/lynis"))
3387 (for-each
3388 (lambda (dir)
3389 (copy-recursively dir (string-append out "/share/lynis/" dir)))
3390 (list "db" "include" "plugins"))
3391 (install-file "lynis.8" (string-append out "/share/man/man8"))
3392 #t)))
3393 (replace 'check
3394 (lambda* (#:key inputs #:allow-other-keys)
3395 (copy-recursively (assoc-ref inputs "lynis-sdk") "../lynis-sdk")
3396 (setenv "LANG" "en_US.UTF-8")
3397 (let ((lynis-dir (getcwd)))
3398 (with-directory-excursion "../lynis-sdk"
3399 (substitute* "config"
3400 (("\\.\\./lynis") lynis-dir))
3401 (substitute* "unit-tests/tests-language-translations.sh"
3402 (("\\.\\./lynis") lynis-dir))
3403 (invoke "sh" "lynis-devkit" "run" "unit-tests"))))))))
3404 (home-page "https://cisofy.com/lynis/")
3405 (synopsis "Security auditing tool")
3406 (description "Lynis is a security auditing tool. It performs an in-depth
3407 security scan and runs on the system itself. The primary goal is to test
3408 security defenses and provide tips for further system hardening. It will also
3409 scan for general system information, vulnerable software packages, and
3410 possible configuration issues.")
3411 (license license:gpl3+)))
3412
3413 (define-public ngrep
3414 (package
3415 (name "ngrep")
3416 (version "1.47")
3417 (source
3418 (origin
3419 (method git-fetch)
3420 (uri (git-reference
3421 (url "https://github.com/jpr5/ngrep/")
3422 (commit (string-append "V" (string-replace-substring version "." "_")))))
3423 (file-name (git-file-name name version))
3424 (sha256
3425 (base32
3426 "1x2fyd7wdqlj1r76ilal06cl2wmbz0ws6i3ys204sbjh1cj6dcl7"))))
3427 (build-system gnu-build-system)
3428 (inputs
3429 `(("libpcap" ,libpcap)))
3430 (arguments
3431 `(#:tests? #f ;; No tests.
3432 #:configure-flags (list (string-append "--with-pcap-includes="
3433 (assoc-ref %build-inputs "libpcap")
3434 "/include/pcap"))))
3435 (home-page "https://github.com/jpr5/ngrep/")
3436 (synopsis "Grep-like utility to search for network packets on an interface")
3437 (description "@command{ngrep} is like GNU grep applied to the network
3438 layer. It's a PCAP-based tool that allows you to specify an extended regular
3439 or hexadecimal expression to match against data payloads of packets. It
3440 understands many kinds of protocols, including IPv4/6, TCP, UDP, ICMPv4/6,
3441 IGMP and Raw, across a wide variety of interface types, and understands BPF
3442 filter logic in the same fashion as more common packet sniffing tools, such as
3443 tcpdump and snoop.")
3444 (license license:bsd-3)))