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