gnu: emacs-org, emacs-org-contrib: Update to 20171016.
[jackhill/guix/guix.git] / gnu / packages / admin.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
89e34644 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
340c7033 3;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
75418ae0 4;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
bf5b6fb2 5;;; Copyright © 2014, 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
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>
765973cd 9;;; Copyright © 2016 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>
4fb14fad 12;;; Copyright © 2016, 2017 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>
1b5b24c9 15;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
7fae2063 16;;; Copyright © 2016, 2017 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>
1df895b0 21;;;
233e7676 22;;; This file is part of GNU Guix.
1df895b0 23;;;
233e7676 24;;; GNU Guix is free software; you can redistribute it and/or modify it
1df895b0
LC
25;;; under the terms of the GNU General Public License as published by
26;;; the Free Software Foundation; either version 3 of the License, or (at
27;;; your option) any later version.
28;;;
233e7676 29;;; GNU Guix is distributed in the hope that it will be useful, but
1df895b0
LC
30;;; WITHOUT ANY WARRANTY; without even the implied warranty of
31;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32;;; GNU General Public License for more details.
33;;;
34;;; You should have received a copy of the GNU General Public License
233e7676 35;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
1df895b0 36
4aeea896 37(define-module (gnu packages admin)
f61e0e79 38 #:use-module ((guix licenses) #:prefix license:)
1df895b0 39 #:use-module (guix packages)
4fb7e0de 40 #:use-module (guix utils)
1df895b0 41 #:use-module (guix download)
aaff68ee 42 #:use-module (guix git-download)
fbc1a58f 43 #:use-module (guix build-system cmake)
1df895b0 44 #:use-module (guix build-system gnu)
4ecfbda7 45 #:use-module (guix build-system python)
c773aba8 46 #:use-module (guix build-system trivial)
59a43334 47 #:use-module (gnu packages)
c73d4c92 48 #:use-module (gnu packages base)
3d7a157c 49 #:use-module (gnu packages cyrus-sasl)
9a9e72d5 50 #:use-module (gnu packages ncurses)
9927622f 51 #:use-module (gnu packages readline)
f15164e7 52 #:use-module (gnu packages linux)
d0457553 53 #:use-module (gnu packages lua)
f15164e7 54 #:use-module (gnu packages guile)
1dba6407 55 #:use-module (gnu packages gettext)
d0457553 56 #:use-module (gnu packages pcre)
c73d4c92 57 #:use-module (gnu packages perl)
87216303 58 #:use-module (gnu packages tcl)
f61e0e79 59 #:use-module (gnu packages compression)
faa6bdf8 60 #:use-module (gnu packages cross-base)
a7fd7b68 61 #:use-module (gnu packages tls)
61bdd0d8 62 #:use-module (gnu packages gnupg)
02c86a5e
LC
63 #:use-module (gnu packages bison)
64 #:use-module (gnu packages flex)
65 #:use-module (gnu packages glib)
3d7a157c 66 #:use-module (gnu packages openldap)
c1f73569 67 #:use-module (gnu packages mcrypt)
87216303 68 #:use-module (gnu packages pkg-config)
b36fcf95 69 #:use-module (gnu packages popt)
1a0346f0 70 #:use-module (gnu packages python)
fccf2fe0 71 #:use-module (gnu packages texinfo)
e1485c7b 72 #:use-module (gnu packages groff)
42dc3af5 73 #:use-module (gnu packages pciutils)
d10fa5c7 74 #:use-module (gnu packages libunwind)
42dc3af5
MW
75 #:use-module (gnu packages libusb)
76 #:use-module (gnu packages libftdi)
c4492a16 77 #:use-module (gnu packages image)
da6c3749 78 #:use-module (gnu packages xorg)
d10fa5c7 79 #:use-module (gnu packages xdisorg)
d525da85 80 #:use-module (gnu packages python)
e932d371 81 #:use-module (gnu packages man)
5ec8b02d 82 #:use-module (gnu packages autotools)
83 #:use-module (gnu packages gnome)
89e34644 84 #:use-module (gnu packages kerberos)
58989684
CAW
85 #:use-module (gnu packages gtk)
86 #:use-module (gnu packages xml))
f15164e7 87
c1f73569
RW
88(define-public aide
89 (package
90 (name "aide")
b067ad3e 91 (version "0.16")
c1f73569
RW
92 (source (origin
93 (method url-fetch)
94 (uri (string-append "mirror://sourceforge/aide/aide/"
95 version "/aide-" version ".tar.gz"))
96 (sha256
97 (base32
b067ad3e 98 "0ibkv4z2gk14fn014kq13rp2ysiq6nn2cflv2q5i7zf466hm6758"))))
c1f73569
RW
99 (build-system gnu-build-system)
100 (native-inputs
101 `(("bison" ,bison)
102 ("flex" ,flex)))
103 (inputs
104 `(("libgcrypt" ,libgcrypt)
105 ("libgpg-error" ,libgpg-error)
106 ("libmhash" ,libmhash)
b067ad3e 107 ("pcre" ,pcre)
c1f73569
RW
108 ("zlib" ,zlib)))
109 (synopsis "File and directory integrity checker")
110 (description
111 "AIDE (Advanced Intrusion Detection Environment) is a file and directory
112integrity checker. It creates a database from the regular expression rules
113that it finds from its configuration files. Once this database is initialized
114it can be used to verify the integrity of the files. It has several message
115digest algorithms that are used to check the integrity of files. All of the
116usual file attributes can be checked for inconsistencies.")
117 (home-page "http://aide.sourceforge.net/")
118 (license license:gpl2+)))
119
4971d5d0
RJ
120(define-public progress
121 (package
122 (name "progress")
eec9c4a7 123 (version "0.13.1")
4971d5d0
RJ
124 (source (origin
125 (method url-fetch)
126 (uri (string-append "https://github.com/Xfennec/"
127 name "/archive/v" version ".tar.gz"))
128 (sha256
eec9c4a7 129 (base32 "199rk6608q9m6l0fbjm0xl2w1c5krf8245dqnksdp4rqp7l9ak06"))
4971d5d0
RJ
130 (file-name (string-append name "-" version ".tar.gz"))))
131 (build-system gnu-build-system)
eec9c4a7
TGR
132 (native-inputs
133 `(("pkg-config" ,pkg-config)
134 ("which" ,which)))
4971d5d0
RJ
135 (inputs
136 `(("ncurses" ,ncurses)))
137 (arguments
138 `(#:tests? #f ; There is no test suite.
eec9c4a7 139 #:make-flags (list "CC=gcc"
4971d5d0
RJ
140 (string-append "PREFIX=" (assoc-ref %outputs "out")))
141 #:phases
142 (modify-phases %standard-phases
143 (delete 'configure)))) ; There's no configure phase.
144 (home-page "https://github.com/Xfennec/progress")
145 (synopsis "Program to view the progress of the coreutils commands")
146 (description "A program that looks for coreutils basic commands (cp, mv,
147dd, tar, gzip/gunzip, cat, etc.) currently running on your system and displays
148the percentage of copied data. It can also show estimated time and throughput,
149and provides a \"top-like\" mode (monitoring).")
150 (license license:gpl3+)))
151
e932d371 152(define-public shepherd
133056bd
LC
153 (package
154 (name "shepherd")
95088559 155 (version "0.3.2")
133056bd
LC
156 (source (origin
157 (method url-fetch)
158 (uri (string-append "ftp://alpha.gnu.org/gnu/dmd/shepherd-"
159 version ".tar.gz"))
160 (sha256
161 (base32
95088559 162 "174q1qg7yg6w1hfvlfv720hr6hid4h5xzw15y3ycfpspllzldhcb"))))
133056bd
LC
163 (build-system gnu-build-system)
164 (arguments
165 '(#:configure-flags '("--localstatedir=/var")))
425ab478
LC
166 (native-inputs
167 `(("pkg-config" ,pkg-config)
168
169 ;; This is the Guile we use as a cross-compiler...
c8eb2b8c 170 ("guile" ,guile-2.2)))
425ab478
LC
171 (inputs
172 ;; ... and this is the one that appears in shebangs when cross-compiling.
c8eb2b8c 173 `(("guile" ,guile-2.2)))
133056bd
LC
174 (synopsis "System service manager")
175 (description
176 "The GNU Shepherd is a daemon-managing daemon, meaning that it supervises
177the execution of system services, replacing similar functionality found in
178typical init systems. It provides dependency-handling through a convenient
179interface and is based on GNU Guile.")
180 (license license:gpl3+)
95088559
LC
181 (home-page "https://www.gnu.org/software/shepherd/")
182 (properties '((ftp-server . "alpha.gnu.org")))))
e932d371 183
fbc1a58f
CR
184(define-public dfc
185 (package
186 (name "dfc")
180d7ac1 187 (version "3.0.4")
fbc1a58f
CR
188 (source
189 (origin
190 (method url-fetch)
191 (uri (string-append
180d7ac1 192 "http://projects.gw-computing.net/attachments/download/79/dfc-"
fbc1a58f
CR
193 version ".tar.gz"))
194 (sha256
195 (base32
180d7ac1 196 "0zk1ppx93ijimf4sbgqilxxikpsa2gmpbynknyh41xy7jbdjxp0b"))))
fbc1a58f
CR
197 (build-system cmake-build-system)
198 (arguments '(#:tests? #f)) ; There are no tests.
b94a6ca0 199 (native-inputs `(("gettext" ,gettext-minimal)))
fbc1a58f
CR
200 (home-page "http://projects.gw-computing.net/projects/dfc")
201 (synopsis "Display file system space usage using graphs and colors")
202 (description
203 "dfc (df color) is a modern version of df. It uses colors, draws pretty
204graphs and can export its output to different formats.")
f61e0e79 205 (license license:bsd-3)))
fbc1a58f 206
340c7033
CR
207(define-public htop
208 (package
209 (name "htop")
621954ba 210 (version "2.0.2")
340c7033
CR
211 (source (origin
212 (method url-fetch)
20e6c852 213 (uri (string-append "http://hisham.hm/htop/releases/"
340c7033
CR
214 version "/htop-" version ".tar.gz"))
215 (sha256
216 (base32
621954ba 217 "11zlwadm6dpkrlfvf3z3xll26yyffa7qrxd1w72y1kl0rgffk6qp"))))
340c7033
CR
218 (build-system gnu-build-system)
219 (inputs
220 `(("ncurses" ,ncurses)))
221 (home-page "http://htop.sourceforge.net/")
222 (synopsis "Interactive process viewer")
223 (description
224 "This is htop, an interactive process viewer. It is a text-mode
225application (for console or X terminals) and requires ncurses.")
f61e0e79 226 (license license:gpl2)))
340c7033 227
1df895b0
LC
228(define-public pies
229 (package
230 (name "pies")
a9764b7d 231 (version "1.3")
1df895b0
LC
232 (source
233 (origin
a9764b7d
LC
234 (method url-fetch)
235 (uri (string-append "mirror://gnu/pies/pies-"
236 version ".tar.bz2"))
237 (sha256
238 (base32
239 "12r7rjjyibjdj08dvwbp0iflfpzl4s0zhn6cr6zj3hwf9gbzgl1g"))))
1df895b0 240 (build-system gnu-build-system)
a9764b7d
LC
241 (arguments
242 '(#:phases (modify-phases %standard-phases
243 (add-before 'build 'patch-/bin/sh
244 (lambda* (#:key inputs #:allow-other-keys)
245 ;; Use the right shell when executing user-provided
246 ;; shell commands.
247 (let ((bash (assoc-ref inputs "bash")))
248 (substitute* "src/progman.c"
249 (("\"/bin/sh\"")
250 (string-append "\"" bash "/bin/sh\"")))
251 #t))))))
6fd52309 252 (home-page "https://www.gnu.org/software/pies/")
f50d2669 253 (synopsis "Program invocation and execution supervisor")
1df895b0 254 (description
79c311b8 255 "GNU pies is a program that supervises the invocation and execution of
a22dc0c4
LC
256other programs. It reads the list of programs to be started from its
257configuration file, executes them, and then monitors their status,
258re-executing them as necessary.")
f61e0e79 259 (license license:gpl3+)))
1df895b0
LC
260
261(define-public inetutils
262 (package
263 (name "inetutils")
8b1c8e4e 264 (version "1.9.4")
01eafd38
LC
265 (source (origin
266 (method url-fetch)
267 (uri (string-append "mirror://gnu/inetutils/inetutils-"
268 version ".tar.gz"))
269 (sha256
270 (base32
8b1c8e4e 271 "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy"))))
1df895b0 272 (build-system gnu-build-system)
483188b7 273 (arguments
e4015e57
LC
274 `(#:configure-flags '("--localstatedir=/var"
275
276 ;; Make sure 'PATH_PROCNET_DEV' gets defined when
277 ;; cross-compiling (by default it does not.)
278 ,@(if (%current-target-system)
279 '("--with-path-procnet-dev=/proc/net/dev")
280 '()))
ed6a21b4
MB
281 ;; On some systems, 'libls.sh' may fail with an error such as:
282 ;; "Failed to tell switch -a apart from -A".
283 #:parallel-tests? #f))
9927622f 284 (inputs `(("ncurses" ,ncurses)
6f5d28f9
MC
285 ("readline" ,readline))) ;for 'ftp'
286 (native-inputs `(("netstat" ,net-tools))) ;for tests
6fd52309 287 (home-page "https://www.gnu.org/software/inetutils/")
f50d2669 288 (synopsis "Basic networking utilities")
1df895b0 289 (description
a22dc0c4 290 "Inetutils is a collection of common network programs, such as an ftp
e048de60
LF
291client and server, a telnet client and server, an rsh client and server, and
292hostname.")
f61e0e79 293 (license license:gpl3+)))
9a9e72d5
LC
294
295(define-public shadow
296 (package
297 (name "shadow")
b193fb28 298 (version "4.5")
9a9e72d5 299 (source (origin
ca2a55d4
SB
300 (method url-fetch)
301 (uri (string-append
4153ef23 302 "https://github.com/shadow-maint/shadow/releases/"
303 "download/" version "/shadow-" version ".tar.xz"))
ca2a55d4
SB
304 (sha256
305 (base32
b193fb28 306 "0hdpai78n63l3v3fgr3kkiqzhd0awrpfnnzz4mf7lmxdh61qb37w"))))
9a9e72d5
LC
307 (build-system gnu-build-system)
308 (arguments
ce6223e6 309 `(;; Assume System V `setpgrp (void)', which is the default on GNU
9a9e72d5 310 ;; variants (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
52701a3d 311 #:configure-flags
312 '("--with-libpam" "ac_cv_func_setpgrp_void=yes")
9a9e72d5 313
52701a3d 314 #:phases
315 (modify-phases %standard-phases
316 (add-before 'build 'set-nscd-file-name
317 (lambda* (#:key inputs #:allow-other-keys)
318 ;; Use the right file name for nscd.
ce6223e6
LC
319 (let ((libc (assoc-ref inputs
320 ,(if (%current-target-system)
321 "cross-libc"
322 "libc"))))
52701a3d 323 (substitute* "lib/nscd.c"
324 (("/usr/sbin/nscd")
325 (string-append libc "/sbin/nscd"))))))
326 (add-after 'install 'remove-groups
327 (lambda* (#:key outputs #:allow-other-keys)
328 ;; Remove `groups', which is already provided by Coreutils.
329 (let* ((out (assoc-ref outputs "out"))
330 (bin (string-append out "/bin"))
331 (man (string-append out "/share/man")))
332 (delete-file (string-append bin "/groups"))
333 (for-each delete-file (find-files man "^groups\\."))
334 #t))))))
9a9e72d5 335
5dfbd769
LC
336 (inputs (if (string-contains (or (%current-target-system)
337 (%current-system))
338 "-linux")
339 `(("linux-pam" ,linux-pam))
340 '()))
9a9e72d5
LC
341 (home-page "http://pkg-shadow.alioth.debian.org/")
342 (synopsis "Authentication-related tools such as passwd, su, and login")
343 (description
344 "Shadow provides a number of authentication-related tools, including:
345login, passwd, su, groupadd, and useradd.")
346
347 ;; The `vipw' program is GPLv2+.
348 ;; libmisc/salt.c is public domain.
f61e0e79 349 (license license:bsd-3)))
1e151896
LC
350
351(define-public mingetty
352 (package
353 (name "mingetty")
354 (version "1.08")
355 (source (origin
356 (method url-fetch)
de67e922
LF
357 (uri (string-append "mirror://sourceforge/mingetty/mingetty/"
358 version "/mingetty-" version ".tar.gz"))
1e151896
LC
359 (sha256
360 (base32
361 "05yxrp44ky2kg6qknk1ih0kvwkgbn9fbz77r3vci7agslh5wjm8g"))))
362 (build-system gnu-build-system)
363 (arguments
dc1d3cde
KK
364 `(#:phases
365 (modify-phases %standard-phases
366 (replace 'configure
367 (lambda* (#:key inputs outputs #:allow-other-keys)
368 (let* ((out (assoc-ref outputs "out"))
369 (man8 (string-append out "/share/man/man8"))
370 (sbin (string-append out "/sbin"))
371 (shadow (assoc-ref inputs "shadow"))
372 (login (string-append shadow "/bin/login")))
373 (substitute* "Makefile"
374 (("^SBINDIR.*")
375 (string-append "SBINDIR = " out
376 "/sbin\n"))
377 (("^MANDIR.*")
378 (string-append "MANDIR = " out
379 "/share/man/man8\n")))
380
381 ;; Pick the right 'login' by default.
382 (substitute* "mingetty.c"
383 (("\"/bin/login\"")
384 (string-append "\"" login "\"")))
385
386 (mkdir-p sbin)
387 (mkdir-p man8))
388 #t)))
1e151896
LC
389 #:tests? #f)) ; no tests
390 (inputs `(("shadow" ,shadow)))
391
3b3b60d0 392 (home-page "https://sourceforge.net/projects/mingetty")
1e151896
LC
393 (synopsis "Getty for the text console")
394 (description
395 "Small console getty that is started on the Linux text console,
396asks for a login name and then transfers over to 'login'. It is extended to
397allow automatic login and starting any app.")
f61e0e79 398 (license license:gpl2+)))
c773aba8
LC
399
400(define-public net-base
401 (package
402 (name "net-base")
db719df7 403 (version "5.3")
c773aba8
LC
404 (source (origin
405 (method url-fetch)
406 (uri (string-append
34af3684 407 "mirror://debian/pool/main/n/netbase/netbase_"
db719df7 408 version ".tar.xz"))
c773aba8
LC
409 (sha256
410 (base32
db719df7 411 "12xqjwg3p4rzmmh2iib6sigm9l29y3dgk74mmnw64k84jnbwdxl1"))))
c773aba8
LC
412 (build-system trivial-build-system)
413 (arguments
414 `(#:modules ((guix build utils))
415 #:builder (begin
416 (use-modules (guix build utils)
417 (srfi srfi-26))
418
419 (let* ((source (assoc-ref %build-inputs "source"))
420 (tar (assoc-ref %build-inputs "tar"))
db719df7 421 (xz (assoc-ref %build-inputs "xz"))
c773aba8
LC
422 (output (assoc-ref %outputs "out"))
423 (etc (string-append output "/etc")))
db719df7 424 (setenv "PATH" (string-append xz "/bin"))
c773aba8
LC
425 (system* (string-append tar "/bin/tar") "xvf"
426 source)
427 (chdir ,(string-append "netbase-" version))
428 (mkdir-p etc)
429 (for-each copy-file
430 '("etc-services" "etc-protocols" "etc-rpc")
431 (map (cut string-append etc "/" <>)
432 '("services" "protocols" "rpc")))
433 #t))))
434 (native-inputs `(("tar" ,tar)
f61e0e79 435 ("xz" ,xz)))
c773aba8
LC
436 (synopsis "IANA protocol, port, and RPC number assignments")
437 (description
438 "This package provides the /etc/services, /etc/protocols, and /etc/rpc
439files, which contain information about the IANA-assigned port, protocol, and
e881752c 440ONC RPC numbers.")
c773aba8 441 (home-page "http://packages.debian.org/sid/netbase")
f61e0e79 442 (license license:gpl2)))
94c4a58a
LC
443
444(define-public netcat
445 (package
446 (name "netcat")
447 (version "0.7.1")
448 (source (origin
449 (method url-fetch)
de67e922
LF
450 (uri (string-append "mirror://sourceforge/netcat/netcat/" version
451 "/netcat-" version ".tar.bz2"))
94c4a58a
LC
452 (sha256
453 (base32
454 "1frjcdkhkpzk0f84hx6hmw5l0ynpmji8vcbaxg8h5k2svyxz0nmm"))))
455 (build-system gnu-build-system)
0e4e89c2
MW
456 (arguments
457 `(#:configure-flags
458 ;; By default, man and info pages are put in PREFIX/{man,info},
459 ;; but we want them in PREFIX/share/{man,info}.
460 (let ((out (assoc-ref %outputs "out")))
461 (list (string-append "--mandir=" out "/share/man")
462 (string-append "--infodir=" out "/share/info")))))
94c4a58a
LC
463 (home-page "http://netcat.sourceforge.net")
464 (synopsis "Read and write data over TCP/IP")
465 (description
466 "Netcat is a featured networking utility which reads and writes data
467across network connections, using the TCP/IP protocol. It is designed to be a
468reliable \"back-end\" tool that can be used directly or easily driven by other
35b9e423 469programs and scripts. At the same time, it is a feature-rich network debugging
94c4a58a
LC
470and exploration tool, since it can create almost any kind of connection you
471would need and has several interesting built-in capabilities.")
f61e0e79 472 (license license:gpl2+)))
d038cac1
LC
473
474(define-public alive
475 (package
476 (name "alive")
477 (version "2.0.2")
478 (source (origin
479 (method url-fetch)
480 (uri (string-append "mirror://gnu/alive/alive-"
481 version ".tar.xz"))
482 (sha256
483 (base32
484 "1vrzg51ai68x9yld7vbgl58sxaw5qpx8rbakwcxn4cqq6vpxj38j"))))
485 (build-system gnu-build-system)
486 (arguments '(#:configure-flags '("alive_cv_nice_ping=yes")))
487 (inputs `(("guile" ,guile-2.0)
488 ("inetutils" ,inetutils)))
6fd52309 489 (home-page "https://www.gnu.org/software/alive/")
d038cac1
LC
490 (synopsis "Autologin and keep-alive daemon")
491 (description
492 "GNU Alive sends periodic pings to a server, generally to keep a
493connection alive.")
f61e0e79 494 (license license:gpl3+)))
c73d4c92
LC
495
496(define-public isc-dhcp
6548b1e1
MW
497 (let* ((bind-major-version "9")
498 (bind-minor-version "9")
001f8cdc 499 (bind-patch-version "10")
8be2428e 500 (bind-release-type "-P") ; for patch release, use "-P"
2472f7a8 501 (bind-release-version "3") ; for patch release, e.g. "6"
6548b1e1
MW
502 (bind-version (string-append bind-major-version
503 "."
504 bind-minor-version
505 "."
506 bind-patch-version
507 bind-release-type
508 bind-release-version)))
509 (package
510 (name "isc-dhcp")
86c61a6b 511 (version "4.3.5")
6548b1e1
MW
512 (source (origin
513 (method url-fetch)
514 (uri (string-append "http://ftp.isc.org/isc/dhcp/"
515 version "/dhcp-" version ".tar.gz"))
516 (sha256
517 (base32
86c61a6b 518 "0m7rwxvpb7xrmfl9ynpckhl0hi0xgm9bq1fmbp2r68sxy5mr75gb"))))
6548b1e1
MW
519 (build-system gnu-build-system)
520 (arguments
e54465ff
MW
521 `(#:parallel-build? #f
522 #:phases
6548b1e1
MW
523 (modify-phases %standard-phases
524 (add-after 'unpack 'replace-bundled-bind
525 (lambda* (#:key inputs #:allow-other-keys)
526 (delete-file "bind/bind.tar.gz")
527 (copy-file (assoc-ref inputs "bind-source-tarball")
528 "bind/bind.tar.gz")
529 (chmod "bind/bind.tar.gz" #o644)
530 (substitute* "bind/version.tmp"
531 (("^MAJORVER=.*")
532 (format #f "MAJORVER=~a\n" ,bind-major-version))
533 (("^MINORVER=.*")
534 (format #f "MINORVER=~a\n" ,bind-minor-version))
535 (("^PATCHVER=.*")
536 (format #f "PATCHVER=~a\n" ,bind-patch-version))
537 (("^RELEASETYPE=.*")
538 (format #f "RELEASETYPE=~a\n" ,bind-release-type))
539 (("^RELEASEVER=.*")
540 (format #f "RELEASEVER=~a\n" ,bind-release-version)))
541 #t))
542 (add-after 'configure 'post-configure
543 (lambda* (#:key outputs #:allow-other-keys)
544 ;; Point to the right client script, which will be
545 ;; installed in a later phase.
546 (substitute* "includes/dhcpd.h"
547 (("#define[[:blank:]]+_PATH_DHCLIENT_SCRIPT.*")
548 (let ((out (assoc-ref outputs "out")))
549 (string-append "#define _PATH_DHCLIENT_SCRIPT \""
550 out "/libexec/dhclient-script"
551 "\"\n"))))
c73d4c92 552
6548b1e1
MW
553 ;; During the 'build' phase, 'bind.tar.gz' is extracted, so
554 ;; we must patch shebangs in there and make sure the right
555 ;; shell is used.
556 (with-directory-excursion "bind"
557 (substitute* "Makefile"
558 (("\\./configure")
559 (let ((sh (which "sh")))
560 (string-append "./configure CONFIG_SHELL="
561 sh " SHELL=" sh))))
c73d4c92 562
6548b1e1
MW
563 (let ((bind-directory (string-append "bind-" ,bind-version)))
564 (system* "tar" "xf" "bind.tar.gz")
565 (for-each patch-shebang
566 (find-files bind-directory ".*"))
567 (zero? (system* "tar" "cf" "bind.tar.gz"
568 bind-directory
569 ;; avoid non-determinism in the archive
570 "--sort=name"
571 "--mtime=@0"
572 "--owner=root:0"
573 "--group=root:0"))))))
574 (add-after 'install 'post-install
575 (lambda* (#:key inputs outputs #:allow-other-keys)
576 ;; Install the dhclient script for GNU/Linux and make sure
577 ;; if finds all the programs it needs.
578 (let* ((out (assoc-ref outputs "out"))
579 (libexec (string-append out "/libexec"))
580 (coreutils (assoc-ref inputs "coreutils"))
581 (inetutils (assoc-ref inputs "inetutils"))
582 (net-tools (assoc-ref inputs "net-tools"))
583 (sed (assoc-ref inputs "sed")))
584 (substitute* "client/scripts/linux"
585 (("/sbin/ip")
586 (string-append (assoc-ref inputs "iproute")
587 "/sbin/ip")))
c73d4c92 588
6548b1e1
MW
589 (mkdir-p libexec)
590 (copy-file "client/scripts/linux"
591 (string-append libexec "/dhclient-script"))
c73d4c92 592
6548b1e1
MW
593 (wrap-program
594 (string-append libexec "/dhclient-script")
595 `("PATH" ":" prefix
596 ,(map (lambda (dir)
597 (string-append dir "/bin:"
598 dir "/sbin"))
599 (list inetutils net-tools coreutils sed))))))))))
c73d4c92 600
6548b1e1 601 (native-inputs `(("perl" ,perl)))
c73d4c92 602
6548b1e1
MW
603 (inputs `(("inetutils" ,inetutils)
604 ("net-tools" ,net-tools)
605 ("iproute" ,iproute)
dc343935 606
6548b1e1
MW
607 ;; XXX isc-dhcp bundles a copy of bind that has security
608 ;; flaws, so we use a newer version.
609 ("bind-source-tarball"
610 ,(origin
611 (method url-fetch)
612 (uri (string-append "http://ftp.isc.org/isc/bind9/"
613 bind-version
614 "/bind-" bind-version ".tar.gz"))
615 (sha256
616 (base32
2472f7a8 617 "00yh1d5shrq7y0kfwacax4f8dc0akaa2fha430j92n7mshms65m1"))))
c73d4c92 618
6548b1e1
MW
619 ;; When cross-compiling, we need the cross Coreutils and sed.
620 ;; Otherwise just use those from %FINAL-INPUTS.
621 ,@(if (%current-target-system)
622 `(("coreutils" ,coreutils)
623 ("sed" ,sed))
624 '())))
625
626 (home-page "http://www.isc.org/products/DHCP/")
627 (synopsis "Dynamic Host Configuration Protocol (DHCP) tools")
628 (description
629 "ISC's Dynamic Host Configuration Protocol (DHCP) distribution provides a
c73d4c92
LC
630reference implementation of all aspects of DHCP, through a suite of DHCP
631tools: server, client, and relay agent.")
159a5e01
LC
632 (license license:isc)
633 (properties '((cpe-name . "dhcp"))))))
02c86a5e
LC
634
635(define-public libpcap
636 (package
637 (name "libpcap")
df4a2b44 638 (version "1.8.1")
02c86a5e
LC
639 (source (origin
640 (method url-fetch)
641 (uri (string-append "http://www.tcpdump.org/release/libpcap-"
642 version ".tar.gz"))
643 (sha256
644 (base32
df4a2b44 645 "07jlhc66z76dipj4j5v3dig8x6h3k6cb36kmnmpsixf3zmlvqgb7"))))
02c86a5e
LC
646 (build-system gnu-build-system)
647 (native-inputs `(("bison" ,bison) ("flex" ,flex)))
e03f6d5e
RW
648 (arguments '(#:configure-flags '("--with-pcap=linux")
649 #:tests? #f)) ; no 'check' target
02c86a5e
LC
650 (home-page "http://www.tcpdump.org")
651 (synopsis "Network packet capture library")
652 (description
653 "libpcap is an interface for user-level packet capture. It provides a
654portable framework for low-level network monitoring. Applications include
655network statistics collection, security monitoring, network debugging, etc.")
656
657 ;; fad-*.c and a couple other files are BSD-4, but the rest is BSD-3.
f61e0e79 658 (license license:bsd-3)))
02c86a5e 659
1da34f5a
LC
660(define-public tcpdump
661 (package
662 (name "tcpdump")
81635ad0 663 (version "4.9.2")
1da34f5a
LC
664 (source (origin
665 (method url-fetch)
73a2ef36
LF
666 (uri (string-append "http://www.tcpdump.org/release/tcpdump-"
667 version ".tar.gz"))
1da34f5a
LC
668 (sha256
669 (base32
81635ad0 670 "0ygy0layzqaj838r5xd613iraz09wlfgpyh7pc6cwclql8v3b2vr"))))
1da34f5a 671 (build-system gnu-build-system)
10db1e6c 672 (inputs `(("libpcap" ,libpcap)
cc2b77df 673 ("openssl" ,openssl)))
1da34f5a 674 (native-inputs `(("perl" ,perl))) ; for tests
1da34f5a
LC
675 (home-page "http://www.tcpdump.org/")
676 (synopsis "Network packet analyzer")
677 (description
678 "Tcpdump is a command-line tool to analyze network traffic passing
679through the network interface controller.")
f61e0e79 680 (license license:bsd-3)))
1da34f5a 681
02c86a5e
LC
682(define-public jnettop
683 (package
684 (name "jnettop")
685 (version "0.13.0")
686 (source (origin
687 (method url-fetch)
688 (uri (string-append "http://jnettop.kubs.info/dist/jnettop-"
689 version ".tar.gz"))
690 (sha256
691 (base32
692 "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9"))))
693 (build-system gnu-build-system)
694 (native-inputs
695 `(("pkg-config" ,pkg-config)))
696 (inputs
697 `(("glib" ,glib)
698 ("ncurses" ,ncurses)
699 ("libpcap" ,libpcap)))
700 (home-page "http://jnettop.kubs.info/")
701 (synopsis "Visualize network traffic by bandwidth use")
702 (description
703 "Jnettop is a traffic visualiser, which captures traffic going
704through the host it is running from and displays streams sorted
705by bandwidth they use.")
f61e0e79 706 (license license:gpl2+)))
87216303
EB
707
708(define-public clusterssh
709 (package
710 (name "clusterssh")
711 (version "3.28")
712 (source (origin
713 (method url-fetch)
714 (uri (string-append "mirror://sourceforge/clusterssh/"
de67e922
LF
715 "1.%20ClusterSSH%20Series%203/" version
716 "/clusterssh-" version ".tar.gz"))
87216303
EB
717 (sha256
718 (base32
719 "1bwggpvaj2al5blg1ynapviv2kpydffpzq2zkhi81najnvzc1rr7"))))
720 (build-system gnu-build-system)
721 (inputs `(("perl" ,perl)))
722 (propagated-inputs `(("xterm" ,xterm)
723 ("perl-tk" ,perl-tk)
724 ("perl-x11-protocol" ,perl-x11-protocol)))
725 (arguments
726 `(#:phases
dc1d3cde
KK
727 (modify-phases %standard-phases
728 (add-after 'install 'set-load-paths
729 (lambda* (#:key inputs outputs #:allow-other-keys)
730 ;; Put the perl-tk and perl-x11-protocol modules in the perl inc
731 ;; path for PROG
732 (let* ((out (assoc-ref outputs "out"))
733 (prog (string-append out "/bin/cssh"))
734 (perl-ver ,(package-version perl))
735 (x11-inc (string-append
736 (assoc-ref inputs "perl-x11-protocol")
737 "/lib/perl5/site_perl/" perl-ver))
738 (tk-inc (string-append
739 (assoc-ref inputs "perl-tk")
740 "/lib/perl5/site_perl/" perl-ver
741 "/x86_64-linux")))
742 (wrap-program
743 prog
744 `("PERL5LIB" ":" prefix (,x11-inc ,tk-inc))))
745 #t)))))
87216303 746 ;; The clusterssh.sourceforge.net address requires login to view
3b3b60d0 747 (home-page "https://sourceforge.net/projects/clusterssh/")
87216303
EB
748 (synopsis "Secure concurrent multi-server terminal control")
749 (description
750 "ClusterSSH controls a number of xterm windows via a single graphical
751console window to allow commands to be interactively run on multiple servers
752over ssh connections.")
f61e0e79 753 (license license:gpl2+)))
fccf2fe0
LC
754
755(define-public rottlog
756 (package
757 (name "rottlog")
758 (version "0.72.2")
759 (source (origin
760 (method url-fetch)
761 (uri (string-append "mirror://gnu/rottlog/rottlog-"
762 version ".tar.gz"))
763 (sha256
764 (base32
765 "0751mb9l2f0jrk3vj6q8ilanifd121dliwk0c34g8k0dlzsv3kd7"))
766 (modules '((guix build utils)))
767 (snippet
768 '(substitute* "Makefile.in"
769 (("-o \\$\\{LOG_OWN\\} -g \\$\\{LOG_GROUP\\}")
770 ;; Don't try to chown root.
771 "")
772 (("mkdir -p \\$\\(ROTT_STATDIR\\)")
773 ;; Don't attempt to create /var/lib/rottlog.
774 "true")))))
775 (build-system gnu-build-system)
776 (arguments
268ad34e 777 '(#:configure-flags (list "ROTT_ETCDIR=/etc/rottlog" ;rc file location
fccf2fe0 778 "--localstatedir=/var")
268ad34e
LC
779
780 ;; Install example config files in OUT/etc.
781 #:make-flags (list (string-append "ROTT_ETCDIR="
782 (assoc-ref %outputs "out")
783 "/etc"))
784
8dc0ecae 785 #:phases (modify-phases %standard-phases
11e74634
JN
786 (add-after 'build 'set-packdir
787 (lambda _
788 ;; Set a default location for archived logs.
789 (substitute* "rc/rc"
790 (("packdir=\"\"")
791 "packdir=\"/var/log\""))
792 #t))
309e523e
LC
793 (add-before 'install 'tweak-rc-weekly
794 (lambda _
795 (substitute* "rc/weekly"
796 (("/bin/kill")
797 (which "kill"))
798 (("syslogd\\.pid")
799 ;; The file is called 'syslog.pid' (no 'd').
800 "syslog.pid"))
801 #t))
8dc0ecae
LC
802 (add-after 'install 'install-info
803 (lambda _
804 (zero? (system* "make" "install-info")))))))
fccf2fe0
LC
805 (native-inputs `(("texinfo" ,texinfo)
806 ("util-linux" ,util-linux))) ; for 'cal'
6fd52309 807 (home-page "https://www.gnu.org/software/rottlog/")
fccf2fe0
LC
808 (synopsis "Log rotation and management")
809 (description
810 "GNU Rot[t]log is a program for managing log files. It is used to
811automatically rotate out log files when they have reached a given size or
812according to a given schedule. It can also be used to automatically compress
813and archive such logs. Rot[t]log will mail reports of its activity to the
814system administrator.")
f61e0e79 815 (license license:gpl3+)))
e1485c7b
LC
816
817(define-public sudo
818 (package
819 (name "sudo")
4b052c6a 820 (version "1.8.21p2")
e1485c7b
LC
821 (source (origin
822 (method url-fetch)
823 (uri
6baa83d2 824 (list (string-append "https://www.sudo.ws/sudo/dist/sudo-"
e1485c7b
LC
825 version ".tar.gz")
826 (string-append "ftp://ftp.sudo.ws/pub/sudo/OLD/sudo-"
827 version ".tar.gz")))
828 (sha256
829 (base32
4b052c6a 830 "0s33szq6q59v5s377l4v6ybsdy7pfq6sz7y364j4x09ssdn79ibl"))
6b7f1b6c
MB
831 (modules '((guix build utils)))
832 (snippet
833 '(delete-file-recursively "lib/zlib"))))
e1485c7b
LC
834 (build-system gnu-build-system)
835 (arguments
0086ec73
LC
836 `(#:configure-flags
837 (list "--with-logpath=/var/log/sudo.log"
7b78f359 838 "--with-rundir=/var/run/sudo" ;must be cleaned up at boot time
0086ec73
LC
839 "--with-vardir=/var/db/sudo"
840 "--with-iologdir=/var/log/sudo-io"
841
842 ;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
843 ;; provide it.
844 (string-append "CPPFLAGS=-D_PATH_MV='\""
845 (assoc-ref %build-inputs "coreutils")
846 "/bin/mv\"'"))
511495fb
LC
847
848 ;; Avoid non-determinism; see <http://bugs.gnu.org/21918>.
849 #:parallel-build? #f
850
7fae2063
TGR
851 #:phases
852 (modify-phases %standard-phases
853 (add-before 'configure 'pre-configure
854 (lambda _
855 (substitute* "src/sudo_usage.h.in"
856 ;; Do not capture 'configure' arguments since we would
857 ;; unduly retain references, and also because the
858 ;; CPPFLAGS above would close the string literal
859 ;; prematurely.
860 (("@CONFIGURE_ARGS@") "\"\""))
861 (substitute* (find-files "." "Makefile\\.in")
862 (("-o [[:graph:]]+ -g [[:graph:]]+")
863 ;; Allow installation as non-root.
864 "")
865 (("^install: (.*)install-sudoers(.*)" _ before after)
866 ;; Don't try to create /etc/sudoers.
867 (string-append "install: " before after "\n"))
868 (("\\$\\(DESTDIR\\)\\$\\(rundir\\)")
869 ;; Don't try to create /run/sudo.
870 "$(TMPDIR)/dummy")
871 (("\\$\\(DESTDIR\\)\\$\\(vardir\\)")
872 ;; Don't try to create /var/db/sudo.
4b052c6a
EF
873 "$(TMPDIR)/dummy"))
874 #t)))
e1485c7b
LC
875
876 ;; XXX: The 'testsudoers' test series expects user 'root' to exist, but
877 ;; the chroot's /etc/passwd doesn't have it. Turn off the tests.
878 #:tests? #f))
879 (inputs
880 `(("groff" ,groff)
881 ("linux-pam" ,linux-pam)
6b7f1b6c 882 ("zlib" ,zlib)
e1485c7b 883 ("coreutils" ,coreutils)))
6baa83d2 884 (home-page "https://www.sudo.ws/")
e1485c7b
LC
885 (synopsis "Run commands as root")
886 (description
887 "Sudo (su \"do\") allows a system administrator to delegate authority to
888give certain users (or groups of users) the ability to run some (or all)
889commands as root or another user while providing an audit trail of the
890commands and their arguments.")
891
892 ;; See <http://www.sudo.ws/sudo/license.html>.
f61e0e79 893 (license license:x11)))
952298d7 894
1ce6f43a 895(define-public wpa-supplicant-minimal
952298d7 896 (package
1ce6f43a 897 (name "wpa-supplicant-minimal")
fc008121 898 (version "2.6")
952298d7
LC
899 (source (origin
900 (method url-fetch)
901 (uri (string-append
9a727700 902 "http://w1.fi/releases/wpa_supplicant-"
952298d7
LC
903 version
904 ".tar.gz"))
905 (sha256
906 (base32
fc008121 907 "0l0l5gz3d5j9bqjsbjlfcv4w4jwndllp9fmyai4x9kg6qhs6v4xl"))))
952298d7
LC
908 (build-system gnu-build-system)
909 (arguments
dc1d3cde
KK
910 '(#:phases
911 (modify-phases %standard-phases
912 (replace 'configure
913 (lambda* (#:key outputs #:allow-other-keys)
914 (chdir "wpa_supplicant")
915 (copy-file "defconfig" ".config")
916 (let ((port (open-file ".config" "al")))
917 (display "
952298d7 918 CONFIG_DEBUG_SYSLOG=y
40b4c6d6 919
61bdd0d8
LC
920 # Choose GnuTLS (the default is OpenSSL.)
921 CONFIG_TLS=gnutls
922
952298d7
LC
923 CONFIG_DRIVER_NL80211=y
924 CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
925 CONFIG_LIBNL32=y
926 CONFIG_READLINE=y\n" port)
dc1d3cde
KK
927 (close-port port))))
928 (add-after 'install 'install-man-pages
929 (lambda* (#:key outputs #:allow-other-keys)
930 (let* ((out (assoc-ref outputs "out"))
931 (man (string-append out "/share/man"))
932 (man5 (string-append man "/man5"))
933 (man8 (string-append man "/man8")))
934 (define (copy-man-page target)
935 (lambda (file)
936 (install-file file target)))
937
938 (mkdir-p man5) (mkdir man8)
939 (for-each (copy-man-page man5)
940 (find-files "doc/docbook" "\\.5"))
941 (for-each (copy-man-page man8)
942 (find-files "doc/docbook" "\\.8"))
943 #t))))
952298d7
LC
944
945 #:make-flags (list "CC=gcc"
946 (string-append "BINDIR=" (assoc-ref %outputs "out")
947 "/sbin")
948 (string-append "LIBDIR=" (assoc-ref %outputs "out")
949 "/lib"))
950 #:tests? #f))
951 (inputs
952 `(("readline" ,readline)
953 ("libnl" ,libnl)
61bdd0d8
LC
954 ("gnutls" ,gnutls)
955 ("libgcrypt" ,libgcrypt))) ;needed by crypto_gnutls.c
952298d7
LC
956 (native-inputs
957 `(("pkg-config" ,pkg-config)))
9a727700 958 (home-page "http://w1.fi/wpa_supplicant/")
952298d7
LC
959 (synopsis "Connecting to WPA and WPA2-protected wireless networks")
960 (description
961 "wpa_supplicant is a WPA Supplicant with support for WPA and WPA2 (IEEE
962802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in
963the client stations. It implements key negotiation with a WPA Authenticator
964and it controls the roaming and IEEE 802.11 authentication/association of the
965WLAN driver.
966
967This package provides the 'wpa_supplicant' daemon and the 'wpa_cli' command.")
968
969 ;; In practice, this is linked against Readline, which makes it GPLv3+.
f61e0e79 970 (license license:bsd-3)))
c6b76405 971
4fb7e0de 972(define-public wpa-supplicant
1ce6f43a 973 (package (inherit wpa-supplicant-minimal)
4fb7e0de
MW
974 (name "wpa-supplicant")
975 (inputs `(("dbus" ,dbus)
1ce6f43a 976 ,@(package-inputs wpa-supplicant-minimal)))
4fb7e0de 977 (arguments
1ce6f43a 978 (substitute-keyword-arguments (package-arguments wpa-supplicant-minimal)
4fb7e0de 979 ((#:phases phases)
dc1d3cde
KK
980 `(modify-phases ,phases
981 (add-after 'configure 'configure-for-dbus
982 (lambda _
983 (let ((port (open-file ".config" "al")))
984 (display "
4fb7e0de
MW
985 CONFIG_CTRL_IFACE_DBUS=y
986 CONFIG_CTRL_IFACE_DBUS_NEW=y
987 CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
dc1d3cde
KK
988 (close-port port))
989 #t))
990 (add-after 'install-man-pages 'install-dbus-conf
991 (lambda* (#:key outputs #:allow-other-keys)
992 (let* ((out (assoc-ref outputs "out"))
993 (dir (string-append out "/etc/dbus-1/system.d")))
994 (mkdir-p dir)
995 (copy-file "dbus/dbus-wpa_supplicant.conf"
996 (string-append dir "/wpa_supplicant.conf")))
997 #t))))))))
4fb7e0de 998
c6b76405
LC
999(define-public wakelan
1000 (package
1001 (name "wakelan")
1002 (version "1.1")
1003 (source (origin
1004 (method url-fetch)
1005 (uri (string-append
1006 "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
1007 version ".tar.gz"))
1008 (sha256
1009 (base32
1010 "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
1011 (build-system gnu-build-system)
1012 (arguments
dc1d3cde
KK
1013 '(#:phases
1014 (modify-phases %standard-phases
1015 (replace 'configure
1016 (lambda* (#:key outputs #:allow-other-keys)
1017 (let ((out (assoc-ref outputs "out")))
1018 (mkdir-p (string-append out "/bin"))
1019 (mkdir-p (string-append out "/share/man/man1"))
1020
1021 ;; It's an old configure script that doesn't understand
1022 ;; the extra options we pass.
1023 (setenv "CONFIG_SHELL" (which "bash"))
1024 (zero?
1025 (system* "./configure"
1026 (string-append "--prefix=" out)
1027 (string-append "--mandir=" out
1028 "/share/man")))))))
c6b76405
LC
1029 #:tests? #f))
1030 (home-page "http://kernel.org") ; really, no home page
1031 (synopsis "Send a wake-on-LAN packet")
1032 (description
1033 "WakeLan broadcasts a properly formatted UDP packet across the local area
1034network, which causes enabled computers to power on.")
f61e0e79 1035 (license license:gpl2+)))
d43f4296
LC
1036
1037(define-public dmidecode
1038 (package
1039 (name "dmidecode")
06438b07 1040 (version "3.0")
d43f4296
LC
1041 (source (origin
1042 (method url-fetch)
1043 (uri (string-append
1044 "mirror://savannah/dmidecode/dmidecode-"
06438b07 1045 version ".tar.xz"))
d43f4296
LC
1046 (sha256
1047 (base32
06438b07 1048 "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
d43f4296
LC
1049 (build-system gnu-build-system)
1050 (arguments
06438b07 1051 '(#:phases (modify-phases %standard-phases (delete 'configure))
d43f4296
LC
1052 #:tests? #f ; no 'check' target
1053 #:make-flags (list (string-append "prefix="
1054 (assoc-ref %outputs "out")))))
1055 (home-page "http://www.nongnu.org/dmidecode/")
1056 (synopsis "Read hardware information from the BIOS")
1057 (description
1058 "Dmidecode reports information about your system's hardware as described
1059in your system BIOS according to the SMBIOS/DMI standard. This typically
1060includes system manufacturer, model name, serial number, BIOS version, asset
1061tag as well as a lot of other details of varying level of interest and
1062reliability depending on the manufacturer. This will often include usage
1063status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory
1064module slots, and the list of I/O ports (e.g. serial, parallel, USB).")
f61e0e79 1065 (license license:gpl2+)))
42dc3af5 1066
13c8c2bf
MW
1067(define-public acpica
1068 (package
1069 (name "acpica")
2036a648 1070 (version "20150410")
13c8c2bf
MW
1071 (source (origin
1072 (method url-fetch)
1073 (uri (string-append
1074 "https://acpica.org/sites/acpica/files/acpica-unix2-"
1075 version ".tar.gz"))
1076 (sha256
1077 (base32
2036a648 1078 "0q1fjwkyw9x6gsva6fd0zbn7ly4fx0ha4853f416np9kf2irillw"))))
13c8c2bf
MW
1079 (build-system gnu-build-system)
1080 (native-inputs `(("flex" ,flex)
1081 ("bison" ,bison)))
1082 (arguments
1083 '(#:make-flags (list (string-append "PREFIX=" %output)
1084 "HOST=_LINUX"
1085 "OPT_CFLAGS=-Wall -fno-strict-aliasing")
1086 #:tests? #f ; no 'check' target.
dc1d3cde 1087 #:phases (modify-phases %standard-phases (delete 'configure))))
13c8c2bf 1088 (home-page "http://acpica.org/")
35b9e423 1089 (synopsis "Tools for the development and debug of ACPI tables")
13c8c2bf
MW
1090 (description
1091 "The ACPI Component Architecture (ACPICA) project provides an
1092OS-independent reference implementation of the Advanced Configuration and
1093Power Interface Specification (ACPI). ACPICA code contains those portions of
1094ACPI meant to be directly integrated into the host OS as a kernel-resident
1095subsystem, and a small set of tools to assist in developing and debugging ACPI
1096tables. This package contains only the user-space tools needed for ACPI table
1097development, not the kernel implementation of ACPI.")
f61e0e79 1098 (license license:gpl2))) ; Dual GPLv2/ACPICA Licence
4cf7bd2b
MW
1099
1100(define-public stress
1101 (package
1102 (name "stress")
1103 (version "1.0.1")
1104 (source (origin
1105 (method url-fetch)
1106 (uri (string-append "mirror://debian/pool/main/s/stress/stress_"
1107 version ".orig.tar.gz"))
1108 (sha256
1109 (base32
1110 "1v9vnzlihqfjsxa93hdbrq72pqqk00dkylmlg8jpxhm7s1w9qfl1"))))
1111 (build-system gnu-build-system)
1112 (home-page "http://packages.debian.org/wheezy/stress")
9e771e3b 1113 (synopsis "Impose load on and stress test a computer system")
4cf7bd2b 1114 (description
35b9e423 1115 "Stress is a tool that imposes a configurable amount of CPU, memory, I/O,
4cf7bd2b
MW
1116or disk stress on a POSIX-compliant operating system and reports any errors it
1117detects.
1118
35b9e423 1119Stress is not a benchmark. It is a tool used by system administrators to
4cf7bd2b
MW
1120evaluate how well their systems will scale, by kernel programmers to evaluate
1121perceived performance characteristics, and by systems programmers to expose
1122the classes of bugs which only or more frequently manifest themselves when the
1123system is under heavy load.")
f61e0e79 1124 (license license:gpl2+)))
b36fcf95
EB
1125
1126(define-public detox
1127 (package
1128 (name "detox")
1129 (version "1.2.0")
1130 (source (origin
1131 (method url-fetch)
de67e922
LF
1132 (uri (string-append "mirror://sourceforge/detox/detox/" version
1133 "/detox-" version ".tar.bz2"))
b36fcf95
EB
1134 (sha256
1135 (base32
1136 "1y6vvjqsg54kl49cry73jbfhr04s7wjs779vrr9zrq6kww7dkymb"))))
1137 (build-system gnu-build-system)
1138 ;; Both flex and popt are used in this case for their runtime libraries
1139 ;; (libfl and libpopt).
1140 (inputs
1141 `(("flex" ,flex)
1142 ("popt" ,popt)))
1143 (arguments
1144 `(#:configure-flags `(,(string-append "--with-popt="
1145 (assoc-ref %build-inputs "popt")))
1146 #:tests? #f)) ;no 'check' target
1147 (home-page "http://detox.sourceforge.net")
e881752c 1148 (synopsis "Clean up file names")
b36fcf95
EB
1149 (description
1150 "Detox is a program that renames files to make them easier to work with
1151under Unix and related operating systems. Spaces and various other unsafe
1152characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1)
1153characters can be replaced as well, as can UTF-8 characters.")
f61e0e79 1154 (license license:bsd-3)))
c4492a16
LC
1155
1156(define-public testdisk
1157 (package
1158 (name "testdisk")
cf91cfc0 1159 (version "7.0")
c4492a16
LC
1160 (source (origin
1161 (method url-fetch)
1162 (uri (string-append "http://www.cgsecurity.org/testdisk-"
1163 version ".tar.bz2"))
1164 (sha256
1165 (base32
cf91cfc0 1166 "0ba4wfz2qrf60vwvb1qsq9l6j0pgg81qgf7fh22siaz649mkpfq0"))))
c4492a16
LC
1167 (build-system gnu-build-system)
1168 (inputs
d6a08ec0 1169 `(("ntfs-3g" ,ntfs-3g)
c4492a16 1170 ("util-linux" ,util-linux)
cc2b77df 1171 ("openssl" ,openssl)
d6a08ec0 1172 ;; FIXME: add reiserfs
f61e0e79 1173 ("zlib" ,zlib)
c4492a16
LC
1174 ("e2fsprogs" ,e2fsprogs)
1175 ("libjpeg" ,libjpeg)
1176 ("ncurses" ,ncurses)))
1177 (home-page "http://www.cgsecurity.org/wiki/TestDisk")
1178 (synopsis "Data recovery tool")
1179 (description
1180 "TestDisk is a program for data recovery, primarily designed to help
1181recover lost partitions and/or make non-booting disks bootable again.")
f61e0e79 1182 (license license:gpl2+)))
c4492a16 1183
15926aec
AS
1184(define-public tree
1185 (package
1186 (name "tree")
1187 (version "1.7.0")
1188 (source (origin
1189 (method url-fetch)
1190 (uri (string-append
1191 "http://mama.indstate.edu/users/ice/tree/src/tree-"
1192 version ".tgz"))
1193 (sha256
1194 (base32 "04kviw799qxly08zb8n5mgxfd96gyis6x69q2qiw86jnh87c4mv9"))))
1195 (build-system gnu-build-system)
1196 (arguments
dc1d3cde 1197 '(#:phases (modify-phases %standard-phases (delete 'configure))
15926aec
AS
1198 #:tests? #f ; no check target
1199 #:make-flags (let ((out (assoc-ref %outputs "out")))
1200 (list (string-append "prefix=" out)))))
1201 (synopsis "Recursively list the contents of a directory")
1202 (description
1203 "Tree is a recursive directory listing command that produces a depth
1204indented listing of files, which is colorized ala dircolors if the LS_COLORS
1205environment variable is set and output is to tty.")
1206 (home-page "http://mama.indstate.edu/users/ice/tree/")
1207 (license license:gpl2+)))
1208
c2619e10
LC
1209(define-public direvent
1210 (package
1211 (name "direvent")
bac67a5a 1212 (version "5.1")
c2619e10
LC
1213 (source (origin
1214 (method url-fetch)
1215 (uri (string-append "mirror://gnu/direvent/direvent-"
1216 version ".tar.gz"))
1217 (sha256
1218 (base32
bac67a5a 1219 "1nwvjmx7kb14ni34c0b8x9a3791pc20gvhj7xaj66d8q4h6n0qf4"))
c2619e10
LC
1220 (modules '((guix build utils)))
1221 (snippet '(substitute* "tests/testsuite"
1222 (("#![[:blank:]]?/bin/sh")
1223 "#!$SHELL")))))
1224 (build-system gnu-build-system)
1225 (arguments
dc1d3cde
KK
1226 '(#:phases
1227 (modify-phases %standard-phases
1228 (add-before 'build 'patch-/bin/sh
1229 (lambda* (#:key inputs #:allow-other-keys)
1230 ;; Use the right shell when executing the watcher and
1231 ;; user-provided shell commands.
1232 (let ((bash (assoc-ref inputs "bash")))
1233 (substitute* '("src/direvent.c" "src/progman.c")
1234 (("\"/bin/sh\"")
1235 (string-append "\"" bash "/bin/sh\"")))
1236
1237 ;; Adjust the 'shell.at' test accordingly.
1238 (substitute* "tests/testsuite"
1239 (("SHELL=/bin/sh")
1240 (string-append "SHELL=" bash "/bin/sh")))
1241
1242 #t))))))
6fd52309 1243 (home-page "https://www.gnu.org/software/direvent/")
c2619e10
LC
1244 (synopsis "Daemon to monitor directories for events such as file removal")
1245 (description
1246 "A daemon that monitors directories for events, such as creating,
35b9e423 1247deleting or modifying files. It can monitor different sets of directories for
c2619e10
LC
1248different events. When an event is detected, direvent calls a specified
1249external program with information about the event, such as the location
c5779c93
LC
1250within the file system where it occurred. Thus, \"direvent\" provides an
1251easy way to react immediately if given files undergo changes, for example, to
c2619e10 1252track changes in important system configuration files.")
f61e0e79 1253 (license license:gpl3+)))
da6c3749
TUBK
1254
1255(define-public libcap-ng
1256 (package
1257 (name "libcap-ng")
1258 (version "0.7.4")
1259 (source (origin
1260 (method url-fetch)
1261 (uri (string-append
1262 "http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-"
1263 version ".tar.gz"))
1264 (sha256
1265 (base32
1266 "0ssvnh4cvhya0c1j6k6192zvqcq7nc0x01fb5nwhr0prfqr0i8j8"))))
1267 (build-system gnu-build-system)
1268 (inputs `(("python" ,python)))
1269 (home-page "http://people.redhat.com/sgrubb/libcap-ng/")
1270 (synopsis "Library for more easily working with POSIX capabilities")
1271 (description
1272 "The libcap-ng library is intended to make programming with POSIX
1273capabilities easier than the traditional libcap library. It includes
1274utilities that can analyse all currently running applications and print out
1275any capabilities and whether or not it has an open ended bounding set. The
1276included utilities are designed to let admins and developers spot apps from
1277various ways that may be running with too much privilege.")
1278 ;; The library is lgpl2.1+, but also ships some utils which are gpl2+.
f61e0e79 1279 (license (list license:lgpl2.1+ license:gpl2+))))
d02f2cc4
TUBK
1280
1281(define-public smartmontools
1282 (package
1283 (name "smartmontools")
85de4365 1284 (version "6.5")
d02f2cc4
TUBK
1285 (source (origin
1286 (method url-fetch)
1287 (uri (string-append
1288 "mirror://sourceforge/smartmontools/smartmontools/"
1289 version "/smartmontools-" version ".tar.gz"))
1290 (sha256
1291 (base32
85de4365 1292 "1g25r6sx85b5lay5n6sbnqv05qxzj6xsafsp93hnrg1h044bps49"))))
d02f2cc4
TUBK
1293 (build-system gnu-build-system)
1294 (inputs `(("libcap-ng" ,libcap-ng)))
51b6a1dd 1295 (home-page "https://www.smartmontools.org/")
d02f2cc4
TUBK
1296 (synopsis "S.M.A.R.T. harddisk control and monitoring tools")
1297 (description
1298 "The smartmontools package contains utility programs to control and
1299monitor storage systems using the Self-Monitoring, Analysis and Reporting
1300Technology System (S.M.A.R.T.) built into most modern ATA and SCSI harddisks.
1301In many cases, these utilities will provide advanced warning of disk
1302degradation and failure.")
f61e0e79 1303 (license license:gpl2+)))
6efd0823
RW
1304
1305(define-public fdupes
1306 (package
1307 (name "fdupes")
47d7b303 1308 (version "1.6.1")
6efd0823
RW
1309 (source
1310 (origin
1311 (method url-fetch)
1312 (uri (string-append
47d7b303 1313 "https://github.com/adrianlopezroche/fdupes/archive/v"
6efd0823 1314 version ".tar.gz"))
47d7b303 1315 (file-name (string-append name "-" version ".tar.gz"))
6efd0823
RW
1316 (sha256
1317 (base32
47d7b303 1318 "1sj9pa40pbz6xdwbxfwhdhkvhdf1xc5gvggk9mdq26c41gdnyswx"))))
6efd0823
RW
1319 (build-system gnu-build-system)
1320 (arguments
e192a230
TGR
1321 '(#:phases (modify-phases %standard-phases
1322 (delete 'configure))
6efd0823 1323 #:tests? #f ; no 'check' target
47d7b303
TGR
1324 #:make-flags (list "CC=gcc"
1325 (string-append "PREFIX="
6efd0823
RW
1326 (assoc-ref %outputs "out")))))
1327 (home-page "https://github.com/adrianlopezroche/fdupes")
1328 (synopsis "Identify duplicate files")
1329 (description
1330 "fdupes is a program for identifying duplicate files residing within
1331specified directories.")
1332 (license license:expat)))
4ecfbda7
DT
1333
1334(define-public graphios
1335 (package
1336 (name "graphios")
1337 (version "2.0.3")
1338 (source
1339 (origin
1340 (method url-fetch)
1341 (uri (string-append
1342 "https://pypi.python.org/packages/source/g/graphios/graphios-"
1343 version ".tar.gz"))
1344 (sha256
1345 (base32
1346 "1h87hvc315wg6lklbf4l7csd3n5pgljwrfli1p3nasdi0izgn66i"))))
1347 (build-system python-build-system)
1348 (arguments
1349 ;; Be warned: Building with Python 3 succeeds, but the build process
1350 ;; throws a syntax error that is ignored.
1351 `(#:python ,python-2
1352 #:phases
1353 (modify-phases %standard-phases
1354 (add-before 'build 'fix-setup.py
1355 (lambda* (#:key outputs #:allow-other-keys)
1356 ;; Fix hardcoded, unprefixed file names.
1357 (let ((out (assoc-ref outputs "out")))
1358 (substitute* '("setup.py")
1359 (("/etc") (string-append out "/etc"))
1360 (("/usr") out)
1361 (("distro_ver = .*") "distro_ver = ''"))
1362 #t))))))
4ecfbda7
DT
1363 (home-page "https://github.com/shawn-sterling/graphios")
1364 (synopsis "Emit Nagios metrics to Graphite, Statsd, and Librato")
1365 (description
1366 "Graphios is a script to emit nagios perfdata to various upstream metrics
1367processing and time-series systems. It's currently compatible with Graphite,
1368Statsd, Librato and InfluxDB. Graphios can emit Nagios metrics to any number
1369of supported upstream metrics systems simultaneously.")
1370 (license license:gpl2+)))
8d801045
ED
1371
1372(define-public ansible
1373 (package
1374 (name "ansible")
2e3297f4 1375 (version "2.3.1.0")
8d801045
ED
1376 (source
1377 (origin
1378 (method url-fetch)
697e86dd 1379 (uri (pypi-uri "ansible" version))
8d801045
ED
1380 (sha256
1381 (base32
b7866613
JL
1382 "1xdr82fy8gahxh3586wm5k1bxksys7yl1f2n24shrk8gf99qyjyd"))
1383 (patches (search-patches "ansible-wrap-program-hack.patch"))))
8d801045
ED
1384 (build-system python-build-system)
1385 (native-inputs
f3b98f4f 1386 `(("python2-pycrypto" ,python2-pycrypto)
8d801045
ED
1387 ("python2-httplib2" ,python2-httplib2)
1388 ("python2-passlib" ,python2-passlib)
1389 ("python2-nose" ,python2-nose)
1390 ("python2-mock" ,python2-mock)
1391 ("python2-jinja2" ,python2-jinja2)
1392 ("python2-pyyaml" ,python2-pyyaml)
1393 ("python2-paramiko" ,python2-paramiko)))
1394 (inputs
1395 `(("python2-pycrypto" ,python2-pycrypto)
1396 ("python2-jinja2" ,python2-jinja2)
1397 ("python2-pyyaml" ,python2-pyyaml)
1398 ("python2-paramiko" ,python2-paramiko)))
1399 (arguments
1400 `(#:python ,python-2)) ; incompatible with Python 3
1401 (home-page "http://ansible.com/")
1402 (synopsis "Radically simple IT automation")
1403 (description "Ansible is a radically simple IT automation system. It
1404handles configuration-management, application deployment, cloud provisioning,
1405ad-hoc task-execution, and multinode orchestration - including trivializing
1406things like zero downtime rolling updates with load balancers.")
1407 (license license:gpl3+)))
44157e9f
EB
1408
1409(define-public cpulimit
1410 (package
1411 (name "cpulimit")
1412 (version "0.2")
1413 (source
1414 (origin
1415 (method url-fetch)
1416 (uri (string-append "https://github.com/opsengine/cpulimit/archive/v"
1417 version ".tar.gz"))
1418 (file-name (string-append name "-" version ".tar.gz"))
1419 (sha256
1420 (base32
1421 "1nn2w849xd5bw4y5sqnll29nxdwl5h0cv4smc7dwmpb9qnd2ycb4"))))
1422 (build-system gnu-build-system)
1423 (arguments
1424 `(#:phases (modify-phases %standard-phases
1425 (delete 'configure)
1426 (replace
1427 'build
1428 (lambda _
1429 (zero? (system* "make" "CC=gcc" "-Csrc"))))
1430 (replace
1431 'check
1432 (lambda _
1433 (zero? (system* "make" "CC=gcc" "-Ctests"))))
1434 (replace
1435 'install
1436 (lambda* (#:key outputs #:allow-other-keys)
1437 (let* ((out (assoc-ref outputs "out"))
1438 (bin (string-append out "/bin")))
1439 (install-file "src/cpulimit" bin)))))))
1440 (home-page "https://github.com/opsengine/cpulimit")
1441 (synopsis "Limit CPU usage")
1442 (description
1443 "Cpulimit limits the CPU usage of a process. It does not change the nice
1444value or other scheduling priority settings, but the real CPU usage, and is
1445able to adapt itself dynamically to the overall system load. Children
1446processes and threads of the specified process may optionally share the same
1447limits.")
1448 (license license:gpl2+)))
2328b47c
EB
1449
1450(define-public autojump
1451 (package
1452 (name "autojump")
1d33b9ea 1453 (version "22.3.4")
2328b47c
EB
1454 (source
1455 (origin
1456 (method url-fetch)
1457 (uri (string-append "https://github.com/wting/autojump/archive/"
1458 "release-v" version ".tar.gz"))
1459 (file-name (string-append name "-" version ".tar.gz"))
1460 (sha256
1461 (base32
1d33b9ea 1462 "113rcpr37ngf2xs8da41qdarq5qmj0dwx8ggqy3lhlb0kvqq7g9z"))))
2328b47c
EB
1463 (build-system gnu-build-system)
1464 (native-inputs ;for tests
1465 `(("python-mock" ,python-mock)
1466 ("python-pytest" ,python-pytest)))
1467 (inputs
1468 `(("python" ,python-wrapper)))
1469 (arguments
1470 `(#:phases (modify-phases %standard-phases
1471 (delete 'configure)
1472 (delete 'build)
1473 (replace 'check
1474 (lambda _
1475 (zero?
0c4520d6 1476 (system* "python" "tests/unit/autojump_utils_test.py"))))
2328b47c
EB
1477 (replace 'install
1478 ;; The install.py script doesn't allow system installation
1479 ;; into an arbitrary prefix, so do our own install.
1480 (lambda* (#:key outputs #:allow-other-keys)
1481 (let* ((out (assoc-ref outputs "out"))
1482 (bin (string-append out "/bin"))
1483 (share (string-append out "/share/autojump"))
1484 (py (string-append out "/lib/python"
1485 ,(version-major+minor
1486 (package-version python-wrapper))
1487 "/site-packages"))
1488 (man (string-append out "/share/man/man1")))
1489 (install-file "bin/autojump" bin)
1490 (for-each (λ (f) (install-file f py))
1491 (find-files "bin" "\\.py$"))
1492 (for-each (λ (f) (install-file f share))
1493 (find-files "bin" "autojump\\..*$"))
1494 (substitute* (string-append share "/autojump.sh")
1495 (("/usr/local") out))
1496 (install-file "docs/autojump.1" man)
1497 (wrap-program (string-append bin "/autojump")
1498 `("PYTHONPATH" ":" prefix (,py)))
1499 #t))))))
1500 (home-page "https://github.com/wting/autojump")
8f65585b 1501 (synopsis "Shell extension for file system navigation")
2328b47c 1502 (description
8f65585b 1503 "Autojump provides a faster way to navigate your file system, with a \"cd
2328b47c
EB
1504command that learns\". It works by maintaining a database of the directories
1505you use the most from the command line and allows you to \"jump\" to
1506frequently used directories by typing only a small pattern.")
1507 (license license:gpl3+)))
765973cd
LF
1508
1509(define-public iftop
1510 (package
1511 (name "iftop")
1512 (version "1.0pre4")
1513 (source (origin
1514 (method url-fetch)
1515 (uri (string-append "http://www.ex-parrot.com/~pdw/iftop/download"
1516 "/iftop-" version ".tar.gz"))
1517 (sha256
1518 (base32
1519 "15sgkdyijb7vbxpxjavh5qm5nvyii3fqcg9mzvw7fx8s6zmfwczp"))))
1520 (build-system gnu-build-system)
1521 (inputs
1522 `(("libpcap" ,libpcap)
1523 ("ncurses" ,ncurses)))
1524 (synopsis "Monitor network usage")
1525 (description "Iftop does for network usage what @command{top} does
1526for CPU usage. It listens to network traffic on a named interface and
1527displays a table of current bandwidth usage by pairs of hosts.")
1528 (home-page "http://www.ex-parrot.com/~pdw/iftop/")
d4e21fbb 1529 (license license:gpl2+)))
f1957fc1
PP
1530
1531(define-public munge
1532 (package
1533 (name "munge")
5578a9c6 1534 (version "0.5.13")
f1957fc1
PP
1535 (source (origin
1536 (method url-fetch)
b52ae4de
EF
1537 (uri (string-append "https://github.com/dun/munge/releases/"
1538 "download/munge-" version "/munge-"
1539 version ".tar.xz"))
f1957fc1
PP
1540 (sha256
1541 (base32
5578a9c6 1542 "1nj486bbg1adfg298zck96vgx57kchcypc1zdz1n7w540vyksxcr"))))
f1957fc1
PP
1543 (inputs
1544 `(("openssl" ,openssl)
1545 ("libgcrypt" ,libgcrypt)))
1546 (build-system gnu-build-system)
b52ae4de 1547 (home-page "https://dun.github.io/munge/")
f1957fc1
PP
1548 (synopsis "Cluster computing authentication service")
1549 (description
1550 "Munge is an authentication service for creating and validating
1551credentials. It allows a process to authenticate the UID and GID of another
1552local or remote process within a group of hosts having common users and
1553groups. These hosts form a security realm that is defined by a shared
1554cryptographic key. Clients within this security realm can create and validate
1555credentials without the use of root privileges, reserved ports, or
1556platform-specific methods.")
1557 (license license:gpl3+)))
3d7a157c
RW
1558
1559(define-public audit
1560 (package
1561 (name "audit")
1562 (version "2.4.5")
1563 (source (origin
1564 (method url-fetch)
1565 (uri (string-append "http://people.redhat.com/sgrubb/audit/"
1566 "audit-" version ".tar.gz"))
1567 (sha256
1568 (base32
1569 "1q1q51dvxscbi4kbakmd4bn0xrvwwaiwvaya79925cbrqwzxsg77"))))
1570 (build-system gnu-build-system)
1571 (home-page "http://people.redhat.com/sgrubb/audit/")
1572 (arguments
1573 `(#:configure-flags (list "--with-python=no")
1574 #:phases
1575 (modify-phases %standard-phases
1576 (add-after 'unpack 'fix-tests
1577 (lambda _
1578 ;; In the build environmnte /etc/passwd does not contain an entry
1579 ;; for root/0, so we have to patch the expected value.
1580 (substitute* "auparse/test/auparse_test.ref"
1581 (("=0 \\(root\\)") "=0 (unknown(0))"))
1582 #t)))))
1583 (inputs
1584 `(("openldap" ,openldap)
1bafad56 1585 ("gnutls" ,gnutls)
3d7a157c
RW
1586 ("sasl" ,cyrus-sasl)))
1587 (synopsis "User-space component to the Linux auditing system")
1588 (description
1589 "auditd is the user-space component to the Linux auditing system, which
1590allows logging of system calls made by user-land processes. It's responsible
1591for writing audit records to the disk. Viewing the logs is done with the
1592@code{ausearch} or @code{aureport} utilities. Configuring the audit rules is
1593done with the @code{auditctl} utility.")
1594 (license license:gpl2+)))
d0457553
TUBK
1595
1596(define-public nmap
1597 (package
1598 (name "nmap")
4c6c6838 1599 (version "7.60")
d0457553
TUBK
1600 (source (origin
1601 (method url-fetch)
1602 (uri (string-append "https://nmap.org/dist/nmap-" version
1603 ".tar.bz2"))
1604 (sha256
1605 (base32
4c6c6838 1606 "08bga42ipymmbxd7wy4x5sl26c0ir1fm3n9rc6nqmhx69z66wyd8"))
d0457553
TUBK
1607 (modules '((guix build utils)))
1608 (snippet
1609 '(map delete-file-recursively
1610 ;; Remove bundled lua, pcap, and pcre libraries.
1611 ;; FIXME: Remove bundled liblinear once packaged.
1612 '("liblua"
1613 "libpcap"
1614 "libpcre"
1615 ;; Remove pre-compiled binares.
1616 "mswin32")))))
1617 (build-system gnu-build-system)
1618 (inputs
1619 `(("openssl" ,openssl)
1620 ("libpcap" ,libpcap)
1621 ("pcre" ,pcre)
1622 ("lua" ,lua)
1623 ;; For 'ndiff'.
1624 ("python" ,python-2)))
1625
1626 ;; TODO Add zenmap output.
1627 (outputs '("out" "ndiff"))
1628 (arguments
1629 '(#:configure-flags '("--without-zenmap")
1630 #:phases
1631 (modify-phases %standard-phases
f4dc22bc
MB
1632 (add-after 'configure 'patch-Makefile
1633 (lambda _
1634 (substitute* "Makefile"
1635 ;; Do not attempt to build lua.
1636 (("build-dnet build-lua") "build-dnet"))
1637 #t))
d0457553
TUBK
1638 (replace 'install
1639 (lambda* (#:key outputs #:allow-other-keys)
1640 (define (make out . args)
1641 (unless (zero? (apply system* "make"
1642 (string-append "prefix=" out)
1643 args))
1644 (error "make failed")))
1645 (define (python-path dir)
1646 (string-append dir "/lib/python2.7/site-packages"))
1647 (let ((out (assoc-ref outputs "out"))
1648 (ndiff (assoc-ref outputs "ndiff")))
1649 (for-each mkdir-p (list out ndiff))
1650 (make out
1651 "install-nmap"
1652 "install-nse"
1653 "install-ncat"
1654 "install-nping")
1655 (make ndiff "install-ndiff")
1656 (wrap-program (string-append ndiff "/bin/ndiff")
1657 `("PYTHONPATH" prefix
1658 (,(python-path ndiff)))))))
1659 ;; These are the tests that do not require network access.
1660 (replace 'check
1661 (lambda _ (zero? (system* "make"
1662 "check-nse"
1663 "check-ndiff"
1664 "check-dns")))))
1665 ;; Nmap can't cope with out-of-source building.
1666 #:out-of-source? #f))
1667 (home-page "https://nmap.org/")
1668 (synopsis "Network discovery and security auditing tool")
1669 (description
1670 "Nmap (\"Network Mapper\") is a network discovery and security auditing
1671tool. It is also useful for tasks such as network inventory, managing service
1672upgrade schedules, and monitoring host or service uptime. It also provides an
1673advanced netcat implementation (ncat), a utility for comparing scan
1674results (ndiff), and a packet generation and response analysis tool (nping).")
1675 ;; This package uses nmap's bundled versions of libdnet and liblinear, which
1676 ;; both use a 3-clause BSD license.
1677 (license (list license:nmap license:bsd-3))))
1a0346f0
P
1678
1679(define-public dstat
1680 (package
1681 (name "dstat")
1682 (version "0.7.3")
1683 (source (origin
1684 (method url-fetch)
1685 (uri (string-append
1686 "https://github.com/dagwieers/dstat/archive/"
1687 version ".tar.gz"))
1688 (file-name (string-append "dstat-" version ".tar.gz"))
1689 (sha256
1690 (base32
1691 "16286z3y2lc9nsq8njzjkv6k2vyxrj9xiixj1k3gnsbvhlhkirj6"))))
1692 (build-system gnu-build-system)
1693 (arguments
1694 `(#:tests? #f ;; no make check
1695 #:make-flags (let ((out (assoc-ref %outputs "out")))
1696 (list (string-append "DESTDIR=" out)
1697 "prefix=/"))
1698 ;; no configure script
dc1d3cde 1699 #:phases (modify-phases %standard-phases (delete 'configure))))
1a0346f0
P
1700 (inputs `(("python-2" ,python-2)))
1701 (synopsis "Versatile resource statistics tool")
1702 (description "Dstat is a versatile replacement for @command{vmstat},
1703@command{iostat}, @command{netstat}, and @command{ifstat}. Dstat overcomes
1704some of their limitations and adds some extra features, more counters and
1705flexibility. Dstat is handy for monitoring systems during performance tuning
1706tests, benchmarks or troubleshooting.
1707
1708Dstat allows you to view all of your system resources in real-time, you can,
1709e.g., compare disk utilization in combination with interrupts from your IDE
1710controller, or compare the network bandwidth numbers directly with the disk
1711throughput (in the same interval).")
1712 (home-page "http://dag.wiee.rs/home-made/dstat/")
c59f62e9 1713 (license license:gpl2+)))
0405e5f4
EB
1714
1715(define-public thefuck
1716 (package
1717 (name "thefuck")
0a3ecfd2 1718 (version "3.19")
0405e5f4
EB
1719 (source (origin
1720 (method url-fetch)
1721 (uri (string-append "https://github.com/nvbn/thefuck/archive/"
1722 version ".tar.gz"))
1723 (file-name (string-append name "-" version ".tar.gz"))
1724 (sha256
1725 (base32
0a3ecfd2 1726 "191zbvkyc02h0wwd46xwj4zzg7jhlr8xv0ji6knqkgjnk0nvqq01"))
bf5b6fb2 1727 (patches (search-patches "thefuck-test-environ.patch"))))
0405e5f4 1728 (build-system python-build-system)
1c1b67a3 1729 (arguments
bf5b6fb2
EB
1730 '(#:phases
1731 (modify-phases %standard-phases
1732 (delete 'check)
1733 (add-after 'install 'check
1734 (lambda* (#:key inputs outputs #:allow-other-keys)
1735 ;; Tests look for installed package
1736 (add-installed-pythonpath inputs outputs)
1737 ;; Some tests need write access to $HOME.
1738 (setenv "HOME" "/tmp")
1739 (zero? (system* "py.test" "-v")))))))
1c1b67a3 1740 (propagated-inputs
0405e5f4
EB
1741 `(("python-colorama" ,python-colorama)
1742 ("python-decorator" ,python-decorator)
1743 ("python-psutil" ,python-psutil)
1744 ("python-six" ,python-six)))
2d1ac1d1 1745 (native-inputs
1c1b67a3
MB
1746 `(("python-mock" ,python-mock)
1747 ("python-pytest" ,python-pytest)
424b1ae7
MB
1748 ("python-pytest-mock" ,python-pytest-mock)
1749 ;; Requires setuptools >= 17.1 due to some features used, while our
1750 ;; python currently only includes 12.0. TODO: Remove this input.
1751 ("python-setuptools" ,python-setuptools)))
0405e5f4
EB
1752 (home-page "https://github.com/nvbn/thefuck")
1753 (synopsis "Correct mistyped console command")
1754 (description
1755 "The Fuck tries to match a rule for a previous, mistyped command, creates
1756a new command using the matched rule, and runs it.")
1757 (license license:x11)))
61402398
JF
1758
1759(define-public di
1760 (package
1761 (name "di")
63f5d53c 1762 (version "4.43")
61402398
JF
1763 (source
1764 (origin
1765 (method url-fetch)
1766 (uri (string-append "https://gentoo.com/di/di-" version ".tar.gz"))
1767 (sha256
63f5d53c 1768 (base32 "1q25jy51qfzsym9b2w0cqzscq2j492gn60dy6gbp88m8nwm4sdy8"))))
61402398
JF
1769 (build-system gnu-build-system)
1770 (arguments
1771 `(#:tests? #f ; Obscure test failures.
1772 #:phases
1773 (modify-phases %standard-phases
1774 (delete 'configure)
1775 (add-before 'build 'setup-environment
1776 (lambda* (#:key outputs #:allow-other-keys)
1777 (setenv "CC" "gcc")
1778 (setenv "prefix" (assoc-ref outputs "out"))
1779 #t)))
1780 #:make-flags (list "--environment-overrides")))
1781 (home-page "https://www.gentoo.com/di/")
1782 (synopsis "Advanced df like disk information utility")
1783 (description
1784 "'di' is a disk information utility, displaying everything
1785(and more) that your @code{df} command does. It features the ability to
1786display your disk usage in whatever format you prefer. It is designed to be
d1e4ad1b 1787highly portable. Great for heterogeneous networks.")
61402398 1788 (license license:zlib)))
5ec8b02d 1789
1790(define-public cbatticon
1791 (package
1792 (name "cbatticon")
e2a4c130 1793 (version "1.6.6")
5ec8b02d 1794 (source (origin
1795 (method url-fetch)
1796 (uri (string-append "https://github.com/valr/"
1797 name "/archive/" version ".tar.gz"))
1798 (sha256
1799 (base32
e2a4c130 1800 "1rxlrwd817f2zl4fsc5ha43wjzfidq3yyagq4lgyi150qg36svv3"))
5ec8b02d 1801 (file-name (string-append name "-" version ".tar.gz"))))
1802 (build-system gnu-build-system)
1803 (arguments
1804 `(#:tests? #f ; no tests
1805 #:make-flags
1806 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1807 "CC=gcc")
1808 #:phases
1809 (modify-phases %standard-phases
1810 (delete 'configure)))) ; no configure script
1811 (inputs
1812 `(("gtk+" ,gtk+)
b94a6ca0 1813 ("gettext" ,gettext-minimal)
5ec8b02d 1814 ("libnotify" ,libnotify)))
1815 (native-inputs
1816 `(("pkg-config" ,pkg-config)))
1817 (synopsis "Lightweight battery icon for the system tray")
1818 (description "cbatticon is a lightweight battery icon that displays
1819the status of your battery in the system tray.")
1820 (home-page "https://github.com/valr/cbatticon")
1821 (license license:gpl2+)))
c08533b2 1822
1823(define-public interrobang
1824 (let ((revision "1")
1825 (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
1826 (package
1827 (name "interrobang")
1828 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
1829 (source (origin
1830 (method git-fetch)
1831 (uri (git-reference
5f13bf09 1832 (url "https://github.com/TrilbyWhite/interrobang")
c08533b2 1833 (commit commit)))
1834 (file-name (string-append name "-" version))
1835 (sha256
1836 (base32
1837 "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
1838 (build-system gnu-build-system)
1839 (arguments
1840 `(#:tests? #f ; no tests
1841 #:phases
1842 (modify-phases %standard-phases
1843 (delete 'configure)) ; no configure script
1844 #:make-flags (list (string-append "PREFIX="
1845 (assoc-ref %outputs "out")))))
1846 (inputs
1847 `(("libx11" ,libx11)))
1848 (native-inputs
1849 `(("pkg-config" ,pkg-config)))
1850 (synopsis "Scriptable launcher menu")
1851 (description "Interrobang is a scriptable launcher menu with a customizable
1852shortcut syntax and completion options.")
1853 (home-page "https://github.com/TrilbyWhite/interrobang")
1854 (license license:gpl3+))))
94c5dc8c
JD
1855
1856
1857
1858(define-public pam-krb5
1859 (package
1860 (name "pam-krb5")
1861 (version "4.7")
1862 (source (origin
1863 (method url-fetch)
1864 (uri (string-append
1865 "https://archives.eyrie.org/software/kerberos/" name "-"
1866 version ".tar.xz"))
1867 (sha256
1868 (base32
1869 "0abf8cfpkprmhw5ca8iyqgrggh65lgqvmfllc1y6qz7zw1gas894"))))
1870 (build-system gnu-build-system)
1871 (arguments
1872 `(#:phases
1873 (modify-phases %standard-phases
1874 (add-before 'configure 'disable-tests
1875 (lambda _
1876 ;; The build container seems to interfere with some tests.
1877 (substitute* "tests/TESTS"
1878 (("module/basic\n") ""))
1879 (substitute* "tests/TESTS"
1880 (("pam-util/vector\n") ""))
1881 #t)))))
1882 (inputs
1883 `(("linux-pam" ,linux-pam)
1884 ("mit-krb5" ,mit-krb5)))
1885 (native-inputs
1886 `(("perl" ,perl)
1887 ("perl-test-pod" ,perl-test-pod))) ; required for tests
1888 (synopsis "Kerberos PAM module")
1889 (description
1890 "Pam-krb5 is a Kerberos PAM module for either MIT Kerberos or Heimdal.
1891It supports ticket refreshing by screen savers, configurable
1892authorization handling, authentication of non-local accounts for network
1893services, password changing, and password expiration, as well as all the
1894standard expected PAM features. It works correctly with OpenSSH, even
1895with ChallengeResponseAuthentication and PrivilegeSeparation enabled,
1896and supports extensive configuration either by PAM options or in
1897krb5.conf or both. PKINIT is supported with recent versions of both MIT
1898Kerberos and Heimdal and FAST is supported with recent MIT Kerberos.")
1899 (home-page "http://www.eyrie.org/~eagle/software/pam-krb5")
1900 ;; Dual licenced under a homebrew non-copyleft OR GPL (any version)
1901 ;; However, the tarball does not contain a copy of the GPL, so unless
1902 ;; we put one in, we cannot distribute it under GPL without violating
1903 ;; clause requiring us to give all recipients a copy.
1904 (license license:gpl1+)))
1905
1906;;http://archives.eyrie.org/software/kerberos/pam-krb5-4.7.tar.xz
b04ca7a1
DM
1907
1908(define-public sunxi-tools
1909 (package
1910 (name "sunxi-tools")
0c6fc4b7 1911 (version "1.4.2")
b04ca7a1
DM
1912 (source
1913 (origin
1914 (method url-fetch)
1915 (uri (string-append "https://github.com/linux-sunxi/"
1916 "sunxi-tools/archive/v" version ".tar.gz"))
1917 (sha256
0c6fc4b7 1918 (base32 "08iqwj95qw2s7ilhrdi2lkbc8dx64zk5lzz1qk587jr0lla81x41"))
b04ca7a1
DM
1919 (modules '((guix build utils)))
1920 (snippet
1921 ;; Remove binaries contained in the tarball which are only for the
1922 ;; target and can be regenerated anyway.
1923 '(delete-file-recursively "bin"))
1924 (file-name (string-append name "-" version ".tar.gz"))))
1925 (native-inputs
faa6bdf8
DM
1926 `(("pkg-config" ,pkg-config)
1927 ("cross-gcc" ,(cross-gcc "arm-linux-gnueabihf"
1928 #:xbinutils (cross-binutils "arm-linux-gnueabihf")
1929 #:libc (cross-libc "arm-linux-gnueabihf")))
1930 ("cross-libc" ,(cross-libc "arm-linux-gnueabihf"))))
b04ca7a1
DM
1931 (inputs
1932 `(("libusb" ,libusb)))
1933 (build-system gnu-build-system)
1934 (arguments
faa6bdf8 1935 `(#:tests? #f ; no tests exist
b04ca7a1
DM
1936 #:make-flags (list (string-append "PREFIX="
1937 (assoc-ref %outputs "out"))
faa6bdf8
DM
1938 (string-append "CROSS_COMPILE="
1939 "arm-linux-gnueabihf-")
1940 "CC=gcc")
b04ca7a1
DM
1941 #:phases
1942 (modify-phases %standard-phases
b054b26a 1943 (delete 'configure)
faa6bdf8
DM
1944 (add-before 'build 'set-environment-up
1945 (lambda* (#:key make-flags #:allow-other-keys)
1946 (define (cross? x)
1947 (string-contains x "cross-arm-linux"))
1948 (setenv "CROSS_C_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))
1949 (setenv "CROSS_CPLUS_INCLUDE_PATH" (getenv "CPLUS_INCLUDE_PATH"))
1950 (setenv "CROSS_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
1951 (for-each
1952 (lambda (env-name)
1953 (let* ((env-value (getenv env-name))
1954 (search-path (search-path-as-string->list env-value))
1955 (new-search-path (filter (lambda (e) (not (cross? e)))
1956 search-path))
1957 (new-env-value (list->search-path-as-string
1958 new-search-path ":")))
1959 (setenv env-name new-env-value)))
1960 '("C_INCLUDE_PATH" "CPLUS_INCLUDE_PATH" "LIBRARY_PATH"))
1961 #t))
1962 (replace 'build
1963 (lambda* (#:key make-flags #:allow-other-keys)
1964 (zero? (apply system* "make" "tools" "misc" make-flags))))
1965 (add-after 'build 'build-armhf
1966 (lambda* (#:key make-flags #:allow-other-keys)
1967 (zero? (apply system* "make" "target-tools" make-flags))))
b054b26a
DM
1968 (replace 'install
1969 (lambda* (#:key make-flags #:allow-other-keys)
1970 (zero? (apply system* "make" "install-all" "install-misc"
1971 make-flags)))))))
b04ca7a1
DM
1972 (home-page "https://github.com/linux-sunxi/sunxi-tools")
1973 (synopsis "Hardware management tools for Allwinner computers")
1974 (description "This package contains tools for Allwinner devices:
1975@enumerate
1976@item @command{sunxi-fexc}, @command{bin2fex}, @command{fex2bin}: Compile
1977a textual description of a board (.fex) to a binary representation (.bin).
1978@item @command{sunxi-fel}: Puts an Allwinner device into FEL mode which
1979makes it register as a special USB device (rather than USB host).
1980You can then connect it to another computer and flash it from there.
1981@item @command{sunxi-nand-part}: Partitions NAND flash.
1982@item @command{sunxi-bootinfo}: Reads out boot0 and boot1 (Allwinner
1983bootloader) parameters.
1984@item @command{sunxi-pio}: Sets GPIO parameters and oscillates a GPIO
1985in order to be able to find it.
1986@item @command{sunxi-meminfo}: Prints memory bus settings.
b054b26a 1987@item @command{sunxi-nand-image-builder}: Prepares raw NAND images.
b04ca7a1
DM
1988@end enumerate")
1989 (license license:gpl2+)))
a054777e 1990
1991(define-public sedsed
1992 (package
1993 (name "sedsed")
1994 (version "1.0")
1995 (source
1996 (origin
1997 (method url-fetch)
1998 (uri (string-append "https://github.com/aureliojargas/sedsed/"
1999 "archive/v" version ".tar.gz"))
2000 (file-name (string-append name "-" version ".tar.gz"))
2001 (sha256
2002 (base32
2003 "0139jkqvm8ipiwfj7k69ry2f9b1ffgpk79arpz4r7w9kf6h23bnh"))))
2004 (build-system python-build-system)
2005 (arguments
2006 `(#:tests? #f ; No tests.
2007 #:python ,python-2
2008 #:phases
2009 (modify-phases %standard-phases
2010 (add-after 'unpack 'patch-sed-in
2011 (lambda _
2012 (substitute* "sedsed.py"
2013 (("sedbin = 'sed'")
2014 (string-append "sedbin = '" (which "sed") "'")))
2015 #t))
2016 (delete 'build)
2017 (replace 'install
2018 (lambda* (#:key outputs #:allow-other-keys)
2019 (let* ((out (assoc-ref outputs "out"))
2020 (bin (string-append out "/bin")))
2021 ;; Just one file to copy around
2022 (install-file "sedsed.py" bin)
2023 #t)))
2024 (add-after 'install 'symlink
2025 ;; Create 'sedsed' symlink to "sedsed.py".
2026 (lambda* (#:key outputs #:allow-other-keys)
2027 (let* ((out (assoc-ref outputs "out"))
2028 (bin (string-append out "/bin"))
2029 (sed (string-append bin "/sedsed"))
2030 (sedpy (string-append bin "/sedsed.py")))
2031 (symlink sedpy sed)
2032 #t))))))
2033 (home-page "http://aurelio.net/projects/sedsed")
2034 (synopsis "Sed sed scripts")
2035 (description
2036 "@code{sedsed} can debug, indent, tokenize and HTMLize your sed(1) script.
2037
2038In debug mode it reads your script and add extra commands to it. When
2039executed you can see the data flow between the commands, revealing all the
2040magic sed does on its internal buffers.
2041
2042In indent mode your script is reformatted with standard spacing.
2043
2044In tokenize mode you can see the elements of every command you use.
2045
2046In HTMLize mode your script is converted to a beautiful colored HTML file,
2047with all the commands and parameters identified for your viewing pleasure.
2048
2049With sedsed you can master any sed script. No more secrets, no more hidden
2050buffers.")
2051 (license license:expat)))
d10fa5c7
RW
2052
2053(define-public intel-gpu-tools
2054 (package
2055 (name "intel-gpu-tools")
2056 (version "1.18")
2057 (source (origin
2058 (method url-fetch)
2059 (uri (string-append "https://cgit.freedesktop.org/xorg/app/"
2060 "intel-gpu-tools/snapshot/"
2061 "intel-gpu-tools-" version ".tar.gz"))
2062 (sha256
2063 (base32
2064 "0w7djk0y5w76hzn1b3cm39zd5c6w9za1wfn80wd857h0v313rzq3"))))
2065 (build-system gnu-build-system)
2066 (arguments
2067 `(#:tests? #f ; many of the tests try to load kernel modules
2068 #:phases
2069 (modify-phases %standard-phases
2070 (add-after 'unpack 'autogen
2071 (lambda _
2072 ;; Don't run configure in this phase
2073 (setenv "NOCONFIGURE" "1")
2074 (zero? (system* "sh" "autogen.sh")))))))
2075 (inputs
2076 `(("util-macros" ,util-macros)
2077 ("libdrm" ,libdrm)
2078 ("libpciaccess" ,libpciaccess)
2079 ("kmod" ,kmod)
2080 ("procps" ,procps)
2081 ("cairo" ,cairo)
2082 ("libunwind" ,libunwind)
2083 ("libxrandr" ,libxrandr)
2084 ("glib" ,glib)))
2085 (native-inputs
2086 `(("autoconf" ,autoconf)
2087 ("automake" ,automake)
2088 ("libtool" ,libtool)
2089 ("pkg-config" ,pkg-config)))
2090 (home-page "https://cgit.freedesktop.org/xorg/app/intel-gpu-tools/")
2091 (synopsis "Tools for development and testing of the Intel DRM driver")
2092 (description "Intel GPU Tools is a collection of tools for development and
2093testing of the Intel DRM driver. There are many macro-level test suites that
2094get used against the driver, including xtest, rendercheck, piglit, and
2095oglconform, but failures from those can be difficult to track down to kernel
2096changes, and many require complicated build procedures or specific testing
2097environments to get useful results. Therefore, Intel GPU Tools includes
2098low-level tools and tests specifically for development and testing of the
2099Intel DRM Driver.")
2100 (license license:expat)))
c1aba1a7 2101
b611f9c2
BS
2102(define-public fabric
2103 (package
2104 (name "fabric")
f58be417 2105 (version "1.13.2")
b611f9c2
BS
2106 (source
2107 (origin
2108 (method url-fetch)
2109 (uri (pypi-uri "Fabric" version))
2110 (sha256
2111 (base32
f58be417 2112 "0k944dxr41whw7ib6380q9x15wyskx7fqni656icdn8rzshn9bwq"))))
b611f9c2
BS
2113 (build-system python-build-system)
2114 (arguments
f58be417 2115 `(#:python ,python-2)) ; Python 2 only
1b5b24c9 2116 (native-inputs
f58be417
TGR
2117 `(("python2-fudge" ,python2-fudge)
2118 ("python2-jinja2" ,python2-jinja2)
2119 ("python2-nose" ,python2-nose)))
b611f9c2 2120 (propagated-inputs
b611f9c2
BS
2121 `(("python2-paramiko" ,python2-paramiko)))
2122 (home-page "http://fabfile.org")
2123 (synopsis "Simple Pythonic remote execution and deployment tool")
2124 (description
2125 "Fabric is designed to upload files and run shell commands on a number of
2126servers in parallel or serially. These commands are grouped in tasks (which
2127are regular Python functions) and specified in a @dfn{fabfile}.
2128
2129It is similar to Capistrano, except it's implemented in Python and doesn't
2130expect you to be deploying Rails applications. Fabric is a simple, Pythonic
2131tool for remote execution and deployment.")
2132 (license license:bsd-2)))
6e75ea48
EJ
2133
2134(define-public neofetch
2135 (package
2136 (name "neofetch")
407b086b 2137 (version "3.2.0")
6e75ea48
EJ
2138 (source (origin
2139 (method url-fetch)
2140 (uri (string-append "https://github.com/dylanaraps/neofetch/"
2141 "archive/" version ".tar.gz"))
2142 (file-name (string-append name "-" version ".tar.gz"))
2143 (sha256
2144 (base32
407b086b 2145 "07a32rzmch51znxspzyc7zyaldmr383v70b49wmnjdjs2qfdbv3a"))))
6e75ea48
EJ
2146 (build-system gnu-build-system)
2147 (arguments
2148 '(#:tests? #f ; there are no tests
2149 #:make-flags
2150 (list (string-append "PREFIX=" %output))
2151 #:phases
2152 (modify-phases %standard-phases
2153 (add-after 'unpack 'patch-target-directories
2154 (lambda* (#:key outputs #:allow-other-keys)
2155 (let ((out (assoc-ref outputs "out")))
2156 (substitute* "Makefile"
2157 (("\\$\\(DESTDIR\\)/etc/")
2158 "$(PREFIX)/etc/"))
2159 (substitute* "neofetch"
2160 (("\"/etc/neofetch")
2161 (string-append "\"" out "/etc/neofetch"))
2162 (("\"/usr/share/neofetch")
af79852c 2163 (string-append "\"" out "/share/neofetch"))))
6e75ea48
EJ
2164 #t))
2165 (delete 'configure))))
2166 (home-page "https://github.com/dylanaraps/neofetch")
2167 (synopsis "System info script")
2168 (description "Neofetch is a CLI system information tool written in Bash.
2169Neofetch displays information about your system next to an image, your OS
2170logo, or any ASCII file of your choice. The main purpose of Neofetch is to be
2171used in screenshots to show other users what operating system or distribution
2172you are running, what theme or icon set you are using, etc.")
2173 (license license:expat)))
a76ca052
EJ
2174
2175(define-public nnn
2176 (package
2177 (name "nnn")
56ab0f0c 2178 (version "1.3")
a76ca052
EJ
2179 (source (origin
2180 (method url-fetch)
2181 (uri (string-append "https://github.com/jarun/nnn/"
2182 "archive/v" version ".tar.gz"))
2183 (file-name (string-append name "-" version ".tar.gz"))
2184 (sha256
2185 (base32
56ab0f0c 2186 "0sivgcmg3hihz15v2wgbxnd0icn06pyvvqdqh8x0mwkhvm434fpb"))))
a76ca052
EJ
2187 (build-system gnu-build-system)
2188 (inputs `(("ncurses" ,ncurses)
2189 ("readline" ,readline)))
2190 (arguments
2191 '(#:tests? #f ; no tests
2192 #:phases
2193 ;; We do not provide `ncurses.h' within an `ncursesw'
2194 ;; sub-directory, so patch the source accordingly. See
2195 ;; <http://bugs.gnu.org/19018>.
2196 ;; Thanks to gtypist maintainer.
2197 (modify-phases %standard-phases
2198 (add-after 'unpack 'patch-curses-lib
2199 (lambda* (#:key outputs #:allow-other-keys)
2200 (let ((out (assoc-ref outputs "out")))
2201 (substitute* "Makefile"
2202 (("-lncursesw")
2203 "-lncurses"))
2204 (substitute* "nnn.c"
2205 (("ncursesw\\/curses.h")
2206 "ncurses.h")))
2207 #t))
2208 (delete 'configure))
2209 #:make-flags
2210 (list
2211 (string-append "PREFIX="
2212 (assoc-ref %outputs "out"))
2213 (string-append "-Wl,-rpath="
2214 %output "/lib")
2215 "CC=gcc")))
2216 (home-page "https://github.com/jarun/nnn")
2217 (synopsis "Terminal file browser")
2218 (description "@command{nnn} is a fork of @command{noice}, a blazing-fast
2219lightweight terminal file browser with easy keyboard shortcuts for
2220navigation, opening files and running tasks. There is no config file and
2221mime associations are hard-coded. The incredible user-friendliness and speed
2222make it a perfect utility on modern distros.")
2223 (license license:bsd-2)))
58989684
CAW
2224
2225(define-public thermald
2226 (package
2227 (name "thermald")
2228 (version "1.6")
2229 (source
2230 (origin
2231 (method url-fetch)
2232 (uri (string-append "https://github.com/01org/thermal_daemon/archive/v"
2233 version ".tar.gz"))
1b6d3b7a 2234 (file-name (string-append name "-" version ".tar.gz"))
58989684
CAW
2235 (sha256 (base32
2236 "14klz9fnvi9jdlaqwrp61xa5nh051n8ykrs1fh1wxd7j66qf2fn6"))))
2237 (build-system gnu-build-system)
2238 (arguments
2239 `(#:phases (modify-phases %standard-phases
2240 (add-after
2241 'unpack 'autogen.sh-and-fix-paths
2242 (lambda* (#:key outputs #:allow-other-keys)
2243 (let ((out (assoc-ref outputs "out")))
2244 ;; upstartconfir is hardcoded to /etc/init and the build
2245 ;; system tries to mkdir that. We don't even need upstart
2246 ;; files at all; this is a fast and kludgy workaround
2247 (substitute* "data/Makefile.am"
2248 (("upstartconfdir = /etc/init")
2249 (string-append "upstartconfdir = "
2250 out "/etc/init")))
2251 ;; Now run autogen
2252 (zero? (system* "sh" "autogen.sh"))))))
2253 #:configure-flags
2254 (let ((out (assoc-ref %outputs "out")))
2255 (list (string-append "--sysconfdir="
2256 out "/etc")
2257 (string-append "--with-udev-dir="
2258 out "/lib/udev")
2259 (string-append "--with-dbus-sys-dir="
2260 out "/etc/dbus-1/system.d")
2261 "--localstatedir=/var"))))
2262 (native-inputs
2263 `(("autoconf" ,autoconf)
2264 ("automake" ,automake)
2265 ("glib" ,glib "bin") ; for glib-genmarshal, etc.
2266 ("pkg-config" ,pkg-config)))
2267 (inputs
2268 `(("dbus-glib" ,dbus-glib)
2269 ("libxml2" ,libxml2)))
2270 (home-page "https://01.org/linux-thermal-daemon/")
2271 (synopsis "CPU scaling for thermal management")
2272 (description "The Linux Thermal Daemon helps monitor and control temperature
2273on systems running the Linux kernel.")
86ee7625
EF
2274 ;; arm and aarch64 don't have cpuid.h
2275 (supported-systems '("i686-linux" "x86_64-linux"))
58989684 2276 (license license:gpl2+)))