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