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