gnu: Add fdupes.
[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 openssl) #:prefix o:)
44 #:use-module (gnu packages gnutls)
45 #:use-module (gnu packages gnupg)
46 #:use-module (gnu packages bison)
47 #:use-module (gnu packages flex)
48 #:use-module (gnu packages glib)
49 #:use-module (gnu packages pkg-config)
50 #:use-module (gnu packages popt)
51 #:use-module (gnu packages texinfo)
52 #:use-module (gnu packages groff)
53 #:use-module (gnu packages pciutils)
54 #:use-module (gnu packages libusb)
55 #:use-module (gnu packages libftdi)
56 #:use-module (gnu packages image)
57 #:use-module (gnu packages xorg)
58 #:use-module (gnu packages python))
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.2")
155 (source (origin
156 (method url-fetch)
157 (uri (string-append "mirror://gnu/inetutils/inetutils-"
158 version ".tar.gz"))
159 (sha256
160 (base32
161 "04wrm0v7l4890mmbaawd6wjwdv08bkglgqhpz0q4dkb0l50fl8q4"))))
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" ,o: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.3")
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 "0skvkl6c10ls4s48b2wmf47h9j1y40nlzxnzn8hyaw2j0prmpapa"))))
700 (build-system gnu-build-system)
701 (arguments
702 '(#:phases (alist-replace
703 'configure
704 (lambda* (#:key outputs #:allow-other-keys)
705 (chdir "wpa_supplicant")
706 (copy-file "defconfig" ".config")
707 (let ((port (open-file ".config" "al")))
708 (display "
709 CONFIG_DEBUG_SYSLOG=y
710
711 # Choose GnuTLS (the default is OpenSSL.)
712 CONFIG_TLS=gnutls
713
714 CONFIG_DRIVER_NL80211=y
715 CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
716 CONFIG_LIBNL32=y
717 CONFIG_READLINE=y\n" port)
718 (close-port port)))
719
720 (alist-cons-after
721 'install 'install-man-pages
722 (lambda* (#:key outputs #:allow-other-keys)
723 (let* ((out (assoc-ref outputs "out"))
724 (man (string-append out "/share/man"))
725 (man5 (string-append man "/man5"))
726 (man8 (string-append man "/man8")))
727 (define (copy-man-page target)
728 (lambda (file)
729 (copy-file file
730 (string-append target "/"
731 (basename file)))))
732
733 (mkdir-p man5) (mkdir man8)
734 (for-each (copy-man-page man5)
735 (find-files "doc/docbook" "\\.5"))
736 (for-each (copy-man-page man8)
737 (find-files "doc/docbook" "\\.8"))
738 #t))
739 %standard-phases))
740
741 #:make-flags (list "CC=gcc"
742 (string-append "BINDIR=" (assoc-ref %outputs "out")
743 "/sbin")
744 (string-append "LIBDIR=" (assoc-ref %outputs "out")
745 "/lib"))
746 #:tests? #f))
747 (inputs
748 `(("readline" ,readline)
749 ("libnl" ,libnl)
750 ("gnutls" ,gnutls)
751 ("libgcrypt" ,libgcrypt))) ;needed by crypto_gnutls.c
752 (native-inputs
753 `(("pkg-config" ,pkg-config)))
754 (home-page "http://w1.fi/wpa_supplicant/")
755 (synopsis "Connecting to WPA and WPA2-protected wireless networks")
756 (description
757 "wpa_supplicant is a WPA Supplicant with support for WPA and WPA2 (IEEE
758 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in
759 the client stations. It implements key negotiation with a WPA Authenticator
760 and it controls the roaming and IEEE 802.11 authentication/association of the
761 WLAN driver.
762
763 This package provides the 'wpa_supplicant' daemon and the 'wpa_cli' command.")
764
765 ;; In practice, this is linked against Readline, which makes it GPLv3+.
766 (license license:bsd-3)))
767
768 (define-public wpa-supplicant
769 (package (inherit wpa-supplicant-light)
770 (name "wpa-supplicant")
771 (inputs `(("dbus" ,dbus)
772 ,@(package-inputs wpa-supplicant-light)))
773 (arguments
774 (substitute-keyword-arguments (package-arguments wpa-supplicant-light)
775 ((#:phases phases)
776 `(alist-cons-after
777 'configure 'configure-for-dbus
778 (lambda _
779 (let ((port (open-file ".config" "al")))
780 (display "
781 CONFIG_CTRL_IFACE_DBUS=y
782 CONFIG_CTRL_IFACE_DBUS_NEW=y
783 CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
784 (close-port port))
785 #t)
786 ,phases))))))
787
788 (define-public wakelan
789 (package
790 (name "wakelan")
791 (version "1.1")
792 (source (origin
793 (method url-fetch)
794 (uri (string-append
795 "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
796 version ".tar.gz"))
797 (sha256
798 (base32
799 "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
800 (build-system gnu-build-system)
801 (arguments
802 '(#:phases (alist-replace
803 'configure
804 (lambda* (#:key outputs #:allow-other-keys)
805 (let ((out (assoc-ref outputs "out")))
806 (mkdir-p (string-append out "/bin"))
807 (mkdir-p (string-append out "/share/man/man1"))
808
809 ;; It's an old configure script that doesn't understand
810 ;; the extra options we pass.
811 (setenv "CONFIG_SHELL" (which "bash"))
812 (zero?
813 (system* "./configure"
814 (string-append "--prefix=" out)
815 (string-append "--mandir=" out
816 "/share/man")))))
817 %standard-phases)
818 #:tests? #f))
819 (home-page "http://kernel.org") ; really, no home page
820 (synopsis "Send a wake-on-LAN packet")
821 (description
822 "WakeLan broadcasts a properly formatted UDP packet across the local area
823 network, which causes enabled computers to power on.")
824 (license license:gpl2+)))
825
826 (define-public dmidecode
827 (package
828 (name "dmidecode")
829 (version "2.12")
830 (source (origin
831 (method url-fetch)
832 (uri (string-append
833 "mirror://savannah/dmidecode/dmidecode-"
834 version ".tar.bz2"))
835 (sha256
836 (base32
837 "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
838 (build-system gnu-build-system)
839 (arguments
840 '(#:phases (alist-delete 'configure %standard-phases)
841 #:tests? #f ; no 'check' target
842 #:make-flags (list (string-append "prefix="
843 (assoc-ref %outputs "out")))))
844 (home-page "http://www.nongnu.org/dmidecode/")
845 (synopsis "Read hardware information from the BIOS")
846 (description
847 "Dmidecode reports information about your system's hardware as described
848 in your system BIOS according to the SMBIOS/DMI standard. This typically
849 includes system manufacturer, model name, serial number, BIOS version, asset
850 tag as well as a lot of other details of varying level of interest and
851 reliability depending on the manufacturer. This will often include usage
852 status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory
853 module slots, and the list of I/O ports (e.g. serial, parallel, USB).")
854 (license license:gpl2+)))
855
856 (define-public acpica
857 (package
858 (name "acpica")
859 (version "20140724")
860 (source (origin
861 (method url-fetch)
862 (uri (string-append
863 "https://acpica.org/sites/acpica/files/acpica-unix2-"
864 version ".tar.gz"))
865 (sha256
866 (base32
867 "01vdgrh7dsxrrvg5yd8sxm63cw8210pnsi5qg9g15ac53gn243ac"))))
868 (build-system gnu-build-system)
869 (native-inputs `(("flex" ,flex)
870 ("bison" ,bison)))
871 (arguments
872 '(#:make-flags (list (string-append "PREFIX=" %output)
873 "HOST=_LINUX"
874 "OPT_CFLAGS=-Wall -fno-strict-aliasing")
875 #:tests? #f ; no 'check' target.
876 #:phases (alist-delete 'configure %standard-phases)))
877 (home-page "http://acpica.org/")
878 (synopsis "Tools for the development and debug of ACPI tables")
879 (description
880 "The ACPI Component Architecture (ACPICA) project provides an
881 OS-independent reference implementation of the Advanced Configuration and
882 Power Interface Specification (ACPI). ACPICA code contains those portions of
883 ACPI meant to be directly integrated into the host OS as a kernel-resident
884 subsystem, and a small set of tools to assist in developing and debugging ACPI
885 tables. This package contains only the user-space tools needed for ACPI table
886 development, not the kernel implementation of ACPI.")
887 (license license:gpl2))) ; Dual GPLv2/ACPICA Licence
888
889 (define-public stress
890 (package
891 (name "stress")
892 (version "1.0.1")
893 (source (origin
894 (method url-fetch)
895 (uri (string-append "mirror://debian/pool/main/s/stress/stress_"
896 version ".orig.tar.gz"))
897 (sha256
898 (base32
899 "1v9vnzlihqfjsxa93hdbrq72pqqk00dkylmlg8jpxhm7s1w9qfl1"))))
900 (build-system gnu-build-system)
901 (home-page "http://packages.debian.org/wheezy/stress")
902 (synopsis "Impose load on and stress test a computer system")
903 (description
904 "Stress is a tool that imposes a configurable amount of CPU, memory, I/O,
905 or disk stress on a POSIX-compliant operating system and reports any errors it
906 detects.
907
908 Stress is not a benchmark. It is a tool used by system administrators to
909 evaluate how well their systems will scale, by kernel programmers to evaluate
910 perceived performance characteristics, and by systems programmers to expose
911 the classes of bugs which only or more frequently manifest themselves when the
912 system is under heavy load.")
913 (license license:gpl2+)))
914
915 (define-public detox
916 (package
917 (name "detox")
918 (version "1.2.0")
919 (source (origin
920 (method url-fetch)
921 (uri (string-append "mirror://sourceforge/detox/detox-"
922 version ".tar.bz2"))
923 (sha256
924 (base32
925 "1y6vvjqsg54kl49cry73jbfhr04s7wjs779vrr9zrq6kww7dkymb"))))
926 (build-system gnu-build-system)
927 ;; Both flex and popt are used in this case for their runtime libraries
928 ;; (libfl and libpopt).
929 (inputs
930 `(("flex" ,flex)
931 ("popt" ,popt)))
932 (arguments
933 `(#:configure-flags `(,(string-append "--with-popt="
934 (assoc-ref %build-inputs "popt")))
935 #:tests? #f)) ;no 'check' target
936 (home-page "http://detox.sourceforge.net")
937 (synopsis "Clean up filenames")
938 (description
939 "Detox is a program that renames files to make them easier to work with
940 under Unix and related operating systems. Spaces and various other unsafe
941 characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1)
942 characters can be replaced as well, as can UTF-8 characters.")
943 (license license:bsd-3)))
944
945 (define-public testdisk
946 (package
947 (name "testdisk")
948 (version "6.14")
949 (source (origin
950 (method url-fetch)
951 (uri (string-append "http://www.cgsecurity.org/testdisk-"
952 version ".tar.bz2"))
953 (sha256
954 (base32
955 "0v1jap83f5h99zv01v3qmqm160d36n4ysi0gyq7xzb3mqgmw75x5"))))
956 (build-system gnu-build-system)
957 (inputs
958 `(;; ("ntfs" ,ntfs)
959 ("util-linux" ,util-linux)
960 ("openssl" ,o:openssl)
961 ("zlib" ,zlib)
962 ("e2fsprogs" ,e2fsprogs)
963 ("libjpeg" ,libjpeg)
964 ("ncurses" ,ncurses)))
965 (home-page "http://www.cgsecurity.org/wiki/TestDisk")
966 (synopsis "Data recovery tool")
967 (description
968 "TestDisk is a program for data recovery, primarily designed to help
969 recover lost partitions and/or make non-booting disks bootable again.")
970 (license license:gpl2+)))
971
972 (define-public tree
973 (package
974 (name "tree")
975 (version "1.7.0")
976 (source (origin
977 (method url-fetch)
978 (uri (string-append
979 "http://mama.indstate.edu/users/ice/tree/src/tree-"
980 version ".tgz"))
981 (sha256
982 (base32 "04kviw799qxly08zb8n5mgxfd96gyis6x69q2qiw86jnh87c4mv9"))))
983 (build-system gnu-build-system)
984 (arguments
985 '(#:phases (alist-delete 'configure %standard-phases)
986 #:tests? #f ; no check target
987 #:make-flags (let ((out (assoc-ref %outputs "out")))
988 (list (string-append "prefix=" out)))))
989 (synopsis "Recursively list the contents of a directory")
990 (description
991 "Tree is a recursive directory listing command that produces a depth
992 indented listing of files, which is colorized ala dircolors if the LS_COLORS
993 environment variable is set and output is to tty.")
994 (home-page "http://mama.indstate.edu/users/ice/tree/")
995 (license license:gpl2+)))
996
997 (define-public direvent
998 (package
999 (name "direvent")
1000 (version "5.0")
1001 (source (origin
1002 (method url-fetch)
1003 (uri (string-append "mirror://gnu/direvent/direvent-"
1004 version ".tar.gz"))
1005 (sha256
1006 (base32
1007 "1i14131y6m8wvirz6piw4zxz2q1kbpl0lniv5kl55rx4k372dg8z"))
1008 (modules '((guix build utils)))
1009 (snippet '(substitute* "tests/testsuite"
1010 (("#![[:blank:]]?/bin/sh")
1011 "#!$SHELL")))))
1012 (build-system gnu-build-system)
1013 (arguments
1014 '(#:phases (alist-cons-before
1015 'build 'patch-/bin/sh
1016 (lambda* (#:key inputs #:allow-other-keys)
1017 ;; Use the right shell when executing the watcher.
1018 (let ((bash (assoc-ref inputs "bash")))
1019 (substitute* "src/direvent.c"
1020 (("\"/bin/sh\"")
1021 (string-append "\"" bash "/bin/sh\"")))))
1022 %standard-phases)))
1023 (home-page "http://www.gnu.org/software/direvent/")
1024 (synopsis "Daemon to monitor directories for events such as file removal")
1025 (description
1026 "A daemon that monitors directories for events, such as creating,
1027 deleting or modifying files. It can monitor different sets of directories for
1028 different events. When an event is detected, direvent calls a specified
1029 external program with information about the event, such as the location
1030 within the file system where it occurred. Thus, \"direvent\" provides an
1031 easy way to react immediately if given files undergo changes, for example, to
1032 track changes in important system configuration files.")
1033 (license license:gpl3+)))
1034
1035 (define-public libcap-ng
1036 (package
1037 (name "libcap-ng")
1038 (version "0.7.4")
1039 (source (origin
1040 (method url-fetch)
1041 (uri (string-append
1042 "http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-"
1043 version ".tar.gz"))
1044 (sha256
1045 (base32
1046 "0ssvnh4cvhya0c1j6k6192zvqcq7nc0x01fb5nwhr0prfqr0i8j8"))))
1047 (build-system gnu-build-system)
1048 (inputs `(("python" ,python)))
1049 (home-page "http://people.redhat.com/sgrubb/libcap-ng/")
1050 (synopsis "Library for more easily working with POSIX capabilities")
1051 (description
1052 "The libcap-ng library is intended to make programming with POSIX
1053 capabilities easier than the traditional libcap library. It includes
1054 utilities that can analyse all currently running applications and print out
1055 any capabilities and whether or not it has an open ended bounding set. The
1056 included utilities are designed to let admins and developers spot apps from
1057 various ways that may be running with too much privilege.")
1058 ;; The library is lgpl2.1+, but also ships some utils which are gpl2+.
1059 (license (list license:lgpl2.1+ license:gpl2+))))
1060
1061 (define-public smartmontools
1062 (package
1063 (name "smartmontools")
1064 (version "6.3")
1065 (source (origin
1066 (method url-fetch)
1067 (uri (string-append
1068 "mirror://sourceforge/smartmontools/smartmontools/"
1069 version "/smartmontools-" version ".tar.gz"))
1070 (sha256
1071 (base32
1072 "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7"))))
1073 (build-system gnu-build-system)
1074 (inputs `(("libcap-ng" ,libcap-ng)))
1075 (home-page "http://www.smartmontools.org/")
1076 (synopsis "S.M.A.R.T. harddisk control and monitoring tools")
1077 (description
1078 "The smartmontools package contains utility programs to control and
1079 monitor storage systems using the Self-Monitoring, Analysis and Reporting
1080 Technology System (S.M.A.R.T.) built into most modern ATA and SCSI harddisks.
1081 In many cases, these utilities will provide advanced warning of disk
1082 degradation and failure.")
1083 (license license:gpl2+)))
1084
1085 (define-public fdupes
1086 (package
1087 (name "fdupes")
1088 (version "1.51")
1089 (source
1090 (origin
1091 (method url-fetch)
1092 (uri (string-append
1093 "https://github.com/adrianlopezroche/fdupes/archive/fdupes-"
1094 version ".tar.gz"))
1095 (sha256
1096 (base32
1097 "11j96vxl9vg3jsnxqxskrv3gad6dh7hz2zpyc8n31xzyxka1c7kn"))))
1098 (build-system gnu-build-system)
1099 (arguments
1100 '(#:phases (alist-delete 'configure %standard-phases)
1101 #:tests? #f ; no 'check' target
1102 #:make-flags (list (string-append "PREFIX="
1103 (assoc-ref %outputs "out")))))
1104 (home-page "https://github.com/adrianlopezroche/fdupes")
1105 (synopsis "Identify duplicate files")
1106 (description
1107 "fdupes is a program for identifying duplicate files residing within
1108 specified directories.")
1109 (license license:expat)))