gnu: Move content of openssl module into tls module.
[jackhill/guix/guix.git] / gnu / packages / admin.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
4 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
7 ;;; Copyright © 2015 Alex Sassmannshausen <alex.sassmannshausen@gmail.com>
8 ;;;
9 ;;; This file is part of GNU Guix.
10 ;;;
11 ;;; GNU Guix is free software; you can redistribute it and/or modify it
12 ;;; under the terms of the GNU General Public License as published by
13 ;;; the Free Software Foundation; either version 3 of the License, or (at
14 ;;; your option) any later version.
15 ;;;
16 ;;; GNU Guix is distributed in the hope that it will be useful, but
17 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;;; GNU General Public License for more details.
20 ;;;
21 ;;; You should have received a copy of the GNU General Public License
22 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
24 (define-module (gnu packages admin)
25 #:use-module ((guix licenses) #:prefix license:)
26 #:use-module (guix packages)
27 #:use-module (guix utils)
28 #:use-module (guix download)
29 #:use-module (guix git-download)
30 #:use-module (guix build-system cmake)
31 #:use-module (guix build-system gnu)
32 #:use-module (guix build-system trivial)
33 #:use-module (gnu packages)
34 #:use-module (gnu packages base)
35 #:use-module (gnu packages ncurses)
36 #:use-module (gnu packages readline)
37 #:use-module (gnu packages linux)
38 #:use-module (gnu packages guile)
39 #:use-module (gnu packages gettext)
40 #:use-module (gnu packages perl)
41 #:use-module (gnu packages tcl)
42 #:use-module (gnu packages compression)
43 #:use-module (gnu packages tls)
44 #:use-module (gnu packages gnupg)
45 #:use-module (gnu packages bison)
46 #:use-module (gnu packages flex)
47 #:use-module (gnu packages glib)
48 #:use-module (gnu packages pkg-config)
49 #:use-module (gnu packages popt)
50 #:use-module (gnu packages texinfo)
51 #:use-module (gnu packages groff)
52 #:use-module (gnu packages pciutils)
53 #:use-module (gnu packages libusb)
54 #:use-module (gnu packages libftdi)
55 #:use-module (gnu packages image)
56 #:use-module (gnu packages xorg)
57 #:use-module (gnu packages python)
58 #:use-module (gnu packages man))
59
60 (define-public dmd
61 (package
62 (name "dmd")
63 (version "0.2")
64 (source (origin
65 (method url-fetch)
66 (uri (string-append "ftp://alpha.gnu.org/gnu/dmd/dmd-"
67 version ".tar.gz"))
68 (sha256
69 (base32
70 "10fl4k96f17gqx2fv8iw9c61ld26gsk4bbrlfqckdmiimz1k175z"))))
71 (build-system gnu-build-system)
72 (arguments
73 '(#:configure-flags '("--localstatedir=/var")))
74 (native-inputs `(("pkg-config" ,pkg-config)))
75 (inputs `(("guile" ,guile-2.0)))
76 (synopsis "Daemon managing daemons")
77 (description
78 "GNU DMD is a daemon-managing daemon, meaning that it manages the
79 execution of system services, replacing similar functionality found in
80 typical init systems. It provides dependency-handling through a convenient
81 interface and is based on GNU Guile.")
82 (license license:gpl3+)
83 (home-page "http://www.gnu.org/software/dmd/")))
84
85 (define-public dfc
86 (package
87 (name "dfc")
88 (version "3.0.4")
89 (source
90 (origin
91 (method url-fetch)
92 (uri (string-append
93 "http://projects.gw-computing.net/attachments/download/79/dfc-"
94 version ".tar.gz"))
95 (sha256
96 (base32
97 "0zk1ppx93ijimf4sbgqilxxikpsa2gmpbynknyh41xy7jbdjxp0b"))))
98 (build-system cmake-build-system)
99 (arguments '(#:tests? #f)) ; There are no tests.
100 (native-inputs `(("gettext" ,gnu-gettext)))
101 (home-page "http://projects.gw-computing.net/projects/dfc")
102 (synopsis "Display file system space usage using graphs and colors")
103 (description
104 "dfc (df color) is a modern version of df. It uses colors, draws pretty
105 graphs and can export its output to different formats.")
106 (license license:bsd-3)))
107
108 (define-public htop
109 (package
110 (name "htop")
111 (version "1.0.3")
112 (source (origin
113 (method url-fetch)
114 (uri (string-append "http://hisham.hm/htop/releases/"
115 version "/htop-" version ".tar.gz"))
116 (sha256
117 (base32
118 "0a8qbpsifzjwc4f45xfwm48jhm59g6q5hlib4bf7z13mgy95fp05"))))
119 (build-system gnu-build-system)
120 (inputs
121 `(("ncurses" ,ncurses)))
122 (home-page "http://htop.sourceforge.net/")
123 (synopsis "Interactive process viewer")
124 (description
125 "This is htop, an interactive process viewer. It is a text-mode
126 application (for console or X terminals) and requires ncurses.")
127 (license license:gpl2)))
128
129 (define-public pies
130 (package
131 (name "pies")
132 (version "1.2")
133 (source
134 (origin
135 (method url-fetch)
136 (uri (string-append "mirror://gnu/pies/pies-"
137 version ".tar.bz2"))
138 (sha256
139 (base32
140 "18w0dbg77i56cx1bwa789w0qi3l4xkkbascxcv2b6gbm0zmjg1g6"))))
141 (build-system gnu-build-system)
142 (home-page "http://www.gnu.org/software/pies/")
143 (synopsis "Program invocation and execution supervisor")
144 (description
145 "GNU pies is a program that supervises the invocation and execution of
146 other programs. It reads the list of programs to be started from its
147 configuration file, executes them, and then monitors their status,
148 re-executing them as necessary.")
149 (license license:gpl3+)))
150
151 (define-public inetutils
152 (package
153 (name "inetutils")
154 (version "1.9.4")
155 (source (origin
156 (method url-fetch)
157 (uri (string-append "mirror://gnu/inetutils/inetutils-"
158 version ".tar.gz"))
159 (sha256
160 (base32
161 "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy"))))
162 (build-system gnu-build-system)
163 (arguments `(;; FIXME: `tftp.sh' relies on `netstat' from utils-linux,
164 ;; which is currently missing.
165 #:tests? #f))
166 (inputs `(("ncurses" ,ncurses)
167 ("readline" ,readline))) ; for 'ftp'
168 (home-page "http://www.gnu.org/software/inetutils/")
169 (synopsis "Basic networking utilities")
170 (description
171 "Inetutils is a collection of common network programs, such as an ftp
172 client and server, a telnet client and server, and an rsh client and server.")
173 (license license:gpl3+)))
174
175 (define-public shadow
176 (package
177 (name "shadow")
178 (version "4.1.5.1")
179 (source (origin
180 ;; Shadow has no real upstream, and not even tarballs.
181 ;; See <https://lists.gnu.org/archive/html/guix-devel/2014-03/msg00233.html>.
182 (method git-fetch)
183 (uri (git-reference
184 (url "git://git.debian.org/git/pkg-shadow/shadow")
185 (commit (string-append "upstream/" version))))
186 (sha256
187 (base32
188 "1xx85d83kmacmjzqbamgydcjkwsqd5fi1s2wgwx6myq5wa39qx0n"))))
189 (build-system gnu-build-system)
190 (arguments
191 '(;; Assume System V `setpgrp (void)', which is the default on GNU
192 ;; variants (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
193 #:configure-flags '("--with-libpam" "ac_cv_func_setpgrp_void=yes")
194
195 #:phases (alist-cons-before
196 'build 'set-nscd-file-name
197 (lambda* (#:key inputs #:allow-other-keys)
198 ;; Use the right file name for nscd.
199 (let ((libc (assoc-ref inputs "libc")))
200 (substitute* "lib/nscd.c"
201 (("/usr/sbin/nscd")
202 (string-append libc "/sbin/nscd")))))
203 (alist-cons-after
204 'install 'remove-groups
205 (lambda* (#:key outputs #:allow-other-keys)
206 ;; Remove `groups', which is already provided by Coreutils.
207 (let* ((out (assoc-ref outputs "out"))
208 (bin (string-append out "/bin"))
209 (man (string-append out "/share/man/man1")))
210 (delete-file (string-append bin "/groups"))
211 (for-each delete-file (find-files man "^groups\\."))
212 #t))
213 %standard-phases))))
214
215 (inputs (if (string-suffix? "-linux"
216 (or (%current-target-system)
217 (%current-system)))
218 `(("linux-pam" ,linux-pam))
219 '()))
220 (home-page "http://pkg-shadow.alioth.debian.org/")
221 (synopsis "Authentication-related tools such as passwd, su, and login")
222 (description
223 "Shadow provides a number of authentication-related tools, including:
224 login, passwd, su, groupadd, and useradd.")
225
226 ;; The `vipw' program is GPLv2+.
227 ;; libmisc/salt.c is public domain.
228 (license license:bsd-3)))
229
230 (define-public mingetty
231 (package
232 (name "mingetty")
233 (version "1.08")
234 (source (origin
235 (method url-fetch)
236 (uri (string-append "mirror://sourceforge/mingetty/mingetty-"
237 version ".tar.gz"))
238 (sha256
239 (base32
240 "05yxrp44ky2kg6qknk1ih0kvwkgbn9fbz77r3vci7agslh5wjm8g"))))
241 (build-system gnu-build-system)
242 (arguments
243 `(#:phases (alist-replace 'configure
244 (lambda* (#:key inputs outputs
245 #:allow-other-keys)
246 (let* ((out (assoc-ref outputs "out"))
247 (man8 (string-append
248 out "/share/man/man8"))
249 (sbin (string-append out "/sbin"))
250 (shadow (assoc-ref inputs "shadow"))
251 (login (string-append shadow
252 "/bin/login")))
253 (substitute* "Makefile"
254 (("^SBINDIR.*")
255 (string-append "SBINDIR = " out
256 "/sbin\n"))
257 (("^MANDIR.*")
258 (string-append "MANDIR = " out
259 "/share/man/man8\n")))
260
261 ;; Pick the right 'login' by default.
262 (substitute* "mingetty.c"
263 (("\"/bin/login\"")
264 (string-append "\"" login "\"")))
265
266 (mkdir-p sbin)
267 (mkdir-p man8)))
268 %standard-phases)
269 #:tests? #f)) ; no tests
270 (inputs `(("shadow" ,shadow)))
271
272 (home-page "http://sourceforge.net/projects/mingetty")
273 (synopsis "Getty for the text console")
274 (description
275 "Small console getty that is started on the Linux text console,
276 asks for a login name and then transfers over to 'login'. It is extended to
277 allow automatic login and starting any app.")
278 (license license:gpl2+)))
279
280 (define-public net-base
281 (package
282 (name "net-base")
283 (version "5.3")
284 (source (origin
285 (method url-fetch)
286 (uri (string-append
287 "mirror://debian/pool/main/n/netbase/netbase_"
288 version ".tar.xz"))
289 (sha256
290 (base32
291 "12xqjwg3p4rzmmh2iib6sigm9l29y3dgk74mmnw64k84jnbwdxl1"))))
292 (build-system trivial-build-system)
293 (arguments
294 `(#:modules ((guix build utils))
295 #:builder (begin
296 (use-modules (guix build utils)
297 (srfi srfi-26))
298
299 (let* ((source (assoc-ref %build-inputs "source"))
300 (tar (assoc-ref %build-inputs "tar"))
301 (xz (assoc-ref %build-inputs "xz"))
302 (output (assoc-ref %outputs "out"))
303 (etc (string-append output "/etc")))
304 (setenv "PATH" (string-append xz "/bin"))
305 (system* (string-append tar "/bin/tar") "xvf"
306 source)
307 (chdir ,(string-append "netbase-" version))
308 (mkdir-p etc)
309 (for-each copy-file
310 '("etc-services" "etc-protocols" "etc-rpc")
311 (map (cut string-append etc "/" <>)
312 '("services" "protocols" "rpc")))
313 #t))))
314 (native-inputs `(("tar" ,tar)
315 ("xz" ,xz)))
316 (synopsis "IANA protocol, port, and RPC number assignments")
317 (description
318 "This package provides the /etc/services, /etc/protocols, and /etc/rpc
319 files, which contain information about the IANA-assigned port, protocol, and
320 ONC RPC numbers")
321 (home-page "http://packages.debian.org/sid/netbase")
322 (license license:gpl2)))
323
324 (define-public netcat
325 (package
326 (name "netcat")
327 (version "0.7.1")
328 (source (origin
329 (method url-fetch)
330 (uri (string-append "mirror://sourceforge/netcat/netcat-"
331 version ".tar.bz2"))
332 (sha256
333 (base32
334 "1frjcdkhkpzk0f84hx6hmw5l0ynpmji8vcbaxg8h5k2svyxz0nmm"))))
335 (build-system gnu-build-system)
336 (arguments
337 `(#:configure-flags
338 ;; By default, man and info pages are put in PREFIX/{man,info},
339 ;; but we want them in PREFIX/share/{man,info}.
340 (let ((out (assoc-ref %outputs "out")))
341 (list (string-append "--mandir=" out "/share/man")
342 (string-append "--infodir=" out "/share/info")))))
343 (home-page "http://netcat.sourceforge.net")
344 (synopsis "Read and write data over TCP/IP")
345 (description
346 "Netcat is a featured networking utility which reads and writes data
347 across network connections, using the TCP/IP protocol. It is designed to be a
348 reliable \"back-end\" tool that can be used directly or easily driven by other
349 programs and scripts. At the same time, it is a feature-rich network debugging
350 and exploration tool, since it can create almost any kind of connection you
351 would need and has several interesting built-in capabilities.")
352 (license license:gpl2+)))
353
354 (define-public alive
355 (package
356 (name "alive")
357 (version "2.0.2")
358 (source (origin
359 (method url-fetch)
360 (uri (string-append "mirror://gnu/alive/alive-"
361 version ".tar.xz"))
362 (sha256
363 (base32
364 "1vrzg51ai68x9yld7vbgl58sxaw5qpx8rbakwcxn4cqq6vpxj38j"))))
365 (build-system gnu-build-system)
366 (arguments '(#:configure-flags '("alive_cv_nice_ping=yes")))
367 (inputs `(("guile" ,guile-2.0)
368 ("inetutils" ,inetutils)))
369 (home-page "http://www.gnu.org/software/alive/")
370 (synopsis "Autologin and keep-alive daemon")
371 (description
372 "GNU Alive sends periodic pings to a server, generally to keep a
373 connection alive.")
374 (license license:gpl3+)))
375
376 (define-public isc-dhcp
377 (package
378 (name "isc-dhcp")
379 (version "4.3.1")
380 (source (origin
381 (method url-fetch)
382 (uri (string-append "http://ftp.isc.org/isc/dhcp/"
383 version "/dhcp-" version ".tar.gz"))
384 (sha256
385 (base32
386 "1w4s7sni1m9223ya8m2a64lr62845c6xlraprjf8zfx6lylbqv16"))))
387 (build-system gnu-build-system)
388 (arguments
389 '(#:phases (alist-cons-after
390 'configure 'post-configure
391 (lambda* (#:key outputs #:allow-other-keys)
392 ;; Point to the right client script, which will be
393 ;; installed in a later phase.
394 (substitute* "includes/dhcpd.h"
395 (("#define[[:blank:]]+_PATH_DHCLIENT_SCRIPT.*")
396 (let ((out (assoc-ref outputs "out")))
397 (string-append "#define _PATH_DHCLIENT_SCRIPT \""
398 out "/libexec/dhclient-script"
399 "\"\n"))))
400
401 ;; During the 'build' phase, 'bind.tar.gz' is extracted, so
402 ;; we must patch shebangs in there and make sure the right
403 ;; shell is used.
404 (with-directory-excursion "bind"
405 (substitute* "Makefile"
406 (("\\./configure")
407 (let ((sh (which "sh")))
408 (string-append "./configure CONFIG_SHELL="
409 sh " SHELL=" sh))))
410
411 (system* "tar" "xf" "bind.tar.gz")
412 (for-each patch-shebang
413 (find-files "bind-9.9.5-P1" ".*"))
414 (zero? (system* "tar" "cf" "bind.tar.gz"
415 "bind-9.9.5-P1"))))
416 (alist-cons-after
417 'install 'post-install
418 (lambda* (#:key inputs outputs #:allow-other-keys)
419 ;; Install the dhclient script for GNU/Linux and make sure
420 ;; if finds all the programs it needs.
421 (let* ((out (assoc-ref outputs "out"))
422 (libexec (string-append out "/libexec"))
423 (coreutils (assoc-ref inputs "coreutils"))
424 (inetutils (assoc-ref inputs "inetutils"))
425 (net-tools (assoc-ref inputs "net-tools"))
426 (sed (assoc-ref inputs "sed")))
427 (substitute* "client/scripts/linux"
428 (("/sbin/ip")
429 (string-append (assoc-ref inputs "iproute")
430 "/sbin/ip")))
431
432 (mkdir-p libexec)
433 (copy-file "client/scripts/linux"
434 (string-append libexec "/dhclient-script"))
435
436 (wrap-program
437 (string-append libexec "/dhclient-script")
438 `("PATH" ":" prefix
439 ,(map (lambda (dir)
440 (string-append dir "/bin:"
441 dir "/sbin"))
442 (list inetutils net-tools coreutils sed))))))
443 %standard-phases))))
444
445 (native-inputs `(("perl" ,perl)))
446
447 (inputs `(("inetutils" ,inetutils)
448 ("net-tools" ,net-tools)
449 ("iproute" ,iproute)
450
451 ;; When cross-compiling, we need the cross Coreutils and sed.
452 ;; Otherwise just use those from %FINAL-INPUTS.
453 ,@(if (%current-target-system)
454 `(("coreutils" ,coreutils)
455 ("sed" ,sed))
456 '())))
457
458 (home-page "http://www.isc.org/products/DHCP/")
459 (synopsis "Dynamic Host Configuration Protocol (DHCP) tools")
460 (description
461 "ISC's Dynamic Host Configuration Protocol (DHCP) distribution provides a
462 reference implementation of all aspects of DHCP, through a suite of DHCP
463 tools: server, client, and relay agent.")
464 (license license:isc)))
465
466 (define-public libpcap
467 (package
468 (name "libpcap")
469 (version "1.5.3")
470 (source (origin
471 (method url-fetch)
472 (uri (string-append "http://www.tcpdump.org/release/libpcap-"
473 version ".tar.gz"))
474 (sha256
475 (base32
476 "14wyjywrdi1ikaj6yc9c72m6m2r64z94lb0gm7k1a3q6q5cj3scs"))))
477 (build-system gnu-build-system)
478 (native-inputs `(("bison" ,bison) ("flex" ,flex)))
479 (arguments '(#:tests? #f)) ; no 'check' target
480 (home-page "http://www.tcpdump.org")
481 (synopsis "Network packet capture library")
482 (description
483 "libpcap is an interface for user-level packet capture. It provides a
484 portable framework for low-level network monitoring. Applications include
485 network statistics collection, security monitoring, network debugging, etc.")
486
487 ;; fad-*.c and a couple other files are BSD-4, but the rest is BSD-3.
488 (license license:bsd-3)))
489
490 (define-public tcpdump
491 (package
492 (name "tcpdump")
493 (version "4.5.1")
494 (source (origin
495 (method url-fetch)
496 (uri (string-append "http://www.tcpdump.org/release/tcpdump-"
497 version ".tar.gz"))
498 (sha256
499 (base32
500 "15hb7zkzd66nag102qbv100hcnf7frglbkylmr8adwr8f5jkkaql"))))
501 (build-system gnu-build-system)
502 (inputs `(("libpcap" ,libpcap)
503 ("openssl" ,openssl)))
504 (native-inputs `(("perl" ,perl))) ; for tests
505 (home-page "http://www.tcpdump.org/")
506 (synopsis "Network packet analyzer")
507 (description
508 "Tcpdump is a command-line tool to analyze network traffic passing
509 through the network interface controller.")
510 (license license:bsd-3)))
511
512 (define-public jnettop
513 (package
514 (name "jnettop")
515 (version "0.13.0")
516 (source (origin
517 (method url-fetch)
518 (uri (string-append "http://jnettop.kubs.info/dist/jnettop-"
519 version ".tar.gz"))
520 (sha256
521 (base32
522 "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9"))))
523 (build-system gnu-build-system)
524 (native-inputs
525 `(("pkg-config" ,pkg-config)))
526 (inputs
527 `(("glib" ,glib)
528 ("ncurses" ,ncurses)
529 ("libpcap" ,libpcap)))
530 (home-page "http://jnettop.kubs.info/")
531 (synopsis "Visualize network traffic by bandwidth use")
532 (description
533 "Jnettop is a traffic visualiser, which captures traffic going
534 through the host it is running from and displays streams sorted
535 by bandwidth they use.")
536 (license license:gpl2+)))
537
538 (define-public clusterssh
539 (package
540 (name "clusterssh")
541 (version "3.28")
542 (source (origin
543 (method url-fetch)
544 (uri (string-append "mirror://sourceforge/clusterssh/"
545 "clusterssh-" version ".tar.gz"))
546 (sha256
547 (base32
548 "1bwggpvaj2al5blg1ynapviv2kpydffpzq2zkhi81najnvzc1rr7"))))
549 (build-system gnu-build-system)
550 (inputs `(("perl" ,perl)))
551 (propagated-inputs `(("xterm" ,xterm)
552 ("perl-tk" ,perl-tk)
553 ("perl-x11-protocol" ,perl-x11-protocol)))
554 (arguments
555 `(#:phases
556 (alist-cons-after
557 'install 'set-load-paths
558 (lambda* (#:key inputs outputs #:allow-other-keys)
559 ;; Put the perl-tk and perl-x11-protocol modules in the perl inc
560 ;; path for PROG
561 (let* ((out (assoc-ref outputs "out"))
562 (prog (string-append out "/bin/cssh"))
563 (perl-ver ,(package-version perl))
564 (x11-inc (string-append
565 (assoc-ref inputs "perl-x11-protocol")
566 "/lib/perl5/site_perl/" perl-ver))
567 (tk-inc (string-append
568 (assoc-ref inputs "perl-tk")
569 "/lib/perl5/site_perl/" perl-ver
570 "/x86_64-linux")))
571 (wrap-program
572 prog
573 `("PERL5LIB" ":" prefix (,x11-inc ,tk-inc)))))
574 %standard-phases)))
575 ;; The clusterssh.sourceforge.net address requires login to view
576 (home-page "http://sourceforge.net/projects/clusterssh/")
577 (synopsis "Secure concurrent multi-server terminal control")
578 (description
579 "ClusterSSH controls a number of xterm windows via a single graphical
580 console window to allow commands to be interactively run on multiple servers
581 over ssh connections.")
582 (license license:gpl2+)))
583
584 (define-public rottlog
585 (package
586 (name "rottlog")
587 (version "0.72.2")
588 (source (origin
589 (method url-fetch)
590 (uri (string-append "mirror://gnu/rottlog/rottlog-"
591 version ".tar.gz"))
592 (sha256
593 (base32
594 "0751mb9l2f0jrk3vj6q8ilanifd121dliwk0c34g8k0dlzsv3kd7"))
595 (modules '((guix build utils)))
596 (snippet
597 '(substitute* "Makefile.in"
598 (("-o \\$\\{LOG_OWN\\} -g \\$\\{LOG_GROUP\\}")
599 ;; Don't try to chown root.
600 "")
601 (("mkdir -p \\$\\(ROTT_STATDIR\\)")
602 ;; Don't attempt to create /var/lib/rottlog.
603 "true")))))
604 (build-system gnu-build-system)
605 (arguments
606 '(#:configure-flags (list (string-append "ROTT_ETCDIR="
607 (assoc-ref %outputs "out")
608 "/etc")
609 "--localstatedir=/var")
610 #:phases (alist-cons-after
611 'install 'install-info
612 (lambda _
613 (zero? (system* "make" "install-info")))
614 %standard-phases)))
615 (native-inputs `(("texinfo" ,texinfo)
616 ("util-linux" ,util-linux))) ; for 'cal'
617 (home-page "http://www.gnu.org/software/rottlog/")
618 (synopsis "Log rotation and management")
619 (description
620 "GNU Rot[t]log is a program for managing log files. It is used to
621 automatically rotate out log files when they have reached a given size or
622 according to a given schedule. It can also be used to automatically compress
623 and archive such logs. Rot[t]log will mail reports of its activity to the
624 system administrator.")
625 (license license:gpl3+)))
626
627 (define-public sudo
628 (package
629 (name "sudo")
630 (version "1.8.10p3")
631 (source (origin
632 (method url-fetch)
633 (uri
634 (list (string-append "http://www.sudo.ws/sudo/dist/sudo-"
635 version ".tar.gz")
636 (string-append "ftp://ftp.sudo.ws/pub/sudo/OLD/sudo-"
637 version ".tar.gz")))
638 (sha256
639 (base32
640 "002l6h27pnhb77b65frhazbhknsxvrsnkpi43j7i0qw1lrgi7nkf"))))
641 (build-system gnu-build-system)
642 (arguments
643 `(#:configure-flags '("--with-logpath=/var/log/sudo.log"
644 "--with-rundir=/run/sudo"
645 "--with-vardir=/var/db/sudo"
646 "--with-iologdir=/var/log/sudo-io")
647 #:phases (alist-cons-before
648 'configure 'pre-configure
649 (lambda _
650 (substitute* "configure"
651 ;; Refer to the right executables.
652 (("/usr/bin/mv") (which "mv"))
653 (("/usr/bin/sh") (which "sh")))
654 (substitute* (find-files "." "Makefile\\.in")
655 (("-O [[:graph:]]+ -G [[:graph:]]+")
656 ;; Allow installation as non-root.
657 "")
658 (("^install: (.*)install-sudoers(.*)" _ before after)
659 ;; Don't try to create /etc/sudoers.
660 (string-append "install: " before after "\n"))
661 (("\\$\\(DESTDIR\\)\\$\\(rundir\\)")
662 ;; Don't try to create /run/sudo.
663 "$(TMPDIR)/dummy")
664 (("\\$\\(DESTDIR\\)\\$\\(vardir\\)")
665 ;; Don't try to create /var/db/sudo.
666 "$(TMPDIR)/dummy")))
667 %standard-phases)
668
669 ;; XXX: The 'testsudoers' test series expects user 'root' to exist, but
670 ;; the chroot's /etc/passwd doesn't have it. Turn off the tests.
671 #:tests? #f))
672 (inputs
673 `(("groff" ,groff)
674 ("linux-pam" ,linux-pam)
675 ("coreutils" ,coreutils)))
676 (home-page "http://www.sudo.ws/")
677 (synopsis "Run commands as root")
678 (description
679 "Sudo (su \"do\") allows a system administrator to delegate authority to
680 give certain users (or groups of users) the ability to run some (or all)
681 commands as root or another user while providing an audit trail of the
682 commands and their arguments.")
683
684 ;; See <http://www.sudo.ws/sudo/license.html>.
685 (license license:x11)))
686
687 (define-public wpa-supplicant-light
688 (package
689 (name "wpa-supplicant-light")
690 (version "2.4")
691 (source (origin
692 (method url-fetch)
693 (uri (string-append
694 "http://w1.fi/releases/wpa_supplicant-"
695 version
696 ".tar.gz"))
697 (sha256
698 (base32
699 "08li21q1wjn5chrv289w666il9ah1w419y3dkq2rl4wnq0rci385"))
700 (patches
701 (map search-patch '("wpa-supplicant-CVE-2015-1863.patch"
702 "wpa-supplicant-2015-2-fix.patch"
703 "wpa-supplicant-2015-3-fix.patch"
704 "wpa-supplicant-2015-4-fix-pt1.patch"
705 "wpa-supplicant-2015-4-fix-pt2.patch"
706 "wpa-supplicant-2015-4-fix-pt3.patch"
707 "wpa-supplicant-2015-4-fix-pt4.patch"
708 "wpa-supplicant-2015-4-fix-pt5.patch")))))
709 (build-system gnu-build-system)
710 (arguments
711 '(#:phases (alist-replace
712 'configure
713 (lambda* (#:key outputs #:allow-other-keys)
714 (chdir "wpa_supplicant")
715 (copy-file "defconfig" ".config")
716 (let ((port (open-file ".config" "al")))
717 (display "
718 CONFIG_DEBUG_SYSLOG=y
719
720 # Choose GnuTLS (the default is OpenSSL.)
721 CONFIG_TLS=gnutls
722
723 CONFIG_DRIVER_NL80211=y
724 CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
725 CONFIG_LIBNL32=y
726 CONFIG_READLINE=y\n" port)
727 (close-port port)))
728
729 (alist-cons-after
730 'install 'install-man-pages
731 (lambda* (#:key outputs #:allow-other-keys)
732 (let* ((out (assoc-ref outputs "out"))
733 (man (string-append out "/share/man"))
734 (man5 (string-append man "/man5"))
735 (man8 (string-append man "/man8")))
736 (define (copy-man-page target)
737 (lambda (file)
738 (copy-file file
739 (string-append target "/"
740 (basename file)))))
741
742 (mkdir-p man5) (mkdir man8)
743 (for-each (copy-man-page man5)
744 (find-files "doc/docbook" "\\.5"))
745 (for-each (copy-man-page man8)
746 (find-files "doc/docbook" "\\.8"))
747 #t))
748 %standard-phases))
749
750 #:make-flags (list "CC=gcc"
751 (string-append "BINDIR=" (assoc-ref %outputs "out")
752 "/sbin")
753 (string-append "LIBDIR=" (assoc-ref %outputs "out")
754 "/lib"))
755 #:tests? #f))
756 (inputs
757 `(("readline" ,readline)
758 ("libnl" ,libnl)
759 ("gnutls" ,gnutls)
760 ("libgcrypt" ,libgcrypt))) ;needed by crypto_gnutls.c
761 (native-inputs
762 `(("pkg-config" ,pkg-config)))
763 (home-page "http://w1.fi/wpa_supplicant/")
764 (synopsis "Connecting to WPA and WPA2-protected wireless networks")
765 (description
766 "wpa_supplicant is a WPA Supplicant with support for WPA and WPA2 (IEEE
767 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in
768 the client stations. It implements key negotiation with a WPA Authenticator
769 and it controls the roaming and IEEE 802.11 authentication/association of the
770 WLAN driver.
771
772 This package provides the 'wpa_supplicant' daemon and the 'wpa_cli' command.")
773
774 ;; In practice, this is linked against Readline, which makes it GPLv3+.
775 (license license:bsd-3)))
776
777 (define-public wpa-supplicant
778 (package (inherit wpa-supplicant-light)
779 (name "wpa-supplicant")
780 (inputs `(("dbus" ,dbus)
781 ,@(package-inputs wpa-supplicant-light)))
782 (arguments
783 (substitute-keyword-arguments (package-arguments wpa-supplicant-light)
784 ((#:phases phases)
785 `(alist-cons-after
786 'configure 'configure-for-dbus
787 (lambda _
788 (let ((port (open-file ".config" "al")))
789 (display "
790 CONFIG_CTRL_IFACE_DBUS=y
791 CONFIG_CTRL_IFACE_DBUS_NEW=y
792 CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
793 (close-port port))
794 #t)
795 (alist-cons-after
796 'install-man-pages 'install-dbus-conf
797 (lambda* (#:key outputs #:allow-other-keys)
798 (let* ((out (assoc-ref outputs "out"))
799 (dir (string-append out "/etc/dbus-1/system.d")))
800 (mkdir-p dir)
801 (copy-file "dbus/dbus-wpa_supplicant.conf"
802 (string-append dir "/wpa_supplicant.conf"))))
803 ,phases)))))))
804
805 (define-public wakelan
806 (package
807 (name "wakelan")
808 (version "1.1")
809 (source (origin
810 (method url-fetch)
811 (uri (string-append
812 "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
813 version ".tar.gz"))
814 (sha256
815 (base32
816 "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
817 (build-system gnu-build-system)
818 (arguments
819 '(#:phases (alist-replace
820 'configure
821 (lambda* (#:key outputs #:allow-other-keys)
822 (let ((out (assoc-ref outputs "out")))
823 (mkdir-p (string-append out "/bin"))
824 (mkdir-p (string-append out "/share/man/man1"))
825
826 ;; It's an old configure script that doesn't understand
827 ;; the extra options we pass.
828 (setenv "CONFIG_SHELL" (which "bash"))
829 (zero?
830 (system* "./configure"
831 (string-append "--prefix=" out)
832 (string-append "--mandir=" out
833 "/share/man")))))
834 %standard-phases)
835 #:tests? #f))
836 (home-page "http://kernel.org") ; really, no home page
837 (synopsis "Send a wake-on-LAN packet")
838 (description
839 "WakeLan broadcasts a properly formatted UDP packet across the local area
840 network, which causes enabled computers to power on.")
841 (license license:gpl2+)))
842
843 (define-public dmidecode
844 (package
845 (name "dmidecode")
846 (version "2.12")
847 (source (origin
848 (method url-fetch)
849 (uri (string-append
850 "mirror://savannah/dmidecode/dmidecode-"
851 version ".tar.bz2"))
852 (sha256
853 (base32
854 "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
855 (build-system gnu-build-system)
856 (arguments
857 '(#:phases (alist-delete 'configure %standard-phases)
858 #:tests? #f ; no 'check' target
859 #:make-flags (list (string-append "prefix="
860 (assoc-ref %outputs "out")))))
861 (home-page "http://www.nongnu.org/dmidecode/")
862 (synopsis "Read hardware information from the BIOS")
863 (description
864 "Dmidecode reports information about your system's hardware as described
865 in your system BIOS according to the SMBIOS/DMI standard. This typically
866 includes system manufacturer, model name, serial number, BIOS version, asset
867 tag as well as a lot of other details of varying level of interest and
868 reliability depending on the manufacturer. This will often include usage
869 status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory
870 module slots, and the list of I/O ports (e.g. serial, parallel, USB).")
871 (license license:gpl2+)))
872
873 (define-public acpica
874 (package
875 (name "acpica")
876 (version "20150410")
877 (source (origin
878 (method url-fetch)
879 (uri (string-append
880 "https://acpica.org/sites/acpica/files/acpica-unix2-"
881 version ".tar.gz"))
882 (sha256
883 (base32
884 "0q1fjwkyw9x6gsva6fd0zbn7ly4fx0ha4853f416np9kf2irillw"))))
885 (build-system gnu-build-system)
886 (native-inputs `(("flex" ,flex)
887 ("bison" ,bison)))
888 (arguments
889 '(#:make-flags (list (string-append "PREFIX=" %output)
890 "HOST=_LINUX"
891 "OPT_CFLAGS=-Wall -fno-strict-aliasing")
892 #:tests? #f ; no 'check' target.
893 #:phases (alist-delete 'configure %standard-phases)))
894 (home-page "http://acpica.org/")
895 (synopsis "Tools for the development and debug of ACPI tables")
896 (description
897 "The ACPI Component Architecture (ACPICA) project provides an
898 OS-independent reference implementation of the Advanced Configuration and
899 Power Interface Specification (ACPI). ACPICA code contains those portions of
900 ACPI meant to be directly integrated into the host OS as a kernel-resident
901 subsystem, and a small set of tools to assist in developing and debugging ACPI
902 tables. This package contains only the user-space tools needed for ACPI table
903 development, not the kernel implementation of ACPI.")
904 (license license:gpl2))) ; Dual GPLv2/ACPICA Licence
905
906 (define-public stress
907 (package
908 (name "stress")
909 (version "1.0.1")
910 (source (origin
911 (method url-fetch)
912 (uri (string-append "mirror://debian/pool/main/s/stress/stress_"
913 version ".orig.tar.gz"))
914 (sha256
915 (base32
916 "1v9vnzlihqfjsxa93hdbrq72pqqk00dkylmlg8jpxhm7s1w9qfl1"))))
917 (build-system gnu-build-system)
918 (home-page "http://packages.debian.org/wheezy/stress")
919 (synopsis "Impose load on and stress test a computer system")
920 (description
921 "Stress is a tool that imposes a configurable amount of CPU, memory, I/O,
922 or disk stress on a POSIX-compliant operating system and reports any errors it
923 detects.
924
925 Stress is not a benchmark. It is a tool used by system administrators to
926 evaluate how well their systems will scale, by kernel programmers to evaluate
927 perceived performance characteristics, and by systems programmers to expose
928 the classes of bugs which only or more frequently manifest themselves when the
929 system is under heavy load.")
930 (license license:gpl2+)))
931
932 (define-public detox
933 (package
934 (name "detox")
935 (version "1.2.0")
936 (source (origin
937 (method url-fetch)
938 (uri (string-append "mirror://sourceforge/detox/detox-"
939 version ".tar.bz2"))
940 (sha256
941 (base32
942 "1y6vvjqsg54kl49cry73jbfhr04s7wjs779vrr9zrq6kww7dkymb"))))
943 (build-system gnu-build-system)
944 ;; Both flex and popt are used in this case for their runtime libraries
945 ;; (libfl and libpopt).
946 (inputs
947 `(("flex" ,flex)
948 ("popt" ,popt)))
949 (arguments
950 `(#:configure-flags `(,(string-append "--with-popt="
951 (assoc-ref %build-inputs "popt")))
952 #:tests? #f)) ;no 'check' target
953 (home-page "http://detox.sourceforge.net")
954 (synopsis "Clean up filenames")
955 (description
956 "Detox is a program that renames files to make them easier to work with
957 under Unix and related operating systems. Spaces and various other unsafe
958 characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1)
959 characters can be replaced as well, as can UTF-8 characters.")
960 (license license:bsd-3)))
961
962 (define-public testdisk
963 (package
964 (name "testdisk")
965 (version "6.14")
966 (source (origin
967 (method url-fetch)
968 (uri (string-append "http://www.cgsecurity.org/testdisk-"
969 version ".tar.bz2"))
970 (sha256
971 (base32
972 "0v1jap83f5h99zv01v3qmqm160d36n4ysi0gyq7xzb3mqgmw75x5"))))
973 (build-system gnu-build-system)
974 (inputs
975 `(;; ("ntfs" ,ntfs)
976 ("util-linux" ,util-linux)
977 ("openssl" ,openssl)
978 ("zlib" ,zlib)
979 ("e2fsprogs" ,e2fsprogs)
980 ("libjpeg" ,libjpeg)
981 ("ncurses" ,ncurses)))
982 (home-page "http://www.cgsecurity.org/wiki/TestDisk")
983 (synopsis "Data recovery tool")
984 (description
985 "TestDisk is a program for data recovery, primarily designed to help
986 recover lost partitions and/or make non-booting disks bootable again.")
987 (license license:gpl2+)))
988
989 (define-public tree
990 (package
991 (name "tree")
992 (version "1.7.0")
993 (source (origin
994 (method url-fetch)
995 (uri (string-append
996 "http://mama.indstate.edu/users/ice/tree/src/tree-"
997 version ".tgz"))
998 (sha256
999 (base32 "04kviw799qxly08zb8n5mgxfd96gyis6x69q2qiw86jnh87c4mv9"))))
1000 (build-system gnu-build-system)
1001 (arguments
1002 '(#:phases (alist-delete 'configure %standard-phases)
1003 #:tests? #f ; no check target
1004 #:make-flags (let ((out (assoc-ref %outputs "out")))
1005 (list (string-append "prefix=" out)))))
1006 (synopsis "Recursively list the contents of a directory")
1007 (description
1008 "Tree is a recursive directory listing command that produces a depth
1009 indented listing of files, which is colorized ala dircolors if the LS_COLORS
1010 environment variable is set and output is to tty.")
1011 (home-page "http://mama.indstate.edu/users/ice/tree/")
1012 (license license:gpl2+)))
1013
1014 (define-public direvent
1015 (package
1016 (name "direvent")
1017 (version "5.0")
1018 (source (origin
1019 (method url-fetch)
1020 (uri (string-append "mirror://gnu/direvent/direvent-"
1021 version ".tar.gz"))
1022 (sha256
1023 (base32
1024 "1i14131y6m8wvirz6piw4zxz2q1kbpl0lniv5kl55rx4k372dg8z"))
1025 (modules '((guix build utils)))
1026 (snippet '(substitute* "tests/testsuite"
1027 (("#![[:blank:]]?/bin/sh")
1028 "#!$SHELL")))))
1029 (build-system gnu-build-system)
1030 (arguments
1031 '(#:phases (alist-cons-before
1032 'build 'patch-/bin/sh
1033 (lambda* (#:key inputs #:allow-other-keys)
1034 ;; Use the right shell when executing the watcher.
1035 (let ((bash (assoc-ref inputs "bash")))
1036 (substitute* "src/direvent.c"
1037 (("\"/bin/sh\"")
1038 (string-append "\"" bash "/bin/sh\"")))))
1039 %standard-phases)))
1040 (home-page "http://www.gnu.org/software/direvent/")
1041 (synopsis "Daemon to monitor directories for events such as file removal")
1042 (description
1043 "A daemon that monitors directories for events, such as creating,
1044 deleting or modifying files. It can monitor different sets of directories for
1045 different events. When an event is detected, direvent calls a specified
1046 external program with information about the event, such as the location
1047 within the file system where it occurred. Thus, \"direvent\" provides an
1048 easy way to react immediately if given files undergo changes, for example, to
1049 track changes in important system configuration files.")
1050 (license license:gpl3+)))
1051
1052 (define-public libcap-ng
1053 (package
1054 (name "libcap-ng")
1055 (version "0.7.4")
1056 (source (origin
1057 (method url-fetch)
1058 (uri (string-append
1059 "http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-"
1060 version ".tar.gz"))
1061 (sha256
1062 (base32
1063 "0ssvnh4cvhya0c1j6k6192zvqcq7nc0x01fb5nwhr0prfqr0i8j8"))))
1064 (build-system gnu-build-system)
1065 (inputs `(("python" ,python)))
1066 (home-page "http://people.redhat.com/sgrubb/libcap-ng/")
1067 (synopsis "Library for more easily working with POSIX capabilities")
1068 (description
1069 "The libcap-ng library is intended to make programming with POSIX
1070 capabilities easier than the traditional libcap library. It includes
1071 utilities that can analyse all currently running applications and print out
1072 any capabilities and whether or not it has an open ended bounding set. The
1073 included utilities are designed to let admins and developers spot apps from
1074 various ways that may be running with too much privilege.")
1075 ;; The library is lgpl2.1+, but also ships some utils which are gpl2+.
1076 (license (list license:lgpl2.1+ license:gpl2+))))
1077
1078 (define-public smartmontools
1079 (package
1080 (name "smartmontools")
1081 (version "6.3")
1082 (source (origin
1083 (method url-fetch)
1084 (uri (string-append
1085 "mirror://sourceforge/smartmontools/smartmontools/"
1086 version "/smartmontools-" version ".tar.gz"))
1087 (sha256
1088 (base32
1089 "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7"))))
1090 (build-system gnu-build-system)
1091 (inputs `(("libcap-ng" ,libcap-ng)))
1092 (home-page "http://www.smartmontools.org/")
1093 (synopsis "S.M.A.R.T. harddisk control and monitoring tools")
1094 (description
1095 "The smartmontools package contains utility programs to control and
1096 monitor storage systems using the Self-Monitoring, Analysis and Reporting
1097 Technology System (S.M.A.R.T.) built into most modern ATA and SCSI harddisks.
1098 In many cases, these utilities will provide advanced warning of disk
1099 degradation and failure.")
1100 (license license:gpl2+)))
1101
1102 (define-public fdupes
1103 (package
1104 (name "fdupes")
1105 (version "1.51")
1106 (source
1107 (origin
1108 (method url-fetch)
1109 (uri (string-append
1110 "https://github.com/adrianlopezroche/fdupes/archive/fdupes-"
1111 version ".tar.gz"))
1112 (sha256
1113 (base32
1114 "11j96vxl9vg3jsnxqxskrv3gad6dh7hz2zpyc8n31xzyxka1c7kn"))))
1115 (build-system gnu-build-system)
1116 (arguments
1117 '(#:phases (alist-delete 'configure %standard-phases)
1118 #:tests? #f ; no 'check' target
1119 #:make-flags (list (string-append "PREFIX="
1120 (assoc-ref %outputs "out")))))
1121 (home-page "https://github.com/adrianlopezroche/fdupes")
1122 (synopsis "Identify duplicate files")
1123 (description
1124 "fdupes is a program for identifying duplicate files residing within
1125 specified directories.")
1126 (license license:expat)))