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