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