gnu: powertop: Update to 2.9.
[jackhill/guix/guix.git] / gnu / packages / linux.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
5 ;;; Copyright © 2014, 2015, 2016, 2017 Mark H Weaver <mhw@netris.org>
6 ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
7 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
8 ;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
9 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
10 ;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <me@tobias.gr>
11 ;;; Copyright © 2016, 2017 Alex Kost <alezost@gmail.com>
12 ;;; Copyright © 2016 Raymond Nicholson <rain1@openmailbox.org>
13 ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
14 ;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
15 ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
16 ;;; Copyright © 2016 David Craven <david@craven.ch>
17 ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
18 ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
19 ;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
20 ;;; Copyright © 2016 Carlos Sánchez de La Lama <csanchezdll@gmail.com>
21 ;;; Copyright © 2016, 2017 ng0 <ng0@no-reply.pragmatique.xyz>
22 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
23 ;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.com>
24 ;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
25 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
26 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
27 ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
28 ;;; Copyright © 2017 nee <nee-git@hidamari.blue>
29 ;;; Copyright © 2017 Dave Love <fx@gnu.org>
30 ;;;
31 ;;; This file is part of GNU Guix.
32 ;;;
33 ;;; GNU Guix is free software; you can redistribute it and/or modify it
34 ;;; under the terms of the GNU General Public License as published by
35 ;;; the Free Software Foundation; either version 3 of the License, or (at
36 ;;; your option) any later version.
37 ;;;
38 ;;; GNU Guix is distributed in the hope that it will be useful, but
39 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
40 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 ;;; GNU General Public License for more details.
42 ;;;
43 ;;; You should have received a copy of the GNU General Public License
44 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
45
46 (define-module (gnu packages linux)
47 #:use-module (gnu packages)
48 #:use-module (gnu packages acl)
49 #:use-module (gnu packages admin)
50 #:use-module (gnu packages algebra)
51 #:use-module (gnu packages attr)
52 #:use-module (gnu packages autotools)
53 #:use-module (gnu packages backup)
54 #:use-module (gnu packages base)
55 #:use-module (gnu packages bash)
56 #:use-module (gnu packages bison)
57 #:use-module (gnu packages calendar)
58 #:use-module (gnu packages check)
59 #:use-module (gnu packages crypto)
60 #:use-module (gnu packages compression)
61 #:use-module (gnu packages databases)
62 #:use-module (gnu packages datastructures)
63 #:use-module (gnu packages docbook)
64 #:use-module (gnu packages documentation)
65 #:use-module (gnu packages elf)
66 #:use-module (gnu packages flex)
67 #:use-module (gnu packages file)
68 #:use-module (gnu packages freedesktop)
69 #:use-module (gnu packages gcc)
70 #:use-module (gnu packages gettext)
71 #:use-module (gnu packages glib)
72 #:use-module (gnu packages gnuzilla)
73 #:use-module (gnu packages gperf)
74 #:use-module (gnu packages gtk)
75 #:use-module (gnu packages libusb)
76 #:use-module (gnu packages man)
77 #:use-module (gnu packages maths)
78 #:use-module (gnu packages multiprecision)
79 #:use-module (gnu packages ncurses)
80 #:use-module (gnu packages networking)
81 #:use-module (gnu packages ninja)
82 #:use-module (gnu packages perl)
83 #:use-module (gnu packages pciutils)
84 #:use-module (gnu packages pkg-config)
85 #:use-module (gnu packages popt)
86 #:use-module (gnu packages pulseaudio)
87 #:use-module (gnu packages python)
88 #:use-module (gnu packages readline)
89 #:use-module (gnu packages rrdtool)
90 #:use-module (gnu packages samba)
91 #:use-module (gnu packages slang)
92 #:use-module (gnu packages storage)
93 #:use-module (gnu packages texinfo)
94 #:use-module (gnu packages tls)
95 #:use-module (gnu packages valgrind)
96 #:use-module (gnu packages video)
97 #:use-module (gnu packages web)
98 #:use-module (gnu packages xiph)
99 #:use-module (gnu packages xml)
100 #:use-module (gnu packages xdisorg)
101 #:use-module (gnu packages xorg)
102 #:use-module (gnu packages groff)
103 #:use-module (gnu packages selinux)
104 #:use-module (gnu packages swig)
105 #:use-module (guix build-system cmake)
106 #:use-module (guix build-system gnu)
107 #:use-module (guix build-system python)
108 #:use-module (guix build-system trivial)
109 #:use-module (guix download)
110 #:use-module (guix git-download)
111 #:use-module ((guix licenses) #:prefix license:)
112 #:use-module (guix packages)
113 #:use-module (guix utils)
114 #:use-module (srfi srfi-1)
115 #:use-module (srfi srfi-2)
116 #:use-module (srfi srfi-26)
117 #:use-module (ice-9 match))
118
119 (define-public (system->linux-architecture arch)
120 "Return the Linux architecture name for ARCH, a Guix system name such as
121 \"x86_64-linux\" or a target triplet such as \"arm-linux-gnueabihf\"."
122 (let ((arch (car (string-split arch #\-))))
123 (cond ((string=? arch "i686") "i386")
124 ((string-prefix? "mips" arch) "mips")
125 ((string-prefix? "arm" arch) "arm")
126 ((string-prefix? "aarch64" arch) "arm64")
127 ((string-prefix? "alpha" arch) "alpha")
128 ((string-prefix? "powerpc" arch) "powerpc") ;including "powerpc64le"
129 (else arch))))
130
131 (define-public (system->defconfig system)
132 "Some systems (notably powerpc-linux) require a special target for kernel
133 defconfig. Return the appropiate make target if applicable, otherwise return
134 \"defconfig\"."
135 (cond ((string-prefix? "powerpc-" system) "pmac32_defconfig")
136 ((string-prefix? "powerpc64le-" system) "ppc64_defconfig")
137 (else "defconfig")))
138
139 (define (linux-libre-urls version)
140 "Return a list of URLs for Linux-Libre VERSION."
141 (list (string-append
142 "http://linux-libre.fsfla.org/pub/linux-libre/releases/"
143 version "-gnu/linux-libre-" version "-gnu.tar.xz")
144
145 ;; XXX: Work around <http://bugs.gnu.org/14851>.
146 (string-append
147 "ftp://alpha.gnu.org/gnu/guix/mirror/linux-libre-"
148 version "-gnu.tar.xz")
149
150 ;; Maybe this URL will become valid eventually.
151 (string-append
152 "mirror://gnu/linux-libre/" version "-gnu/linux-libre-"
153 version "-gnu.tar.xz")))
154
155 (define-public linux-libre-headers
156 (package
157 (name "linux-libre-headers")
158 (version "4.4.47")
159 (source (origin
160 (method url-fetch)
161 (uri (linux-libre-urls version))
162 (sha256
163 (base32
164 "00zdq7swhvzbbnnhzizq6m34q5k4fycpcp215bmkbxh1ic76v7bs"))))
165 (build-system gnu-build-system)
166 (native-inputs `(("perl" ,perl)))
167 (arguments
168 `(#:modules ((guix build gnu-build-system)
169 (guix build utils)
170 (srfi srfi-1))
171 #:phases
172 (modify-phases %standard-phases
173 (delete 'configure)
174 (replace 'build
175 (lambda _
176 (let ((arch ,(system->linux-architecture
177 (or (%current-target-system)
178 (%current-system))))
179 (defconfig ,(system->defconfig
180 (or (%current-target-system)
181 (%current-system)))))
182 (setenv "ARCH" arch)
183 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
184 (and (zero? (system* "make" defconfig))
185 (zero? (system* "make" "mrproper" "headers_check"))))))
186 (replace 'install
187 (lambda* (#:key outputs #:allow-other-keys)
188 (let ((out (assoc-ref outputs "out")))
189 (and (zero? (system* "make"
190 (string-append "INSTALL_HDR_PATH=" out)
191 "headers_install"))
192 (begin
193 (mkdir (string-append out "/include/config"))
194 (call-with-output-file
195 (string-append out
196 "/include/config/kernel.release")
197 (lambda (p)
198 (format p "~a-default~%" ,version)))
199
200 ;; Remove the '.install' and '..install.cmd' files; the
201 ;; latter contains store paths, which pulls in bootstrap
202 ;; binaries in the build environment, and prevents bit
203 ;; reproducibility for the bootstrap binaries.
204 (for-each delete-file (find-files out "\\.install"))
205
206 #t))))))
207 #:allowed-references ()
208 #:tests? #f))
209 (home-page "https://www.gnu.org/software/linux-libre/")
210 (synopsis "GNU Linux-Libre kernel headers")
211 (description "Headers of the Linux-Libre kernel.")
212 (license license:gpl2)))
213
214 (define %boot-logo-patch
215 ;; Linux-Libre boot logo featuring Freedo and a gnu.
216 (origin
217 (method url-fetch)
218 (uri (string-append "http://www.fsfla.org/svn/fsfla/software/linux-libre/"
219 "lemote/gnewsense/branches/3.16/100gnu+freedo.patch"))
220 (sha256
221 (base32
222 "1hk9swxxc80bmn2zd2qr5ccrjrk28xkypwhl4z0qx4hbivj7qm06"))))
223
224 (define* (kernel-config arch #:key variant)
225 "Return the absolute file name of the Linux-Libre build configuration file
226 for ARCH and optionally VARIANT, or #f if there is no such configuration."
227 (let* ((name (string-append (if variant (string-append variant "-") "")
228 (if (string=? "i386" arch) "i686" arch) ".conf"))
229 (file (string-append "linux-libre/" name)))
230 (search-auxiliary-file file)))
231
232 (define %default-extra-linux-options
233 `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html
234 ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t)
235 ;; Modules required for initrd:
236 ("CONFIG_NET_9P" . m)
237 ("CONFIG_NET_9P_VIRTIO" . m)
238 ("CONFIG_VIRTIO_BLK" . m)
239 ("CONFIG_VIRTIO_NET" . m)
240 ("CONFIG_VIRTIO_PCI" . m)
241 ("CONFIG_VIRTIO_BALLOON" . m)
242 ("CONFIG_VIRTIO_MMIO" . m)
243 ("CONFIG_FUSE_FS" . m)
244 ("CONFIG_CIFS" . m)
245 ("CONFIG_9P_FS" . m)))
246
247 (define (config->string options)
248 (string-join (map (match-lambda
249 ((option . 'm)
250 (string-append option "=m"))
251 ((option . #t)
252 (string-append option "=y"))
253 ((option . #f)
254 (string-append option "=n")))
255 options)
256 "\n"))
257
258 (define* (make-linux-libre version hash supported-systems
259 #:key
260 ;; A function that takes an arch and a variant.
261 ;; See kernel-config for an example.
262 (extra-version #f)
263 (configuration-file #f)
264 (defconfig "defconfig")
265 (extra-options %default-extra-linux-options)
266 (patches (list %boot-logo-patch)))
267 (package
268 (name (if extra-version
269 (string-append "linux-libre-" extra-version)
270 "linux-libre"))
271 (version version)
272 (source (origin
273 (method url-fetch)
274 (uri (linux-libre-urls version))
275 (sha256 (base32 hash))
276 (patches patches)))
277 (supported-systems supported-systems)
278 (build-system gnu-build-system)
279 (native-inputs
280 `(("perl" ,perl)
281 ("bc" ,bc)
282 ("openssl" ,openssl)
283 ("kmod" ,kmod)
284 ,@(match (and configuration-file
285 (configuration-file
286 (system->linux-architecture
287 (or (%current-target-system) (%current-system)))
288 #:variant (version-major+minor version)))
289 (#f ;no config for this platform
290 '())
291 ((? string? config)
292 `(("kconfig" ,config))))))
293 (arguments
294 `(#:modules ((guix build gnu-build-system)
295 (guix build utils)
296 (srfi srfi-1)
297 (ice-9 match))
298 #:phases
299 (modify-phases %standard-phases
300 (replace 'configure
301 (lambda* (#:key inputs native-inputs target #:allow-other-keys)
302 ;; Avoid introducing timestamps
303 (setenv "KCONFIG_NOTIMESTAMP" "1")
304 (setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH"))
305
306 ;; Set ARCH and CROSS_COMPILE
307 (let ((arch ,(system->linux-architecture
308 (or (%current-target-system)
309 (%current-system)))))
310 (setenv "ARCH" arch)
311 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
312
313 (when target
314 (setenv "CROSS_COMPILE" (string-append target "-"))
315 (format #t "`CROSS_COMPILE' set to `~a'~%"
316 (getenv "CROSS_COMPILE"))))
317
318 (setenv "EXTRA_VERSION" ,extra-version)
319
320 (let ((build (assoc-ref %standard-phases 'build))
321 (config (assoc-ref inputs "kconfig")))
322
323 ;; Use a custom kernel configuration file or a default
324 ;; configuration file.
325 (if config
326 (begin
327 (copy-file config ".config")
328 (chmod ".config" #o666))
329 (system* "make" ,defconfig))
330
331 ;; Appending works even when the option wasn't in the
332 ;; file. The last one prevails if duplicated.
333 (let ((port (open-file ".config" "a"))
334 (extra-configuration ,(config->string extra-options)))
335 (display extra-configuration port)
336 (close-port port))
337
338 (zero? (system* "make" "oldconfig")))))
339 (replace 'install
340 (lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
341 (let* ((out (assoc-ref outputs "out"))
342 (moddir (string-append out "/lib/modules"))
343 (dtbdir (string-append out "/lib/dtbs"))
344 (kmod (assoc-ref (or native-inputs inputs) "kmod")))
345 ;; Install kernel image, kernel configuration and link map.
346 (for-each (lambda (file) (install-file file out))
347 (find-files "." "^(\\.config|bzImage|zImage|Image|vmlinuz|System\\.map)$"))
348 ;; Install device tree files
349 (for-each (lambda (file) (install-file file dtbdir))
350 (find-files "." "\\.dtb$"))
351 ;; Install kernel modules
352 (mkdir-p moddir)
353 (zero? (system* "make"
354 (string-append "DEPMOD=" kmod "/bin/depmod")
355 (string-append "MODULE_DIR=" moddir)
356 (string-append "INSTALL_PATH=" out)
357 (string-append "INSTALL_MOD_PATH=" out)
358 "INSTALL_MOD_STRIP=1"
359 "modules_install"))))))
360 #:tests? #f))
361 (home-page "https://www.gnu.org/software/linux-libre//")
362 (synopsis "100% free redistribution of a cleaned Linux kernel")
363 (description
364 "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.
365 It has been modified to remove all non-free binary blobs.")
366 (license license:gpl2)))
367
368 (define %intel-compatible-systems '("x86_64-linux" "i686-linux"))
369
370 (define %linux-libre-version "4.13.3")
371 (define %linux-libre-hash "011mjm7kz8sf45zj17qldww34q8wh1sv6j0zqrmrlrj39i0xq1a2")
372
373 (define-public linux-libre
374 (make-linux-libre %linux-libre-version
375 %linux-libre-hash
376 %intel-compatible-systems
377 #:configuration-file kernel-config))
378
379 (define-public linux-libre-4.9
380 (make-linux-libre "4.9.51"
381 "168pyrddkfsmwgk4npnlp2hsxmqv6zpwsspyv2ngr9bdnzh45pvj"
382 %intel-compatible-systems
383 #:configuration-file kernel-config))
384
385 (define-public linux-libre-4.4
386 (make-linux-libre "4.4.88"
387 "0ds5jxh8p7f8yk55i1xbvz0xmgp4nc7g1xka23c4mcbal2v9v5b2"
388 %intel-compatible-systems
389 #:configuration-file kernel-config))
390
391 (define-public linux-libre-4.1
392 (make-linux-libre "4.1.44"
393 "1h1v2n8fxnn98y0jz9pnr4xdmc0v4l5d3hfxa5n5r3xmjksf1xs3"
394 %intel-compatible-systems
395 #:configuration-file kernel-config
396 #:patches
397 (list %boot-logo-patch
398 (origin
399 (method url-fetch)
400 (uri "\
401 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git/patch/?id=4a01092a5fa819397484fe2b50e9518356858156")
402 (file-name "linux-libre-4.4-CVE-2017-1000251.patch")
403 (sha256
404 (base32
405 "0zmkw9zvzpwy2ihiyfrw6mrf8qzv77cm23lxadr20qvzqlc1xzb3"))))))
406
407 (define-public linux-libre-arm-generic
408 (make-linux-libre %linux-libre-version
409 %linux-libre-hash
410 '("armhf-linux")
411 #:defconfig "multi_v7_defconfig"
412 #:extra-version "arm-generic"))
413
414 \f
415 ;;;
416 ;;; Pluggable authentication modules (PAM).
417 ;;;
418
419 (define-public linux-pam
420 (package
421 (name "linux-pam")
422 (version "1.3.0")
423 (source
424 (origin
425 (method url-fetch)
426 (uri (string-append
427 "http://www.linux-pam.org/library/"
428 "Linux-PAM-" version ".tar.bz2"))
429 (sha256
430 (base32
431 "1fyi04d5nsh8ivd0rn2y0z83ylgc0licz7kifbb6xxi2ylgfs6i4"))
432 (patches (search-patches "linux-pam-no-setfsuid.patch"))))
433
434 (build-system gnu-build-system)
435 (native-inputs
436 `(("flex" ,flex)
437
438 ;; TODO: optional dependencies
439 ;; ("libxcrypt" ,libxcrypt)
440 ;; ("cracklib" ,cracklib)
441 ))
442 (arguments
443 `(;; Most users, such as `shadow', expect the headers to be under
444 ;; `security'.
445 #:configure-flags (list (string-append "--includedir="
446 (assoc-ref %outputs "out")
447 "/include/security")
448
449 ;; XXX: <rpc/rpc.h> is missing from glibc when
450 ;; cross-compiling, so we have to disable NIS
451 ;; support altogether.
452 ,@(if (%current-target-system)
453 '("--disable-nis")
454 '()))
455
456 ;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
457 ;; isn't available.
458 #:tests? #f))
459 (home-page "http://www.linux-pam.org/")
460 (synopsis "Pluggable authentication modules for Linux")
461 (description
462 "A *Free* project to implement OSF's RFC 86.0.
463 Pluggable authentication modules are small shared object files that can
464 be used through the PAM API to perform tasks, like authenticating a user
465 at login. Local and dynamic reconfiguration are its key features.")
466 (license license:bsd-3)))
467
468 (define-public linux-pam-1.2
469 (package
470 (inherit linux-pam)
471 (version "1.2.1")
472 (source
473 (origin
474 (method url-fetch)
475 (uri (string-append
476 "http://www.linux-pam.org/library/"
477 "Linux-PAM-" version ".tar.bz2"))
478 (sha256
479 (base32
480 "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl"))
481 (patches (search-patches "linux-pam-no-setfsuid.patch"))))))
482
483
484 ;;;
485 ;;; Miscellaneous.
486 ;;;
487
488 (define-public psmisc
489 (package
490 (name "psmisc")
491 (version "22.21")
492 (source
493 (origin
494 (method url-fetch)
495 (uri (string-append "mirror://sourceforge/psmisc/psmisc/psmisc-"
496 version ".tar.gz"))
497 (sha256
498 (base32
499 "0nhlm1vrrwn4a845p6y4nnnb4liq70n74zbdd5dq844jc6nkqclp"))))
500 (build-system gnu-build-system)
501 (inputs `(("ncurses" ,ncurses)))
502 (home-page "https://gitlab.com/psmisc/psmisc")
503 (synopsis
504 "Small utilities that use the proc file system")
505 (description
506 "This PSmisc package is a set of some small useful utilities that
507 use the proc file system. We're not about changing the world, but
508 providing the system administrator with some help in common tasks.")
509 (license license:gpl2+)))
510
511 (define-public util-linux
512 (package
513 (name "util-linux")
514 (version "2.30")
515 (source (origin
516 (method url-fetch)
517 (uri (string-append "mirror://kernel.org/linux/utils/"
518 name "/v" (version-major+minor version) "/"
519 name "-" version ".tar.xz"))
520 (sha256
521 (base32
522 "13d0ax8bcapga8phj2nclx86w57ddqxbr98ajibpzjq6d7zs8262"))
523 (patches (search-patches "util-linux-tests.patch"))
524 (modules '((guix build utils)))
525 (snippet
526 ;; We take the 'logger' program from GNU Inetutils and 'kill'
527 ;; from GNU Coreutils.
528 '(begin
529 (substitute* "configure"
530 (("build_logger=yes") "build_logger=no")
531 (("build_kill=yes") "build_kill=no"))
532 #t))))
533 (build-system gnu-build-system)
534 (outputs '("out"
535 "static")) ; >2 MiB of static .a libraries
536 (arguments
537 `(#:configure-flags (list "--disable-use-tty-group"
538 "--enable-fs-paths-default=/run/current-system/profile/sbin"
539 ;; Install completions where our
540 ;; bash-completion package expects them.
541 (string-append "--with-bashcompletiondir="
542 (assoc-ref %outputs "out")
543 "/etc/bash_completion.d"))
544 #:phases (modify-phases %standard-phases
545 (add-before
546 'build 'set-umount-file-name
547 (lambda* (#:key outputs #:allow-other-keys)
548 ;; Tell 'eject' the right file name of 'umount'.
549 (let ((out (assoc-ref outputs "out")))
550 (substitute* "sys-utils/eject.c"
551 (("\"/bin/umount\"")
552 (string-append "\"" out "/bin/umount\"")))
553 #t)))
554 (add-before
555 'check 'pre-check
556 (lambda* (#:key inputs outputs #:allow-other-keys)
557 (let ((out (assoc-ref outputs "out"))
558 (net (assoc-ref inputs "net-base")))
559 ;; Change the test to refer to the right file.
560 (substitute* "tests/ts/misc/mcookie"
561 (("/etc/services")
562 (string-append net "/etc/services")))
563 #t)))
564 (add-after
565 'install 'move-static-libraries
566 (lambda* (#:key outputs #:allow-other-keys)
567 (let ((out (assoc-ref outputs "out"))
568 (static (assoc-ref outputs "static")))
569 (mkdir-p (string-append static "/lib"))
570 (with-directory-excursion out
571 (for-each (lambda (file)
572 (rename-file file
573 (string-append static "/"
574 file)))
575 (find-files "lib" "\\.a$")))
576 #t))))))
577 (inputs `(("zlib" ,zlib)
578 ("ncurses" ,ncurses)
579
580 ;; XXX: This is so that the 'pre-check' phase can find it.
581 ,@(if (%current-target-system)
582 `(("net-base" ,net-base))
583 '())))
584 (native-inputs
585 `(("perl" ,perl)
586 ("net-base" ,net-base))) ;for tests
587 (home-page "https://www.kernel.org/pub/linux/utils/util-linux/")
588 (synopsis "Collection of utilities for the Linux kernel")
589 (description "Util-linux is a diverse collection of Linux kernel
590 utilities. It provides dmesg and includes tools for working with file systems,
591 block devices, UUIDs, TTYs, and many other tools.")
592
593 ;; Note that util-linux doesn't use the same license for all the
594 ;; code. GPLv2+ is the default license for a code without an
595 ;; explicitly defined license.
596 (license (list license:gpl3+ license:gpl2+ license:gpl2 license:lgpl2.0+
597 license:bsd-4 license:public-domain))))
598
599 (define-public ddate
600 (package
601 (name "ddate")
602 (version "0.2.2")
603 (source (origin
604 (method url-fetch)
605 (uri (string-append "https://github.com/bo0ts/ddate/archive/v"
606 version ".tar.gz"))
607 (file-name (string-append name "-" version ".tar.gz"))
608 (sha256
609 (base32 "1bbqqq8mswj4bp9083gxjaky5ysfznax4cynsqwmy125z053yg6m"))))
610 (build-system cmake-build-system)
611 (arguments '(#:tests? #f))
612 (home-page "https://github.com/bo0ts/ddate")
613 (synopsis "PERPETUAL DATE CONVERTER FROM GREGORIAN TO POEE CALENDAR")
614 (description
615 "ddate displays the Discordian date and holidays of a given date.
616 The Discordian calendar was made popular by the \"Illuminatus!\" trilogy
617 by Robert Shea and Robert Anton Wilson.")
618 (license license:public-domain)))
619
620 (define-public procps
621 (package
622 (name "procps")
623 (version "3.3.12")
624 (source (origin
625 (method url-fetch)
626 (uri (string-append "mirror://sourceforge/procps-ng/Production/"
627 "procps-ng-" version ".tar.xz"))
628 (sha256
629 (base32
630 "1m57w6jmry84njd5sgk5afycbglql0al80grx027kwqqcfw5mmkf"))))
631 (build-system gnu-build-system)
632 (arguments
633 '(#:modules ((guix build utils)
634 (guix build gnu-build-system)
635 (srfi srfi-1)
636 (srfi srfi-26))
637 #:phases
638 (modify-phases %standard-phases
639 (add-before 'check 'disable-strtod-test
640 (lambda _
641 ;; Disable the 'strtod' test, which fails on 32-bit systems.
642 ;; This is what upstream does:
643 ;; <https://gitlab.com/procps-ng/procps/commit/100afbc1491be388f1429021ff65d969f4b1e08f>.
644 (substitute* "Makefile"
645 (("^(TESTS|check_PROGRAMS) = .*$" all)
646 (string-append "# " all "\n")))
647 #t))
648 (add-after
649 'install 'post-install
650 ;; Remove commands and man pages redudant with
651 ;; Coreutils.
652 (lambda* (#:key outputs #:allow-other-keys)
653 (let* ((out (assoc-ref outputs "out"))
654 (dup (append-map (cut find-files out <>)
655 '("^kill" "^uptime"))))
656 (for-each delete-file dup)
657 #t))))))
658 (inputs `(("ncurses" ,ncurses)))
659 (home-page "https://gitlab.com/procps-ng/procps/")
660 (synopsis "Utilities that give information about processes")
661 (description
662 "Procps is the package that has a bunch of small useful utilities
663 that give information about processes using the Linux /proc file system.
664 The package includes the programs ps, top, vmstat, w, kill, free,
665 slabtop, and skill.")
666 (license license:gpl2)))
667
668 (define-public usbutils
669 (package
670 (name "usbutils")
671 (version "008")
672 (source
673 (origin
674 (method url-fetch)
675 (uri (string-append "mirror://kernel.org/linux/utils/usb/usbutils/"
676 "usbutils-" version ".tar.xz"))
677 (sha256
678 (base32
679 "132clk14j4nm8crln2jymdbbc2vhzar2j2hnxyh05m79pbq1lx24"))))
680 (build-system gnu-build-system)
681 (inputs
682 `(("libusb" ,libusb)
683 ("eudev" ,eudev)))
684 (native-inputs
685 `(("pkg-config" ,pkg-config)))
686 (home-page "http://www.linux-usb.org/")
687 (synopsis
688 "Tools for working with USB devices, such as lsusb")
689 (description
690 "Tools for working with USB devices, such as lsusb.")
691 (license license:gpl2+)))
692
693 (define-public e2fsprogs
694 (package
695 (name "e2fsprogs")
696 (version "1.43.5")
697 (source (origin
698 (method url-fetch)
699 (uri (string-append
700 "mirror://kernel.org/linux/kernel/people/tytso/"
701 name "/v" version "/"
702 name "-" version ".tar.xz"))
703 (patches (search-patches "e2fsprogs-32bit-quota-warnings.patch"))
704 (sha256
705 (base32
706 "05ssjpmy0fpv2ik6ibm1f47wr6794nf0q50r581vygrqvsd3s7r6"))))
707 (build-system gnu-build-system)
708 (inputs `(("util-linux" ,util-linux)))
709 (native-inputs `(("pkg-config" ,pkg-config)
710 ("texinfo" ,texinfo) ;for the libext2fs Info manual
711
712 ;; For tests.
713 ("perl" ,perl)
714 ("procps" ,procps)))
715 (arguments
716 '(;; util-linux is the preferred source for some of the libraries and
717 ;; commands, so disable them (see, e.g.,
718 ;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b33633>.)
719 #:configure-flags (list "--disable-libblkid"
720 "--disable-libuuid" "--disable-uuidd"
721 "--disable-fsck"
722
723 ;; Use symlinks instead of hard links for
724 ;; 'fsck.extN' etc. This makes the resulting nar
725 ;; smaller and is preserved across copies.
726 "--enable-symlink-install"
727
728 (string-append "LDFLAGS=-Wl,-rpath="
729 (assoc-ref %outputs "out")
730 "/lib")
731
732 ;; Install libext2fs et al.
733 "--enable-elf-shlibs")
734
735 #:phases
736 (modify-phases %standard-phases
737 (add-before 'configure 'patch-shells
738 (lambda _
739 (substitute* "configure"
740 (("/bin/sh (.*)parse-types.sh" _ dir)
741 (string-append (which "sh") " " dir
742 "parse-types.sh")))
743 (substitute* "MCONFIG.in"
744 (("INSTALL_SYMLINK = /bin/sh")
745 "INSTALL_SYMLINK = sh"))
746 (substitute* (find-files "." "^Makefile.in$")
747 (("#!/bin/sh")
748 (string-append "#!" (which "sh"))))
749 #t))
750 (add-after 'install 'install-libs
751 (lambda* (#:key outputs #:allow-other-keys)
752 (let* ((out (assoc-ref outputs "out"))
753 (lib (string-append out "/lib")))
754 (and (zero? (system* "make" "install-libs"))
755
756 ;; Make the .a writable so that 'strip' works.
757 ;; Failing to do that, due to debug symbols, we
758 ;; retain a reference to the final
759 ;; linux-libre-headers, which refer to the
760 ;; bootstrap binaries.
761 (let ((archives (find-files lib "\\.a$")))
762 (for-each (lambda (file)
763 (chmod file #o666))
764 archives)
765 #t))))))))
766 (home-page "http://e2fsprogs.sourceforge.net/")
767 (synopsis "Creating and checking ext2/ext3/ext4 file systems")
768 (description
769 "This package provides tools for manipulating ext2/ext3/ext4 file systems.")
770 (license (list license:gpl2 ;programs
771 license:lgpl2.0 ;libext2fs
772 license:x11)))) ;libuuid
773
774 (define e2fsprogs/static
775 (static-package
776 (package (inherit e2fsprogs)
777 (arguments
778 ;; Do not build shared libraries.
779 (substitute-keyword-arguments (package-arguments e2fsprogs)
780 ((#:configure-flags _)
781 '(list "--disable-blkid"))
782 ((#:make-flags _)
783 '(list)))))))
784
785 (define-public e2fsck/static
786 (package
787 (name "e2fsck-static")
788 (version (package-version e2fsprogs))
789 (build-system trivial-build-system)
790 (source #f)
791 (inputs
792 `(("e2fsprogs" ,e2fsprogs/static)))
793 (arguments
794 `(#:modules ((guix build utils))
795 #:builder
796 (begin
797 (use-modules (guix build utils)
798 (ice-9 ftw)
799 (srfi srfi-26))
800
801 (let ((e2fsck (string-append (assoc-ref %build-inputs "e2fsprogs")
802 "/sbin/e2fsck"))
803 (bin (string-append (assoc-ref %outputs "out") "/sbin")))
804 (mkdir-p bin)
805 (with-directory-excursion bin
806 (copy-file e2fsck "e2fsck")
807 (remove-store-references "e2fsck")
808 (chmod "e2fsck" #o555))))))
809 (home-page (package-home-page e2fsprogs))
810 (synopsis "Statically-linked e2fsck command from e2fsprogs")
811 (description "This package provides statically-linked e2fsck command taken
812 from the e2fsprogs package. It is meant to be used in initrds.")
813 (license (package-license e2fsprogs))))
814
815 (define-public extundelete
816 (package
817 (name "extundelete")
818 (version "0.2.4")
819 (source (origin
820 (method url-fetch)
821 (uri (string-append "mirror://sourceforge/extundelete/"
822 "extundelete/" version "/extundelete-"
823 version ".tar.bz2"))
824 (sha256
825 (base32
826 "1x0r7ylxlp9lbj3d7sqf6j2a222dwy2nfpff05jd6mkh4ihxvyd1"))))
827 (build-system gnu-build-system)
828 (inputs `(("e2fsprogs" ,e2fsprogs)))
829 (home-page "http://extundelete.sourceforge.net/")
830 (synopsis "Recover deleted files from ext2/3/4 partitions")
831 (description
832 "Extundelete is a set of tools that can recover deleted files from an
833 ext3 or ext4 partition.")
834 (license license:gpl2)))
835
836 (define-public zerofree
837 (package
838 (name "zerofree")
839 (version "1.1.0")
840 (home-page "https://frippery.org/uml/")
841 (source (origin
842 (method url-fetch)
843 (uri (string-append home-page name "-" version
844 ".tgz"))
845 (sha256
846 (base32
847 "059g29x5r1xj6wcj4xj85l8w6qrxyl86yqbybjqqz6nxz4falxzf"))))
848 (build-system gnu-build-system)
849 (arguments
850 '(#:phases
851 (modify-phases %standard-phases
852 (delete 'configure) ; no configure script
853 (replace 'install
854 ;; The Makefile lacks an ‘install’ target.
855 (lambda* (#:key outputs #:allow-other-keys)
856 (let* ((out (assoc-ref outputs "out"))
857 (bin (string-append out "/bin")))
858 (chmod "zerofree" #o555)
859 (install-file "zerofree" bin)
860 #t))))
861 #:tests? #f)) ; no tests
862 (inputs `(("libext2fs" ,e2fsprogs)))
863 (synopsis "Zero non-allocated regions in ext2/ext3/ext4 file systems")
864 (description
865 "Zerofree finds the unallocated blocks with non-zero value content in an
866 ext2, ext3, or ext4 file system and fills them with zeroes (or another value).
867 This is a simple way to make disk images more compressible.
868 Zerofree requires the file system to be unmounted or mounted read-only.")
869 (license license:gpl2)))
870
871 (define-public strace
872 (package
873 (name "strace")
874 (version "4.19")
875 (source (origin
876 (method url-fetch)
877 (uri (string-append "mirror://sourceforge/strace/strace/" version
878 "/strace-" version ".tar.xz"))
879 (sha256
880 (base32
881 "10bjh2mrkvx41fk60b2iqv5b5k4r7a3qdsx04iyg904jqb3fp4vw"))))
882 (build-system gnu-build-system)
883 (arguments
884 '(#:phases
885 (modify-phases %standard-phases
886 (add-after 'unpack 'patch-/bin/sh
887 (lambda _
888 (substitute* "strace.c"
889 (("/bin/sh") (which "sh")))
890 #t)))))
891 (native-inputs `(("perl" ,perl)))
892 (home-page "https://strace.io/")
893 (synopsis "System call tracer for Linux")
894 (description
895 "strace is a system call tracer, i.e. a debugging tool which prints out a
896 trace of all the system calls made by a another process/program.")
897 (license license:bsd-3)))
898
899 (define-public ltrace
900 (package
901 (name "ltrace")
902 (version "0.7.3")
903 (source (origin
904 (method url-fetch)
905 (uri (string-append "http://www.ltrace.org/ltrace_" version
906 ".orig.tar.bz2"))
907 (sha256
908 (base32
909 "00wmbdghqbz6x95m1mcdd3wd46l6hgcr4wggdp049dbifh3qqvqf"))))
910 (build-system gnu-build-system)
911 (inputs `(("libelf" ,libelf)))
912 (arguments
913 ;; Compilation uses -Werror by default, but it fails.
914 '(#:configure-flags '("--disable-werror")))
915 (home-page "http://www.ltrace.org/")
916 (synopsis "Library call tracer for Linux")
917 (description
918 "ltrace intercepts and records dynamic library calls which are called by
919 an executed process and the signals received by that process. It can also
920 intercept and print the system calls executed by the program.")
921 (license license:gpl2+)))
922
923 (define-public alsa-lib
924 (package
925 (name "alsa-lib")
926 (version "1.1.4.1")
927 (source (origin
928 (method url-fetch)
929 (uri (string-append
930 "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-"
931 version ".tar.bz2"))
932 (sha256
933 (base32
934 "0xjvi381105gldhv0z872a0x58sghznyx19j45lw5iyi2h68gfwi"))))
935 (build-system gnu-build-system)
936 (home-page "https://www.alsa-project.org/")
937 (synopsis "The Advanced Linux Sound Architecture libraries")
938 (description
939 "The Advanced Linux Sound Architecture (ALSA) provides audio and
940 MIDI functionality to the Linux-based operating system.")
941 (license license:lgpl2.1+)))
942
943 (define-public alsa-utils
944 (package
945 (name "alsa-utils")
946 (version "1.1.4")
947 (source (origin
948 (method url-fetch)
949 (uri (string-append "ftp://ftp.alsa-project.org/pub/utils/"
950 name "-" version ".tar.bz2"))
951 (sha256
952 (base32
953 "17cxih9ibjp1193dyd79j50pyfa9dvrs6r9kpwrvzicjvr2110x7"))))
954 (build-system gnu-build-system)
955 (arguments
956 ;; XXX: Disable man page creation until we have DocBook.
957 '(#:configure-flags (list "--disable-xmlto"
958
959 ;; The udev rule is responsible for restoring
960 ;; the volume.
961 (string-append "--with-udev-rules-dir="
962 (assoc-ref %outputs "out")
963 "/lib/udev/rules.d"))
964 #:phases
965 (modify-phases %standard-phases
966 (add-before
967 'install 'pre-install
968 (lambda _
969 ;; Don't try to mkdir /var/lib/alsa.
970 (substitute* "Makefile"
971 (("\\$\\(MKDIR_P\\) .*ASOUND_STATE_DIR.*")
972 "true\n"))
973 #t)))))
974 (inputs
975 `(("libsamplerate" ,libsamplerate)
976 ("ncurses" ,ncurses)
977 ("alsa-lib" ,alsa-lib)
978 ("xmlto" ,xmlto)
979 ("gettext" ,gettext-minimal)))
980 (home-page "http://www.alsa-project.org/")
981 (synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)")
982 (description
983 "The Advanced Linux Sound Architecture (ALSA) provides audio and
984 MIDI functionality to the Linux-based operating system.")
985
986 ;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are
987 ;; GPLv2-only.
988 (license license:gpl2)))
989
990 (define-public alsa-plugins
991 (package
992 (name "alsa-plugins")
993 (version "1.1.4")
994 (source (origin
995 (method url-fetch)
996 (uri (string-append "ftp://ftp.alsa-project.org/pub/plugins/"
997 name "-" version ".tar.bz2"))
998 (sha256
999 (base32
1000 "12hsvm6rpinjkg06pa9hzndkdrbfw6wk6yk00cm8y1gbv8xiq3ak"))))
1001 (build-system gnu-build-system)
1002 ;; TODO: Split libavcodec and speex if possible. It looks like they can not
1003 ;; be split, there are references to both in files.
1004 ;; TODO: Remove OSS related plugins, they add support to run native
1005 ;; ALSA applications on OSS however we do not offer OSS and OSS is
1006 ;; obsolete.
1007 (outputs '("out" "pulseaudio"))
1008 (arguments
1009 `(#:phases
1010 (modify-phases %standard-phases
1011 (add-after 'install 'split
1012 (lambda* (#:key inputs outputs #:allow-other-keys)
1013 ;; Distribute the binaries to the various outputs.
1014 (let* ((out (assoc-ref outputs "out"))
1015 (pua (assoc-ref outputs "pulseaudio"))
1016 (pualib (string-append pua "/lib/alsa-lib"))
1017 (puaconf (string-append pua "/share/alsa/alsa.conf.d")))
1018 (mkdir-p puaconf)
1019 (mkdir-p pualib)
1020 (chdir (string-append out "/share"))
1021 (for-each (lambda (file)
1022 (rename-file file (string-append puaconf "/" (basename file))))
1023 (find-files out "\\.(conf|example)"))
1024 (for-each (lambda (file)
1025 (rename-file file (string-append pualib "/" (basename file))))
1026 (find-files out ".*pulse\\.(la|so)"))
1027 (chdir "..")
1028 ;; We have moved the files to output pulsaudio, the
1029 ;; directory is now empty.
1030 (delete-file-recursively (string-append out "/share"))
1031 #t))))))
1032 (inputs
1033 `(("alsa-lib" ,alsa-lib)
1034 ("speex" ,speex) ; libspeexdsp resampling plugin
1035 ("libsamplerate" ,libsamplerate) ; libsamplerate resampling plugin
1036 ("ffmpeg" ,ffmpeg) ; libavcodec resampling plugin, a52 plugin
1037 ("pulseaudio" ,pulseaudio))) ; PulseAudio plugin
1038 (native-inputs
1039 `(("pkg-config" ,pkg-config)))
1040 (home-page "http://www.alsa-project.org/")
1041 (synopsis "Plugins for the Advanced Linux Sound Architecture (ALSA)")
1042 (description
1043 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1044 MIDI functionality to the Linux-based operating system. This package enhances ALSA
1045 by providing additional plugins which include: upmixing, downmixing, jackd and
1046 pulseaudio support for native alsa applications, format conversion (s16 to a52), and
1047 external rate conversion.")
1048 (license (list license:gpl2+
1049 ;; `rate/rate_samplerate.c': LGPL v2.1 or later.
1050 license:lgpl2.1+))))
1051
1052 (define-public iptables
1053 (package
1054 (name "iptables")
1055 (version "1.6.1")
1056 (source (origin
1057 (method url-fetch)
1058 (uri (string-append
1059 "mirror://netfilter.org/iptables/iptables-"
1060 version ".tar.bz2"))
1061 (sha256
1062 (base32
1063 "1x8c9y340x79djsq54bc1674ryv59jfphrk4f88i7qbvbnyxghhg"))))
1064 (build-system gnu-build-system)
1065 (native-inputs
1066 `(("pkg-config" ,pkg-config)
1067 ("flex" ,flex)
1068 ("bison" ,bison)))
1069 (inputs
1070 `(("libmnl" ,libmnl)
1071 ("libnftnl" ,libnftnl)))
1072 (arguments
1073 '(#:tests? #f ; no test suite
1074 #:configure-flags ; add $libdir to the RUNPATH of executables
1075 (list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))))
1076 (home-page "https://www.netfilter.org/projects/iptables/index.html")
1077 (synopsis "Program to configure the Linux IP packet filtering rules")
1078 (description
1079 "iptables is the userspace command line program used to configure the
1080 Linux 2.4.x and later IPv4 packet filtering ruleset (firewall). It is targeted at
1081 system administrators. Since Network Address Translation is also configured
1082 from the packet filter ruleset, iptables is used for this, too. The iptables
1083 package also includes ip6tables. ip6tables is used for configuring the IPv6
1084 packet filter.")
1085 (license license:gpl2+)))
1086
1087 (define-public ebtables
1088 (package
1089 (name "ebtables")
1090 (version "2.0.10-4")
1091 (source (origin
1092 (method url-fetch)
1093 (uri (string-append
1094 "mirror://netfilter.org/ebtables/ebtables-v"
1095 version ".tar.gz"))
1096 (sha256
1097 (base32
1098 "0pa5ljlk970yfyhpf3iqwfpbc30j8mgn90fapw9cfz909x47nvyw"))))
1099 (build-system gnu-build-system)
1100 (arguments
1101 '(#:tests? #f ; no test suite
1102 #:make-flags
1103 (let* ((out (assoc-ref %outputs "out"))
1104 (bin (string-append out "/sbin"))
1105 (lib (string-append out "/lib"))
1106 (man (string-append out "/share/man"))
1107 (iptables (assoc-ref %build-inputs "iptables"))
1108 (ethertypes (string-append iptables "/etc/ethertypes")))
1109 (list (string-append "LIBDIR=" lib)
1110 (string-append "MANDIR=" man)
1111 (string-append "BINDIR=" bin)
1112 (string-append "ETHERTYPESFILE=" ethertypes)
1113 ;; With the default CFLAGS, it falis with:
1114 ;; communication.c:259:58: error: variable ‘ret’ set but not
1115 ;; used [-Werror=unused-but-set-variable]
1116 "CFLAGS=-Wall"))
1117 #:phases
1118 (modify-phases %standard-phases
1119 (replace 'configure
1120 ;; no configure script
1121 (lambda _
1122 (substitute* "Makefile"
1123 ;; Remove user and group options from install commands,
1124 ;; otherwise it fails with: invalid user 'root'.
1125 (("-o root -g root") "")
1126 ;; Remove 'ethertypes' from the install target.
1127 (("install: .*")
1128 "install: $(MANDIR)/man8/ebtables.8 exec scripts\n"))
1129 #t)))))
1130 (inputs
1131 `(("perl" ,perl)
1132 ("iptables" ,iptables)))
1133 (synopsis "Ethernet bridge frame table administration")
1134 (home-page "http://ebtables.netfilter.org/")
1135 (description
1136 "ebtables is an application program used to set up and maintain the
1137 tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is
1138 analogous to the iptables application, but less complicated, due to the fact
1139 that the Ethernet protocol is much simpler than the IP protocol.")
1140 (license license:gpl2+)))
1141
1142 (define-public iproute
1143 (package
1144 (name "iproute2")
1145 (version "4.13.0")
1146 (source (origin
1147 (method url-fetch)
1148 (uri (string-append
1149 "mirror://kernel.org/linux/utils/net/iproute2/iproute2-"
1150 version ".tar.xz"))
1151 (sha256
1152 (base32
1153 "0l2w84cwr54gaw3cbxijf614l76hx8mgcz57v81rwl68z3nq3yww"))))
1154 (build-system gnu-build-system)
1155 (arguments
1156 `(#:tests? #f ; no test suite
1157 #:make-flags (let ((out (assoc-ref %outputs "out")))
1158 (list "DESTDIR="
1159 (string-append "BASH_COMPDIR=" out
1160 "/etc/bash_completion.d")
1161 (string-append "LIBDIR=" out "/lib")
1162 (string-append "HDRDIR=" out "/include")
1163 (string-append "SBINDIR=" out "/sbin")
1164 (string-append "CONFDIR=" out "/etc")
1165 (string-append "DOCDIR=" out "/share/doc/"
1166 ,name "-" ,version)
1167 (string-append "MANDIR=" out "/share/man")))
1168 #:phases (modify-phases %standard-phases
1169 (add-before 'install 'pre-install
1170 (lambda _
1171 ;; Don't attempt to create /var/lib/arpd.
1172 (substitute* "Makefile"
1173 (("^.*ARPDDIR.*$") "")))))))
1174 (inputs
1175 `(("iptables" ,iptables)
1176 ("db4" ,bdb)))
1177 (native-inputs
1178 `(("pkg-config" ,pkg-config)
1179 ("flex" ,flex)
1180 ("bison" ,bison)))
1181 (home-page
1182 "https://wiki.linuxfoundation.org/networking/iproute2")
1183 (synopsis
1184 "Utilities for controlling TCP/IP networking and traffic in Linux")
1185 (description
1186 "Iproute2 is a collection of utilities for controlling TCP/IP networking
1187 and traffic with the Linux kernel. The most important of these are
1188 @command{ip}, which configures IPv4 and IPv6, and @command{tc} for traffic
1189 control.
1190
1191 Most network configuration manuals still refer to ifconfig and route as the
1192 primary network configuration tools, but ifconfig is known to behave
1193 inadequately in modern network environments, and both should be deprecated.")
1194 (license license:gpl2+)))
1195
1196 ;; There are two packages for net-tools. The first, net-tools, is more recent
1197 ;; and probably safer to use with untrusted inputs (i.e. the internet). The
1198 ;; second, net-tools-for-tests, is relatively old and buggy. It can be used in
1199 ;; package test suites and should never be referred to by a built package. Use
1200 ;; #:disallowed-references to enforce this.
1201 ;;
1202 ;; When we are able to rebuild many packages (i.e. core-updates), we can update
1203 ;; net-tools-for-tests if appropriate.
1204 ;;
1205 ;; See <https://bugs.gnu.org/27811> for more information.
1206 (define-public net-tools
1207 ;; XXX: This package is basically unmaintained, but it provides a few
1208 ;; commands not yet provided by Inetutils, such as 'route', so we have to
1209 ;; live with it.
1210 (let ((commit "479bb4a7e11a4084e2935c0a576388f92469225b")
1211 (revision "0"))
1212 (package
1213 (name "net-tools")
1214 (version (string-append "1.60-" revision "." (string-take commit 7)))
1215 (source (origin
1216 (method url-fetch)
1217 (uri (string-append "https://sourceforge.net/code-snapshots/git/"
1218 "n/ne/net-tools/code.git/net-tools-code-"
1219 commit ".zip"))
1220 (file-name (string-append name "-" version ".zip"))
1221 (sha256
1222 (base32
1223 "0hz9fda9d78spp774b6rr5xaxav7cm4h0qcpxf70rvdbrf6qx7vy"))))
1224 (home-page "http://net-tools.sourceforge.net/")
1225 (build-system gnu-build-system)
1226 (arguments
1227 '(#:modules ((guix build gnu-build-system)
1228 (guix build utils)
1229 (srfi srfi-1)
1230 (srfi srfi-26))
1231 #:phases
1232 (modify-phases %standard-phases
1233 (replace 'configure
1234 (lambda* (#:key outputs #:allow-other-keys)
1235 (let ((out (assoc-ref outputs "out")))
1236 (mkdir-p (string-append out "/bin"))
1237 (mkdir-p (string-append out "/sbin"))
1238
1239 ;; Pretend we have everything...
1240 (system "yes | make config")
1241
1242 ;; ... except for the things we don't have.
1243 ;; HAVE_AFDECnet requires libdnet, which we don't have.
1244 ;; HAVE_HWSTRIP and HAVE_HWTR require kernel headers
1245 ;; that have been removed.
1246 ;; XXX SELINUX and AFBLUETOOTH are removed for now, but we should
1247 ;; think about adding them later.
1248 (substitute* '("config.make" "config.h")
1249 (("^.*HAVE_(AFDECnet|HWSTRIP|HWTR|SELINUX|AFBLUETOOTH)[ =]1.*$")
1250 "")))))
1251 (add-after 'install 'remove-redundant-commands
1252 (lambda* (#:key outputs #:allow-other-keys)
1253 ;; Remove commands and man pages redundant with Inetutils.
1254 (let* ((out (assoc-ref outputs "out"))
1255 (dup (append-map (cut find-files out <>)
1256 '("^hostname"
1257 "^(yp|nis|dns)?domainname"))))
1258 (for-each delete-file dup)
1259 #t))))
1260 ;; Binaries that depend on libnet-tools.a don't declare that
1261 ;; dependency, making it parallel-unsafe.
1262 #:parallel-build? #f
1263
1264 #:tests? #f ; no test suite
1265 #:make-flags (let ((out (assoc-ref %outputs "out")))
1266 (list "CC=gcc"
1267 (string-append "BASEDIR=" out)
1268 (string-append "INSTALLNLSDIR=" out "/share/locale")
1269 (string-append "mandir=/share/man")))))
1270 (native-inputs `(("gettext" ,gettext-minimal)
1271 ("unzip" ,unzip)))
1272 (synopsis "Tools for controlling the network subsystem in Linux")
1273 (description
1274 "This package includes the important tools for controlling the network
1275 subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and
1276 route. Additionally, this package contains utilities relating to particular
1277 network hardware types (plipconfig, slattach) and advanced aspects of IP
1278 configuration (iptunnel, ipmaddr).")
1279 (license license:gpl2+))))
1280
1281 (define-public net-tools-for-tests
1282 (hidden-package (package (inherit net-tools)
1283 (version "1.60")
1284 ;; Git depends on net-tools-for-tests via GnuTLS, so we can't use git-fetch
1285 ;; here. We should find a better workaround for this problem so that we can
1286 ;; use the latest upstream source.
1287 (source (origin
1288 (method url-fetch)
1289 (uri (list (string-append
1290 "mirror://sourceforge/net-tools/net-tools-"
1291 version ".tar.bz2")
1292 (string-append
1293 "http://distro.ibiblio.org/rootlinux/rootlinux-ports"
1294 "/base/net-tools/net-tools-1.60.tar.bz2")))
1295 (sha256
1296 (base32
1297 "0yvxrzk0mzmspr7sa34hm1anw6sif39gyn85w4c5ywfn8inxvr3s"))
1298 (patches (search-patches "net-tools-bitrot.patch"))))
1299 (build-system gnu-build-system)
1300 (arguments
1301 '(#:modules ((guix build gnu-build-system)
1302 (guix build utils)
1303 (srfi srfi-1)
1304 (srfi srfi-26))
1305 #:phases (alist-cons-after
1306 'unpack 'patch
1307 (lambda* (#:key inputs #:allow-other-keys)
1308 (define (apply-patch file)
1309 (zero? (system* "patch" "-p1" "--force"
1310 "--input" file)))
1311
1312 (let ((patch.gz (assoc-ref inputs "patch")))
1313 (format #t "applying Debian patch set '~a'...~%"
1314 patch.gz)
1315 (system (string-append "gunzip < " patch.gz " > the-patch"))
1316 (and (apply-patch "the-patch")
1317 (for-each apply-patch
1318 (find-files "debian/patches"
1319 "\\.patch")))))
1320 (alist-replace
1321 'configure
1322 (lambda* (#:key outputs #:allow-other-keys)
1323 (let ((out (assoc-ref outputs "out")))
1324 (mkdir-p (string-append out "/bin"))
1325 (mkdir-p (string-append out "/sbin"))
1326
1327 ;; Pretend we have everything...
1328 (system "yes | make config")
1329
1330 ;; ... except for the things we don't have.
1331 ;; HAVE_AFDECnet requires libdnet, which we don't have.
1332 ;; HAVE_HWSTRIP and HAVE_HWTR require kernel headers
1333 ;; that have been removed.
1334 (substitute* '("config.make" "config.h")
1335 (("^.*HAVE_(AFDECnet|HWSTRIP|HWTR)[ =]1.*$") ""))))
1336 (alist-cons-after
1337 'install 'remove-redundant-commands
1338 (lambda* (#:key outputs #:allow-other-keys)
1339 ;; Remove commands and man pages redundant with
1340 ;; Inetutils.
1341 (let* ((out (assoc-ref outputs "out"))
1342 (dup (append-map (cut find-files out <>)
1343 '("^hostname"
1344 "^(yp|nis|dns)?domainname"))))
1345 (for-each delete-file dup)
1346 #t))
1347 %standard-phases)))
1348
1349 ;; Binaries that depend on libnet-tools.a don't declare that
1350 ;; dependency, making it parallel-unsafe.
1351 #:parallel-build? #f
1352
1353 #:tests? #f ; no test suite
1354 #:make-flags (let ((out (assoc-ref %outputs "out")))
1355 (list "CC=gcc"
1356 (string-append "BASEDIR=" out)
1357 (string-append "INSTALLNLSDIR=" out "/share/locale")
1358 (string-append "mandir=/share/man")))))
1359
1360 ;; We added unzip to the net-tools package's native-inputs when
1361 ;; switching its source from a Git checkout to a zip archive. We
1362 ;; need to specify the native-inputs here to keep unzip out of the
1363 ;; build of net-tools-for-tests, so that we don't have to rebuild
1364 ;; many packages on the master branch. We can make
1365 ;; net-tools-for-tests inherit directly from net-tools in the next
1366 ;; core-updates cycle.
1367 (native-inputs `(("gettext" ,gettext-minimal)))
1368
1369 ;; Use the big Debian patch set (the thing does not even compile out of
1370 ;; the box.)
1371 ;; XXX The patch is not actually applied, due to a bug in the 'patch' phase
1372 ;; above. However, this package variant is only used in GnuTLS's tests. It
1373 ;; will be adjusted when convenient for the build farm.
1374 ;; See <https://bugs.gnu.org/27811> for more information.
1375 (inputs `(("patch" ,(origin
1376 (method url-fetch)
1377 (uri
1378 "http://ftp.de.debian.org/debian/pool/main/n/net-tools/net-tools_1.60-24.2.diff.gz")
1379 (sha256
1380 (base32
1381 "0p93lsqx23v5fv4hpbrydmfvw1ha2rgqpn2zqbs2jhxkzhjc030p")))))))))
1382
1383 (define-public libcap
1384 (package
1385 (name "libcap")
1386 (version "2.25")
1387 (source (origin
1388 (method url-fetch)
1389 (uri (string-append
1390 "mirror://kernel.org/linux/libs/security/linux-privs/"
1391 "libcap2/libcap-" version ".tar.xz"))
1392 (sha256
1393 (base32
1394 "0qjiqc5pknaal57453nxcbz3mn1r4hkyywam41wfcglq3v2qlg39"))))
1395 (build-system gnu-build-system)
1396 (arguments '(#:phases
1397 (modify-phases %standard-phases
1398 (replace 'configure
1399 ;; Add $libdir to the RUNPATH of executables.
1400 (lambda _
1401 (substitute* "Make.Rules"
1402 (("LDFLAGS := #-g")
1403 (string-append "LDFLAGS := -Wl,-rpath="
1404 %output "/lib"))))))
1405 #:tests? #f ; no 'check' target
1406 #:make-flags (list "lib=lib"
1407 (string-append "prefix="
1408 (assoc-ref %outputs "out"))
1409 "RAISE_SETFCAP=no")))
1410 (native-inputs `(("perl" ,perl)))
1411 (inputs `(("attr" ,attr)))
1412 (home-page "https://sites.google.com/site/fullycapable/")
1413 (synopsis "Library for working with POSIX capabilities")
1414 (description
1415 "Libcap2 provides a programming interface to POSIX capabilities on
1416 Linux-based operating systems.")
1417
1418 ;; License is BSD-3 or GPLv2, at the user's choice.
1419 (license license:gpl2)))
1420
1421 (define-public bridge-utils
1422 (package
1423 (name "bridge-utils")
1424 (version "1.5")
1425 (source (origin
1426 (method url-fetch)
1427 (uri (string-append "mirror://sourceforge/bridge/bridge/"
1428 "bridge-utils-" version ".tar.gz"))
1429 (sha256
1430 (base32
1431 "12367cwqmi0yqphi6j8rkx97q8hw52yq2fx4k0xfclkcizxybya2"))))
1432 (build-system gnu-build-system)
1433
1434 ;; The tarball lacks all the generated files.
1435 (native-inputs `(("autoconf" ,autoconf)
1436 ("automake" ,automake)))
1437 (arguments
1438 '(#:phases (alist-cons-after
1439 'unpack 'bootstrap
1440 (lambda _
1441 ;; Fix "field ‘ip6’ has incomplete type" errors.
1442 (substitute* "libbridge/libbridge.h"
1443 (("#include <linux/if_bridge.h>")
1444 "#include <linux/in6.h>\n#include <linux/if_bridge.h>"))
1445
1446 ;; Ensure that the entire build fails if one of the
1447 ;; sub-Makefiles fails.
1448 (substitute* "Makefile.in"
1449 (("\\$\\(MAKE\\) \\$\\(MFLAGS\\) -C \\$\\$x ;")
1450 "$(MAKE) $(MFLAGS) -C $$x || exit 1;"))
1451
1452 (zero? (system* "autoreconf" "-vf")))
1453 %standard-phases)
1454 #:tests? #f)) ; no 'check' target
1455
1456 (home-page
1457 "http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge")
1458 (synopsis "Manipulate Ethernet bridges")
1459 (description
1460 "Utilities for Linux's Ethernet bridging facilities. A bridge is a way
1461 to connect two Ethernet segments together in a protocol independent way.
1462 Packets are forwarded based on Ethernet address, rather than IP address (like
1463 a router). Since forwarding is done at Layer 2, all protocols can go
1464 transparently through a bridge.")
1465 (license license:gpl2+)))
1466
1467 (define-public libnl
1468 (package
1469 (name "libnl")
1470 (version "3.3.0")
1471 (source (origin
1472 (method url-fetch)
1473 (uri (string-append
1474 "https://github.com/thom311/libnl/releases/download/"
1475 "libnl" (string-join (string-split version #\.) "_")
1476 "/libnl-" version ".tar.gz"))
1477 (sha256
1478 (base32
1479 "1r3lw3hjvqxi5zqyq2w1qadm3gisd9nlf71dkl4yplacmssnhm3h"))))
1480 (build-system gnu-build-system)
1481 (native-inputs
1482 `(("bison" ,bison)
1483 ("flex" ,flex)
1484 ("pkg-config" ,pkg-config)
1485 ("swig" ,swig)
1486 ("libnl3-doc"
1487 ,(origin
1488 (method url-fetch)
1489 (uri (string-append
1490 "https://github.com/thom311/libnl/releases/download/libnl"
1491 (string-join (string-split version #\.) "_")
1492 "/libnl-doc-" version ".tar.gz"))
1493 (sha256
1494 (base32 "0srab805yj8wb13l64qjyp3mdbqapxg5vk46v3zlhhzpmxqw8j7r"))))))
1495 (inputs
1496 `(("python-2" ,python-2)
1497 ("python-3" ,python-3)))
1498 (outputs '("out" "doc" "python2" "python3"))
1499 (arguments
1500 `(#:modules ((guix build gnu-build-system)
1501 (guix build utils)
1502 (srfi srfi-1))
1503 #:phases
1504 (modify-phases %standard-phases
1505 (add-after 'install 'install-python
1506 (lambda* (#:key outputs #:allow-other-keys)
1507 (define (python-inst python)
1508 (let ((ldflags (format #f "LDFLAGS=-Wl,-rpath=~a/lib"
1509 (assoc-ref %outputs "out")))
1510 (pyout (assoc-ref %outputs python)))
1511 (and
1512 (zero? (system (format #f "~a ~a setup.py build"
1513 ldflags python pyout)))
1514 (zero?
1515 (system (format #f "~a ~a setup.py install --prefix=~a"
1516 ldflags python pyout)))
1517 (zero? (system* python "setup.py" "clean")))))
1518 (with-directory-excursion "./python"
1519 (every python-inst '("python2" "python3")))))
1520 (add-after 'install 'install-doc
1521 (lambda* (#:key inputs outputs #:allow-other-keys)
1522 (let ((dest (string-append (assoc-ref outputs "doc")
1523 "/share/doc/libnl")))
1524 (mkdir-p dest)
1525 (zero? (system* "tar" "xf" (assoc-ref inputs "libnl3-doc")
1526 "--strip-components=1" "-C" dest))))))))
1527 (home-page "http://www.infradead.org/~tgr/libnl/")
1528 (synopsis "NetLink protocol library suite")
1529 (description
1530 "The libnl suite is a collection of libraries providing APIs to netlink
1531 protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily
1532 between the kernel and user space processes. It was designed to be a more
1533 flexible successor to ioctl to provide mainly networking related kernel
1534 configuration and monitoring interfaces.")
1535
1536 ;; Most files are LGPLv2.1-only, but some are GPLv2-only (like
1537 ;; 'nl-addr-add.c'), so the result is GPLv2-only.
1538 (license license:gpl2)))
1539
1540 (define-public iw
1541 (package
1542 (name "iw")
1543 (version "4.9")
1544 (source (origin
1545 (method url-fetch)
1546 (uri (string-append
1547 "mirror://kernel.org/software/network/iw/iw-"
1548 version ".tar.xz"))
1549 (sha256
1550 (base32
1551 "1klpvv98bnx1zm6aqalnri2vd7w80scmdaxr2qnblb6mz82whk1j"))))
1552 (build-system gnu-build-system)
1553 (native-inputs `(("pkg-config" ,pkg-config)))
1554 (inputs `(("libnl" ,libnl)))
1555 (arguments
1556 `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1557 "CC=gcc")
1558 #:phases (alist-delete 'configure %standard-phases)))
1559 (home-page "https://wireless.wiki.kernel.org/")
1560 (synopsis "Tool for configuring wireless devices")
1561 (description
1562 "iw is a new nl80211 based CLI configuration utility for wireless
1563 devices. It replaces @code{iwconfig}, which is deprecated.")
1564 (license license:isc)))
1565
1566 (define-public powertop
1567 (package
1568 (name "powertop")
1569 (version "2.9")
1570 (source
1571 (origin
1572 (method url-fetch)
1573 (uri (string-append
1574 "https://01.org/sites/default/files/downloads/powertop/powertop-v"
1575 version ".tar.gz"))
1576 (sha256
1577 (base32
1578 "0l4jjlf05li2mc6g8nrss3h435wjhmnqd8m7v3kha3x0x7cbfzxa"))))
1579 (build-system gnu-build-system)
1580 (arguments
1581 '(#:phases
1582 (modify-phases %standard-phases
1583 ;; TODO: Patch some hardcoded "wlan0" in calibrate/calibrate.cpp to
1584 ;; allow calibrating the network interface in GuixSD.
1585 (add-after 'unpack 'patch-absolute-file-names
1586 (lambda* (#:key inputs #:allow-other-keys)
1587 (let ((kmod (assoc-ref inputs "kmod")))
1588 (substitute* (find-files "src" "\\.cpp$")
1589 ;; Give the right 'modprobe' file name so that essential
1590 ;; modules such as msr.ko can be loaded.
1591 (("/sbin/modprobe") (string-append kmod "/bin/modprobe"))
1592 ;; These programs are only needed to calibrate, so using
1593 ;; relative file names avoids adding extra inputs. When they
1594 ;; are missing powertop gracefully handles it.
1595 (("/usr/bin/hcitool") "hcitool")
1596 (("/usr/bin/xset") "xset")
1597 (("/usr/sbin/hciconfig") "hciconfig"))
1598 #t))))))
1599 (inputs
1600 `(("kmod" ,kmod)
1601 ("libnl" ,libnl)
1602 ("ncurses" ,ncurses)
1603 ("pciutils" ,pciutils)
1604 ("zlib" ,zlib)))
1605 (native-inputs
1606 `(("pkg-config" ,pkg-config)))
1607 (home-page "https://01.org/powertop/")
1608 (synopsis "Analyze power consumption on Intel-based laptops")
1609 (description
1610 "PowerTOP is a Linux tool to diagnose issues with power consumption and
1611 power management. In addition to being a diagnostic tool, PowerTOP also has
1612 an interactive mode where the user can experiment various power management
1613 settings for cases where the operating system has not enabled these
1614 settings.")
1615 (license license:gpl2)))
1616
1617 (define-public aumix
1618 (package
1619 (name "aumix")
1620 (version "2.9.1")
1621 (source (origin
1622 (method url-fetch)
1623 (uri (string-append
1624 "http://www.jpj.net/~trevor/aumix/releases/aumix-"
1625 version ".tar.bz2"))
1626 (sha256
1627 (base32
1628 "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj"))))
1629 (build-system gnu-build-system)
1630 (inputs `(("ncurses" ,ncurses)))
1631 (home-page "http://www.jpj.net/~trevor/aumix.html")
1632 (synopsis "Audio mixer for X and the console")
1633 (description
1634 "Aumix adjusts an audio mixer from X, the console, a terminal,
1635 the command line or a script.")
1636 (license license:gpl2+)))
1637
1638 (define-public iotop
1639 (package
1640 (name "iotop")
1641 (version "0.6")
1642 (source
1643 (origin
1644 (method url-fetch)
1645 (uri (string-append "http://guichaz.free.fr/iotop/files/iotop-"
1646 version ".tar.gz"))
1647 (sha256 (base32
1648 "1kp8mqg2pbxq4xzpianypadfxcsyfgwcaqgqia6h9fsq6zyh4z0s"))))
1649 (build-system python-build-system)
1650 (arguments
1651 ;; The setup.py script expects python-2.
1652 `(#:python ,python-2
1653 ;; There are currently no checks in the package.
1654 #:tests? #f))
1655 (native-inputs `(("python" ,python-2)))
1656 (home-page "http://guichaz.free.fr/iotop/")
1657 (synopsis
1658 "Displays the IO activity of running processes")
1659 (description
1660 "Iotop is a Python program with a top like user interface to show the
1661 processes currently causing I/O.")
1662 (license license:gpl2+)))
1663
1664 (define-public fuse
1665 (package
1666 (name "fuse")
1667 (version "2.9.7")
1668 (source (origin
1669 (method url-fetch)
1670 (uri (string-append "https://github.com/libfuse/libfuse/releases/"
1671 "download/fuse-" version
1672 "/fuse-" version ".tar.gz"))
1673 (sha256
1674 (base32
1675 "0x486nri30f7cgy0acj87v9sjxsjrr0cymrvw4h3r0sgmp8k4943"))
1676 (patches (search-patches "fuse-overlapping-headers.patch"))))
1677 (build-system gnu-build-system)
1678 (inputs `(("util-linux" ,util-linux)))
1679 (arguments
1680 '(#:configure-flags (list (string-append "MOUNT_FUSE_PATH="
1681 (assoc-ref %outputs "out")
1682 "/sbin")
1683 (string-append "INIT_D_PATH="
1684 (assoc-ref %outputs "out")
1685 "/etc/init.d")
1686
1687 ;; The rule makes /dev/fuse 666.
1688 (string-append "UDEV_RULES_PATH="
1689 (assoc-ref %outputs "out")
1690 "/lib/udev/rules.d"))
1691 #:phases (alist-cons-before
1692 'build 'set-file-names
1693 (lambda* (#:key inputs #:allow-other-keys)
1694 ;; libfuse calls out to mount(8) and umount(8). Make sure
1695 ;; it refers to the right ones.
1696 (substitute* '("lib/mount_util.c" "util/mount_util.c")
1697 (("/bin/(u?)mount" _ maybe-u)
1698 (string-append (assoc-ref inputs "util-linux")
1699 "/bin/" maybe-u "mount")))
1700 (substitute* '("util/mount.fuse.c")
1701 (("/bin/sh")
1702 (which "sh")))
1703
1704 ;; This hack leads libfuse to search for 'fusermount' in
1705 ;; $PATH, where it may find a setuid-root binary, instead of
1706 ;; trying solely $out/sbin/fusermount and failing because
1707 ;; it's not setuid.
1708 (substitute* "lib/Makefile"
1709 (("-DFUSERMOUNT_DIR=[[:graph:]]+")
1710 "-DFUSERMOUNT_DIR=\\\"/var/empty\\\"")))
1711 %standard-phases)))
1712 (home-page "https://github.com/libfuse/libfuse")
1713 (synopsis "Support file systems implemented in user space")
1714 (description
1715 "As a consequence of its monolithic design, file system code for Linux
1716 normally goes into the kernel itself---which is not only a robustness issue,
1717 but also an impediment to system extensibility. FUSE, for \"file systems in
1718 user space\", is a kernel module and user-space library that tries to address
1719 part of this problem by allowing users to run file system implementations as
1720 user-space processes.")
1721 (license (list license:lgpl2.1 ;library
1722 license:gpl2+)))) ;command-line utilities
1723
1724 (define-public unionfs-fuse
1725 (package
1726 (name "unionfs-fuse")
1727 (version "2.0")
1728 (source (origin
1729 (method url-fetch)
1730 (uri (string-append
1731 "https://github.com/rpodgorny/unionfs-fuse/archive/v"
1732 version ".tar.gz"))
1733 (file-name (string-append name "-" version ".tar.gz"))
1734 (sha256
1735 (base32
1736 "0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
1737 (build-system cmake-build-system)
1738 (native-inputs
1739 `(("python" ,python)
1740 ("python-pytest" ,python-pytest)))
1741 (inputs `(("fuse" ,fuse)))
1742 (arguments
1743 '(#:phases
1744 (modify-phases %standard-phases
1745 (replace 'check
1746 ;; Borrowed from the Makefile
1747 (lambda _ (zero? (system* "python3" "-m" "pytest")))))))
1748 (home-page "https://github.com/rpodgorny/unionfs-fuse")
1749 (synopsis "User-space union file system")
1750 (description
1751 "UnionFS-FUSE is a flexible union file system implementation in user
1752 space, using the FUSE library. Mounting a union file system allows you to
1753 \"aggregate\" the contents of several directories into a single mount point.
1754 UnionFS-FUSE additionally supports copy-on-write.")
1755 (license license:bsd-3)))
1756
1757 (define fuse-static
1758 (package (inherit fuse)
1759 (name "fuse-static")
1760 (source (origin (inherit (package-source fuse))
1761 (modules '((guix build utils)))
1762 (snippet
1763 ;; Normally libfuse invokes mount(8) so that /etc/mtab is
1764 ;; updated. Change calls to 'mtab_needs_update' to 0 so that
1765 ;; it doesn't do that, allowing us to remove the dependency on
1766 ;; util-linux (something that is useful in initrds.)
1767 '(substitute* '("lib/mount_util.c"
1768 "util/mount_util.c")
1769 (("mtab_needs_update[[:blank:]]*\\([a-z_]+\\)")
1770 "0")
1771 (("/bin/")
1772 "")))))))
1773
1774 (define-public unionfs-fuse/static
1775 (package (inherit unionfs-fuse)
1776 (synopsis "User-space union file system (statically linked)")
1777 (name (string-append (package-name unionfs-fuse) "-static"))
1778 (source (origin (inherit (package-source unionfs-fuse))
1779 (modules '((guix build utils)))
1780 (snippet
1781 ;; Add -ldl to the libraries, because libfuse.a needs that.
1782 '(substitute* "src/CMakeLists.txt"
1783 (("target_link_libraries(.*)\\)" _ libs)
1784 (string-append "target_link_libraries"
1785 libs " dl)"))))))
1786 (arguments
1787 '(#:tests? #f
1788 #:configure-flags '("-DCMAKE_EXE_LINKER_FLAGS=-static")
1789 #:phases (alist-cons-after
1790 'install 'post-install
1791 (lambda* (#:key outputs #:allow-other-keys)
1792 (let* ((out (assoc-ref outputs "out"))
1793 (exe (string-append out "/bin/unionfs")))
1794 ;; By default, 'unionfs' keeps references to
1795 ;; $glibc/share/locale and similar stuff. Remove them.
1796 (remove-store-references exe)
1797
1798 ;; 'unionfsctl' has references to glibc as well. Since
1799 ;; we don't need it, remove it.
1800 (delete-file (string-append out "/bin/unionfsctl"))
1801 #t))
1802 %standard-phases)))
1803 (inputs `(("fuse" ,fuse-static)))))
1804
1805 (define-public sshfs-fuse
1806 (package
1807 (name "sshfs-fuse")
1808 (version "2.10")
1809 (source (origin
1810 (method url-fetch)
1811 (uri (string-append "https://github.com/libfuse/sshfs/releases/"
1812 "download/sshfs-" version "/sshfs-" version
1813 ".tar.gz"))
1814 (sha256
1815 (base32
1816 "00fir2iykdx11g8nv5gijg0zjrp2g3ldypnv0yi6lq3h5pg5v13h"))))
1817 (build-system gnu-build-system)
1818 (inputs
1819 `(("fuse" ,fuse)
1820 ("glib" ,glib)))
1821 (native-inputs
1822 `(("pkg-config" ,pkg-config)))
1823 (home-page "https://github.com/libfuse/sshfs")
1824 (synopsis "Mount remote file systems over SSH")
1825 (description
1826 "This is a file system client based on the SSH File Transfer Protocol.
1827 Since most SSH servers already support this protocol it is very easy to set
1828 up: on the server side there's nothing to do; on the client side mounting the
1829 file system is as easy as logging into the server with an SSH client.")
1830 (license license:gpl2+)))
1831
1832 (define-public archivemount
1833 (package
1834 (name "archivemount")
1835 (version "0.8.7")
1836 (source
1837 (origin
1838 (method url-fetch)
1839 (uri (string-append "http://www.cybernoia.de/software/archivemount/"
1840 "archivemount-" version ".tar.gz"))
1841 (sha256
1842 (base32
1843 "1diiw6pnlnrnikn6l5ld92dx59lhrxjlqms8885vwbynsjl5q127"))))
1844 (build-system gnu-build-system)
1845 (inputs `(("fuse", fuse)
1846 ("libarchive", libarchive)))
1847 (native-inputs `(("pkg-config", pkg-config)))
1848 (home-page "http://www.cybernoia.de/software/archivemount")
1849 (synopsis "Tool for mounting archive files with FUSE")
1850 (description "archivemount is a FUSE-based file system for Unix variants,
1851 including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a
1852 mount point where it can be read from or written to as with any other file
1853 system. This makes accessing the contents of the archive, which may be
1854 compressed, transparent to other programs, without decompressing them.")
1855 (license license:lgpl2.0+)))
1856
1857 (define-public numactl
1858 (package
1859 (name "numactl")
1860 (version "2.0.11")
1861 (source (origin
1862 (method url-fetch)
1863 (uri (string-append
1864 "ftp://oss.sgi.com/www/projects/libnuma/download/numactl-"
1865 version
1866 ".tar.gz"))
1867 (sha256
1868 (base32
1869 "0qbqa9gac2vlahrngi553hws2mqgqdwv2lc69a3yx4gq6l90j325"))))
1870 (build-system gnu-build-system)
1871 (arguments
1872 '(;; There's a 'test' target, but it requires NUMA support in the kernel
1873 ;; to run, which we can't assume to have.
1874 #:tests? #f))
1875
1876 ;; NUMA is apparently not supported on armhf, see
1877 ;; http://www.spinics.net/lists/linux-numa/msg01157.html
1878 (supported-systems (delete "armhf-linux" %supported-systems))
1879 (home-page "http://oss.sgi.com/projects/libnuma/")
1880 (synopsis "Tools for non-uniform memory access (NUMA) machines")
1881 (description
1882 "NUMA stands for Non-Uniform Memory Access, in other words a system whose
1883 memory is not all in one place. The numactl program allows you to run your
1884 application program on specific CPU's and memory nodes. It does this by
1885 supplying a NUMA memory policy to the operating system before running your
1886 program.
1887
1888 The package contains other commands, such as numademo, numastat and memhog.
1889 The numademo command provides a quick overview of NUMA performance on your
1890 system.")
1891 (license (list license:gpl2 ;programs
1892 license:lgpl2.1)))) ;library
1893
1894 (define-public kbd-neo
1895 (package
1896 (name "kbd-neo")
1897 (version "2486")
1898 (source
1899 (origin
1900 (method url-fetch)
1901 (uri (string-append "https://svn.neo-layout.org/!svn/bc/"
1902 version "/linux/console/neo.map"))
1903 (file-name (string-append name "-" version ".map"))
1904 (sha256
1905 (base32
1906 "19mfrd31vzpsjiwc7pshxm0b0sz5dd17xrz6k079cy4im1vf0r4g"))))
1907 (build-system trivial-build-system)
1908 (arguments
1909 `(#:modules ((guix build utils))
1910 #:builder (begin
1911 (use-modules (guix build utils))
1912 (let ((out (string-append %output "/share/keymaps"))
1913 (source (assoc-ref %build-inputs "source")))
1914 (mkdir-p out)
1915 (copy-file source (string-append out "/neo.map"))
1916 #t))))
1917 (home-page "https://neo-layout.org")
1918 (synopsis "Neo2 console layout")
1919 (description
1920 "Kbd-neo provides the Neo2 keyboard layout for use with
1921 @command{loadkeys(1)} from @code{kbd(4)}.")
1922 ;; The file is located in an svn directory, the entire content of
1923 ;; the directory is licensed as GPL3.
1924 (license license:gpl3+)))
1925
1926 (define-public kbd
1927 (package
1928 (name "kbd")
1929 (version "2.0.4")
1930 (source (origin
1931 (method url-fetch)
1932 (uri (string-append "mirror://kernel.org/linux/utils/kbd/kbd-"
1933 version ".tar.xz"))
1934 (sha256
1935 (base32
1936 "124swm93dm4ca0pifgkrand3r9gvj3019d4zkfxsj9djpvv0mnaz"))
1937 (modules '((guix build utils)))
1938 (snippet
1939 '(begin
1940 (substitute* "tests/Makefile.in"
1941 ;; The '%: %.in' rule incorrectly uses @VERSION@.
1942 (("@VERSION@")
1943 "[@]VERSION[@]"))
1944 (substitute* '("src/unicode_start" "src/unicode_stop")
1945 ;; Assume the Coreutils are in $PATH.
1946 (("/usr/bin/tty")
1947 "tty"))))))
1948 (build-system gnu-build-system)
1949 (arguments
1950 '(#:phases
1951 (modify-phases %standard-phases
1952 (add-before 'build 'pre-build
1953 (lambda* (#:key inputs #:allow-other-keys)
1954 (let ((gzip (assoc-ref %build-inputs "gzip"))
1955 (bzip2 (assoc-ref %build-inputs "bzip2")))
1956 (substitute* "src/libkeymap/findfile.c"
1957 (("gzip")
1958 (string-append gzip "/bin/gzip"))
1959 (("bzip2")
1960 (string-append bzip2 "/bin/bzip2"))))))
1961 (add-after 'install 'post-install
1962 (lambda* (#:key outputs #:allow-other-keys)
1963 ;; Make sure these programs find their comrades.
1964 (let* ((out (assoc-ref outputs "out"))
1965 (bin (string-append out "/bin")))
1966 (for-each (lambda (prog)
1967 (wrap-program (string-append bin "/" prog)
1968 `("PATH" ":" prefix (,bin))))
1969 '("unicode_start" "unicode_stop"))))))))
1970 (inputs `(("check" ,check)
1971 ("gzip" ,gzip)
1972 ("bzip2" ,bzip2)
1973 ("pam" ,linux-pam)))
1974 (native-search-paths
1975 (list (search-path-specification
1976 (variable "LOADKEYS_KEYMAP_PATH")
1977 ;; Append ‘/**’ to recursively search all directories. One can then
1978 ;; run (for example) ‘loadkeys en-latin9’ instead of having to find
1979 ;; and type ‘i386/colemak/en-latin9’ on a mislabelled keyboard.
1980 (files (list "share/keymaps/**")))))
1981 (native-inputs `(("pkg-config" ,pkg-config)))
1982 (home-page "http://kbd-project.org/")
1983 (synopsis "Linux keyboard utilities and keyboard maps")
1984 (description
1985 "This package contains keytable files and keyboard utilities compatible
1986 for systems using the Linux kernel. This includes commands such as
1987 'loadkeys', 'setfont', 'kbdinfo', and 'chvt'.")
1988 (license license:gpl2+)))
1989
1990 (define-public inotify-tools
1991 (package
1992 (name "inotify-tools")
1993 (version "3.13")
1994 (source (origin
1995 (method url-fetch)
1996 (uri (string-append
1997 "mirror://sourceforge/inotify-tools/inotify-tools/"
1998 version "/inotify-tools-" version ".tar.gz"))
1999 (sha256
2000 (base32
2001 "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6"))))
2002 (build-system gnu-build-system)
2003 (home-page "http://inotify-tools.sourceforge.net/")
2004 (synopsis "Monitor file accesses")
2005 (description
2006 "The inotify-tools packages provides a C library and command-line tools
2007 to use Linux' inotify mechanism, which allows file accesses to be monitored.")
2008 (license license:gpl2+)))
2009
2010 (define-public kmod
2011 (package
2012 (name "kmod")
2013 (version "24")
2014 (source (origin
2015 (method url-fetch)
2016 (uri
2017 (string-append "mirror://kernel.org/linux/utils/kernel/kmod/"
2018 "kmod-" version ".tar.xz"))
2019 (sha256
2020 (base32
2021 "15xkkkzvca9flvkm48gkh8y8f13vlm3sl7nz9ydc7b3jy4fqs2v1"))
2022 (patches (search-patches "kmod-module-directory.patch"))))
2023 (build-system gnu-build-system)
2024 (native-inputs
2025 `(("pkg-config" ,pkg-config)))
2026 (inputs
2027 `(("xz" ,xz)
2028 ("zlib" ,zlib)))
2029 (arguments
2030 `(#:tests? #f ; FIXME: Investigate test failures
2031 #:configure-flags '("--with-xz" "--with-zlib")
2032 #:phases (alist-cons-after
2033 'install 'install-modprobe&co
2034 (lambda* (#:key outputs #:allow-other-keys)
2035 (let* ((out (assoc-ref outputs "out"))
2036 (bin (string-append out "/bin")))
2037 (for-each (lambda (tool)
2038 (symlink "kmod"
2039 (string-append bin "/" tool)))
2040 '("insmod" "rmmod" "lsmod" "modprobe"
2041 "modinfo" "depmod"))))
2042 %standard-phases)))
2043 (home-page "https://www.kernel.org/")
2044 (synopsis "Kernel module tools")
2045 (description "Kmod is a set of tools to handle common tasks with Linux
2046 kernel modules like insert, remove, list, check properties, resolve
2047 dependencies and aliases.
2048
2049 These tools are designed on top of libkmod, a library that is shipped with
2050 kmod. The aim is to be compatible with tools, configurations and indices
2051 from the module-init-tools project.")
2052 (license license:gpl2+))) ; library under lgpl2.1+
2053
2054 (define-public eudev
2055 ;; The post-systemd fork, maintained by Gentoo.
2056 (package
2057 (name "eudev")
2058 (version "3.2.2")
2059 (source (origin
2060 (method url-fetch)
2061 (uri (string-append
2062 "http://dev.gentoo.org/~blueness/eudev/eudev-"
2063 version ".tar.gz"))
2064 (sha256
2065 (base32
2066 "0qqgbgpm5wdllk0s04pf80nwc8pr93xazwri1bylm1f15zn5ck1y"))
2067 (patches (search-patches "eudev-rules-directory.patch"))))
2068 (build-system gnu-build-system)
2069 (arguments
2070 '(#:phases (modify-phases %standard-phases
2071 (add-after 'install 'build-hwdb
2072 (lambda* (#:key outputs #:allow-other-keys)
2073 ;; Build OUT/etc/udev/hwdb.bin. This allows 'lsusb' and
2074 ;; similar tools to display product names.
2075 (let ((out (assoc-ref outputs "out")))
2076 (zero? (system* (string-append out "/bin/udevadm")
2077 "hwdb" "--update"))))))))
2078 (native-inputs
2079 `(("pkg-config" ,pkg-config)
2080 ("perl" ,perl)
2081 ("gperf" ,gperf)))
2082 (inputs
2083 ;; When linked against libblkid, eudev can populate /dev/disk/by-label
2084 ;; and similar; it also installs the '60-persistent-storage.rules' file,
2085 ;; which contains the rules to do that.
2086 `(("util-linux" ,util-linux) ;for blkid
2087 ("kmod" ,kmod)))
2088 (home-page "https://wiki.gentoo.org/wiki/Project:Eudev")
2089 (synopsis "Userspace device management")
2090 (description "Udev is a daemon which dynamically creates and removes
2091 device nodes from /dev/, handles hotplug events and loads drivers at boot
2092 time.")
2093 (license license:gpl2+)))
2094
2095 (define-public eudev-with-hwdb
2096 (deprecated-package "eudev-with-hwdb" eudev))
2097
2098 (define-public lvm2
2099 (package
2100 (name "lvm2")
2101 (version "2.02.174")
2102 (source (origin
2103 (method url-fetch)
2104 (uri (string-append "ftp://sources.redhat.com/pub/lvm2/releases/LVM2."
2105 version ".tgz"))
2106 (sha256
2107 (base32
2108 "12qa2yfxnbjdx7kgxqqaglni50b46l5cp1rwjb24mccc830cwvpv"))
2109 (modules '((guix build utils)))
2110 (snippet
2111 '(begin
2112 (use-modules (guix build utils))
2113
2114 ;; Honor sysconfdir.
2115 (substitute* "make.tmpl.in"
2116 (("confdir = .*$")
2117 "confdir = @sysconfdir@\n")
2118 (("DEFAULT_SYS_DIR = @DEFAULT_SYS_DIR@")
2119 "DEFAULT_SYS_DIR = @sysconfdir@"))))
2120 (patches (search-patches "lvm2-static-link.patch"))))
2121 (build-system gnu-build-system)
2122 (native-inputs
2123 `(("pkg-config" ,pkg-config)
2124 ("procps" ,procps))) ;tests use 'pgrep'
2125 (inputs
2126 `(("udev" ,eudev)))
2127 (arguments
2128 '(#:phases
2129 (modify-phases %standard-phases
2130 (add-after 'configure 'set-makefile-shell
2131 (lambda _
2132 ;; Use 'sh', not 'bash', so that '. lib/utils.sh' works as
2133 ;; expected.
2134 (setenv "SHELL" (which "sh"))
2135
2136 ;; Replace /bin/sh with the right file name.
2137 (patch-makefile-SHELL "make.tmpl")
2138 #t))
2139 (add-before 'strip 'make-objects-writable
2140 (lambda* (#:key outputs #:allow-other-keys)
2141 ;; Make compiled objects writable so they can be stripped.
2142 (let ((out (assoc-ref outputs "out")))
2143 (for-each (lambda (file)
2144 (chmod file #o755))
2145 (append
2146 (find-files (string-append out "/lib"))
2147 (find-files (string-append out "/sbin"))))
2148 #t))))
2149
2150 #:configure-flags (list (string-append "--sysconfdir="
2151 (assoc-ref %outputs "out")
2152 "/etc/lvm")
2153 "--enable-udev_sync"
2154 "--enable-udev_rules"
2155
2156 ;; Make sure programs such as 'dmsetup' can
2157 ;; find libdevmapper.so.
2158 (string-append "LDFLAGS=-Wl,-rpath="
2159 (assoc-ref %outputs "out")
2160 "/lib"))
2161
2162 ;; The tests use 'mknod', which requires root access.
2163 #:tests? #f))
2164 (home-page "https://sourceware.org/lvm2/")
2165 (synopsis "Logical volume management for Linux")
2166 (description
2167 "LVM2 is the logical volume management tool set for Linux-based systems.
2168 This package includes the user-space libraries and tools, including the device
2169 mapper. Kernel components are part of Linux-libre.")
2170
2171 ;; Libraries (liblvm2, libdevmapper) are LGPLv2.1.
2172 ;; Command-line tools are GPLv2.
2173 (license (list license:gpl2 license:lgpl2.1))))
2174
2175 (define-public lvm2-static
2176 (package
2177 (inherit lvm2)
2178 (name "lvm2-static")
2179
2180 ;; Propagate udev because libdevmapper.a depends on libudev.
2181 (inputs (alist-delete "udev" (package-inputs lvm2)))
2182 (propagated-inputs `(("udev" ,eudev)))
2183
2184 (arguments
2185 (substitute-keyword-arguments (package-arguments lvm2)
2186 ((#:configure-flags flags '())
2187 ;; LVM2 doesn't use Libtool, hence the custom option.
2188 `(cons "--enable-static_link" ,flags))))
2189 (synopsis "Logical volume management for Linux (statically linked)")))
2190
2191 (define-public wireless-tools
2192 (package
2193 (name "wireless-tools")
2194 (version "30.pre9")
2195 (source (origin
2196 (method url-fetch)
2197 (uri (string-append "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools."
2198 version ".tar.gz"))
2199 (sha256
2200 (base32
2201 "0qscyd44jmhs4k32ggp107hlym1pcyjzihiai48xs7xzib4wbndb"))
2202 (snippet
2203 '(begin
2204 ;; Remove the older header files that are not free software.
2205 (for-each (lambda (n)
2206 (delete-file (format #f "wireless.~a.h" n)))
2207 '(10 11 12 13 14 15 16 17 18 19 20))
2208 #t))))
2209 (build-system gnu-build-system)
2210 (arguments
2211 `(#:make-flags
2212 (list (string-append "PREFIX=" %output)
2213 (string-append "INSTALL_MAN=" %output "/share/man")
2214 (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib")
2215 "BUILD_STATIC=")
2216 #:phases (modify-phases %standard-phases
2217 (delete 'configure))
2218 #:tests? #f))
2219 (synopsis "Tools for manipulating Linux Wireless Extensions")
2220 (description "Wireless Tools are used to manipulate the now-deprecated
2221 Linux Wireless Extensions; consider using 'iw' instead. The Wireless
2222 Extension was an interface allowing you to set Wireless LAN specific
2223 parameters and get the specific stats. It is deprecated in favor the nl80211
2224 interface.")
2225 (home-page "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html")
2226 ;; wireless.21.h and wireless.22.h are distributed under lgpl2.1+, the
2227 ;; other files are distributed under gpl2.
2228 (license (list license:gpl2 license:lgpl2.1+))))
2229
2230 (define-public crda
2231 (package
2232 (name "crda")
2233 (version "3.18")
2234 (source (origin
2235 (method url-fetch)
2236 (uri (string-append "mirror://kernel.org/software/network/crda/"
2237 "crda-" version ".tar.xz"))
2238 (sha256
2239 (base32
2240 "1gydiqgb08d9gbx4l6gv98zg3pljc984m50hmn3ysxcbkxkvkz23"))
2241 (patches (search-patches "crda-optional-gcrypt.patch"))))
2242 (build-system gnu-build-system)
2243 (arguments
2244 '(#:phases (modify-phases %standard-phases
2245 (delete 'configure)
2246 (add-before
2247 'build 'no-werror-no-ldconfig
2248 (lambda _
2249 (substitute* "Makefile"
2250 (("-Werror") "")
2251 (("ldconfig") "true"))
2252 #t))
2253 (add-before
2254 'build 'set-regulator-db-file-name
2255 (lambda* (#:key inputs #:allow-other-keys)
2256 ;; Tell CRDA where to find our database.
2257 (let ((regdb (assoc-ref inputs "wireless-regdb")))
2258 (substitute* "crda.c"
2259 (("\"/lib/crda/regulatory.bin\"")
2260 (string-append "\"" regdb
2261 "/lib/crda/regulatory.bin\"")))
2262 #t))))
2263 #:test-target "verify"
2264 #:make-flags (let ((out (assoc-ref %outputs "out"))
2265 (regdb (assoc-ref %build-inputs "wireless-regdb")))
2266 (list "CC=gcc" "V=1"
2267
2268 ;; Disable signature-checking on 'regulatory.bin'.
2269 ;; The reason is that this simplifies maintenance
2270 ;; on our side (no need to manage a distro key
2271 ;; pair), and we can guarantee integrity of
2272 ;; 'regulatory.bin' by other means anyway, such as
2273 ;; 'guix gc --verify'. See
2274 ;; <https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb>
2275 ;; for a discssion.
2276 "USE_OPENSSL=0"
2277
2278 (string-append "PREFIX=" out)
2279 (string-append "SBINDIR=" out "/sbin/")
2280 (string-append "UDEV_RULE_DIR="
2281 out "/lib/udev/rules.d")
2282 (string-append "LDFLAGS=-Wl,-rpath="
2283 out "/lib -L.")
2284 (string-append "REG_BIN=" regdb
2285 "/lib/crda/regulatory.bin")))))
2286 (native-inputs `(("pkg-config" ,pkg-config)
2287 ("python" ,python-2)
2288 ("wireless-regdb" ,wireless-regdb)))
2289 (inputs `(("libnl" ,libnl)))
2290 (home-page
2291 "https://wireless.wiki.kernel.org/en/developers/Regulatory/CRDA")
2292 (synopsis "Central regulatory domain agent (CRDA) for WiFi")
2293 (description
2294 "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for
2295 communication between the kernel Linux and user space for regulatory
2296 compliance.")
2297 (license license:copyleft-next)))
2298
2299 (define-public wireless-regdb
2300 (package
2301 (name "wireless-regdb")
2302 (version "2017.03.07")
2303 (source (origin
2304 (method url-fetch)
2305 (uri (string-append
2306 "mirror://kernel.org/software/network/wireless-regdb/"
2307 "wireless-regdb-" version ".tar.xz"))
2308 (sha256
2309 (base32
2310 "1f9mcp78sdd4sci6v32vxfcl1rfjpv205jisz1p93kkfnaisy7ip"))
2311
2312 ;; We're building 'regulatory.bin' by ourselves.
2313 (snippet '(delete-file "regulatory.bin"))))
2314 (build-system gnu-build-system)
2315 (arguments
2316 '(#:phases (modify-phases %standard-phases
2317 (delete 'configure))
2318
2319 ;; The 'all' target of the makefile depends on $(REGDB_CHANGED), which
2320 ;; is computed and can be equal to 'maintainer-clean'; when that
2321 ;; happens, we can end up deleting the 'regulatory.bin' file that we
2322 ;; just built. Thus, build things sequentially.
2323 #:parallel-build? #f
2324
2325 #:tests? #f ;no tests
2326 #:make-flags (let ((out (assoc-ref %outputs "out")))
2327 (list (string-append "PREFIX=" out)
2328 (string-append "LSB_ID=GuixSD")
2329 (string-append "DISTRO_PUBKEY=/dev/null")
2330 (string-append "DISTRO_PRIVKEY=/dev/null")
2331 (string-append "REGDB_PUBKEY=/dev/null")
2332
2333 ;; Leave that empty so that db2bin.py doesn't try
2334 ;; to sign 'regulatory.bin'. This allows us to
2335 ;; avoid managing a key pair for the whole distro.
2336 (string-append "REGDB_PRIVKEY=")))))
2337 (native-inputs `(("python" ,python-2)))
2338 (home-page
2339 "https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb")
2340 (synopsis "Wireless regulatory database")
2341 (description
2342 "This package contains the wireless regulatory database Central
2343 Regulatory Database Agent (CRDA) daemon. The database contains information on
2344 country-specific regulations for the wireless spectrum.")
2345 (license license:isc)))
2346
2347 (define-public lm-sensors
2348 (package
2349 (name "lm-sensors")
2350 (version "3.4.0")
2351 (source (origin
2352 (method url-fetch)
2353 (uri (list (string-append
2354 "https://github.com/groeck/lm-sensors/archive/V"
2355 (string-join (string-split version #\.) "-")
2356 ".tar.gz")))
2357 (file-name (string-append name "-" version ".tar.gz"))
2358 (sha256
2359 (base32
2360 "0knb09s9lvx0wzfsaizx3xq58q6kllqf7nkbwvir0wkgn31c2d73"))
2361 (patches (search-patches "lm-sensors-hwmon-attrs.patch"))))
2362 (build-system gnu-build-system)
2363 (inputs `(("rrdtool" ,rrdtool)
2364 ("perl" ,perl)
2365 ("kmod" ,kmod)
2366 ("gnuplot" ,gnuplot)))
2367 (native-inputs `(("pkg-config" ,pkg-config)
2368 ("flex" ,flex)
2369 ("bison" ,bison)
2370 ("which" ,which)))
2371 (outputs '("lib" ;avoid perl in closure
2372 "out"))
2373 (arguments
2374 `(#:tests? #f ; no 'check' target
2375 #:make-flags (list (string-append "PREFIX=" %output)
2376 (string-append "ETCDIR=" (assoc-ref %outputs "lib") "/etc")
2377 (string-append "INCLUDEDIR="
2378 (assoc-ref %outputs "lib") "/include")
2379 (string-append "MANDIR=" %output "/share/man")
2380 (string-append "LIBDIR=" (assoc-ref %outputs "lib") "/lib"))
2381 #:phases
2382 (alist-delete
2383 'configure
2384 (alist-cons-before
2385 'build 'patch-exec-paths
2386 (lambda* (#:key inputs outputs #:allow-other-keys)
2387 (substitute* "prog/detect/sensors-detect"
2388 (("`uname")
2389 (string-append "`" (assoc-ref inputs "coreutils")
2390 "/bin/uname"))
2391 (("(`|\")modprobe" all open-quote)
2392 (string-append open-quote
2393 (assoc-ref inputs "kmod")
2394 "/bin/modprobe")))
2395 (substitute* '("prog/pwm/pwmconfig"
2396 "prog/pwm/fancontrol")
2397 (("gnuplot")
2398 (string-append (assoc-ref inputs "gnuplot")
2399 "/bin/gnuplot"))
2400 (("cat ")
2401 (string-append (assoc-ref inputs "coreutils")
2402 "/bin/cat "))
2403 (("egrep ")
2404 (string-append (assoc-ref inputs "grep")
2405 "/bin/egrep "))
2406 (("sed -e")
2407 (string-append (assoc-ref inputs "sed")
2408 "/bin/sed -e"))
2409 (("cut -d")
2410 (string-append (assoc-ref inputs "coreutils")
2411 "/bin/cut -d"))
2412 (("sleep ")
2413 (string-append (assoc-ref inputs "coreutils")
2414 "/bin/sleep "))
2415 (("readlink -f")
2416 (string-append (assoc-ref inputs "coreutils")
2417 "/bin/readlink -f"))))
2418 %standard-phases))))
2419 (home-page "http://jdelvare.nerim.net/devel.html#lmsensors")
2420 (synopsis "Utilities to read temperature/voltage/fan sensors")
2421 (description
2422 "Lm-sensors is a hardware health monitoring package for Linux. It allows
2423 you to access information from temperature, voltage, and fan speed sensors.
2424 It works with most newer systems.")
2425 (license license:gpl2+)))
2426
2427 (define-public i2c-tools
2428 (package
2429 (name "i2c-tools")
2430 (version "3.1.1")
2431 (source (origin
2432 (method url-fetch)
2433 (uri (string-append
2434 "http://jdelvare.nerim.net/mirror/i2c-tools/i2c-tools-"
2435 version ".tar.bz2"))
2436 (sha256
2437 (base32
2438 "000pvg995qy1b15ks59gd0klri55hb33kqpg5czy84hw1pbdgm0l"))))
2439 (build-system gnu-build-system)
2440 (arguments
2441 `(#:tests? #f ; no 'check' target
2442 #:make-flags (list (string-append "prefix=" %output)
2443 "CC=gcc")
2444 ;; no configure script
2445 #:phases (alist-delete 'configure %standard-phases)))
2446 (inputs
2447 `(("perl" ,perl)))
2448 (home-page "http://jdelvare.nerim.net/devel.html#i2ctools")
2449 (synopsis "I2C tools for Linux")
2450 (description
2451 "The i2c-tools package contains a heterogeneous set of I2C tools for
2452 Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,
2453 EEPROM decoding scripts, EEPROM programming tools, and a python module for
2454 SMBus access.")
2455 (license license:gpl2+)))
2456
2457 (define-public xsensors
2458 (package
2459 (name "xsensors")
2460 (version "0.70")
2461 (source (origin
2462 (method url-fetch)
2463 (uri (string-append
2464 "http://www.linuxhardware.org/xsensors/xsensors-"
2465 version ".tar.gz"))
2466 (sha256
2467 (base32
2468 "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh"))))
2469 (build-system gnu-build-system)
2470 (inputs `(("lm-sensors" ,lm-sensors "lib")
2471 ("gtk" ,gtk+-2)))
2472 (native-inputs `(("pkg-config" ,pkg-config)))
2473 (arguments
2474 `(#:phases (alist-cons-before
2475 'configure 'enable-deprecated
2476 (lambda _
2477 (substitute* "src/Makefile.in"
2478 (("-DGDK_DISABLE_DEPRECATED") "")
2479 (("-DGTK_DISABLE_DEPRECATED") "")))
2480 (alist-cons-before
2481 'configure 'remove-Werror
2482 (lambda _
2483 (substitute* '("configure" "src/Makefile.in")
2484 (("-Werror") "")))
2485 %standard-phases))))
2486 (home-page "http://www.linuxhardware.org/xsensors/")
2487 (synopsis "Hardware health information viewer")
2488 (description
2489 "Xsensors reads data from the libsensors library regarding hardware
2490 health such as temperature, voltage and fan speed and displays the information
2491 in a digital read-out.")
2492 (license license:gpl2+)))
2493
2494 (define-public perf
2495 (package
2496 (name "perf")
2497 (version (package-version linux-libre))
2498 (source (package-source linux-libre))
2499 (build-system gnu-build-system)
2500 (arguments
2501 '(#:phases (alist-replace
2502 'configure
2503 (lambda* (#:key inputs #:allow-other-keys)
2504 (setenv "SHELL_PATH" (which "bash"))
2505 (chdir "tools/perf"))
2506 %standard-phases)
2507 #:make-flags (list (string-append "DESTDIR="
2508 (assoc-ref %outputs "out"))
2509 "WERROR=0"
2510
2511 ;; By default, 'config/Makefile' uses lib64 on
2512 ;; x86_64. Work around that.
2513 "lib=lib")
2514 #:tests? #f)) ;no tests
2515 (native-inputs
2516 `(("pkg-config" ,pkg-config)
2517 ("bison" ,bison)
2518 ("flex" ,flex)
2519
2520 ;; There are build scripts written in these languages.
2521 ("perl" ,perl)
2522 ("python" ,python-2)))
2523 (inputs
2524 `(("slang" ,slang) ;for the interactive TUI
2525 ;; ("newt" ,newt)
2526 ("python" ,python-2) ;'perf' links against libpython
2527 ("elfutils" ,elfutils)
2528 ("libiberty" ,libiberty) ;used alongside BDF for symbol demangling
2529
2530 ;; Documentation.
2531 ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
2532 ("docbook-xsl" ,docbook-xsl)
2533 ("xmlto" ,xmlto)
2534 ("asciidoc" ,asciidoc)))
2535 (home-page "https://perf.wiki.kernel.org/")
2536 (synopsis "Linux profiling with performance counters")
2537 (description
2538 "perf is a tool suite for profiling using hardware performance counters,
2539 with support in the Linux kernel. perf can instrument CPU performance
2540 counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable
2541 of lightweight profiling. This package contains the user-land tools and in
2542 particular the 'perf' command.")
2543 (license (package-license linux-libre))))
2544
2545 (define-public pflask
2546 (package
2547 (name "pflask")
2548 (version "0.2")
2549 (source (origin
2550 (method url-fetch)
2551 (uri (string-append "https://github.com/ghedo/pflask/archive/v"
2552 version ".tar.gz"))
2553 (file-name (string-append name "-" version ".tar.gz"))
2554 (sha256
2555 (base32
2556 "1g8fjj67dfkc2s0852l9vqi1pm61gp4rxbpzbzg780f5s5hd1fys"))))
2557 (build-system cmake-build-system)
2558 (arguments
2559 '(#:tests? #f)) ; no tests
2560 (home-page "http://ghedo.github.io/pflask/")
2561 (synopsis "Simple tool for creating Linux namespace containers")
2562 (description "pflask is a simple tool for creating Linux namespace
2563 containers. It can be used for running a command or even booting an OS inside
2564 an isolated container, created with the help of Linux namespaces. It is
2565 similar in functionality to chroot, although pflask provides better isolation
2566 thanks to the use of namespaces.")
2567 (license license:bsd-2)))
2568
2569 (define-public hdparm
2570 (package
2571 (name "hdparm")
2572 (version "9.52")
2573 (source (origin
2574 (method url-fetch)
2575 (uri (string-append "mirror://sourceforge/" name "/" name "/"
2576 name "-" version ".tar.gz"))
2577 (sha256
2578 (base32
2579 "1djgxhfadd865dcrl6dp7dvjxpaisy7mk17mbdbglwg24ga9qhn3"))))
2580 (build-system gnu-build-system)
2581 (arguments
2582 `(#:make-flags (let ((out (assoc-ref %outputs "out")))
2583 (list (string-append "binprefix=" out)
2584 (string-append "manprefix=" out)
2585 "CC=gcc"))
2586 #:phases
2587 (modify-phases %standard-phases
2588 (delete 'configure)) ; no configure script
2589 #:tests? #f)) ; no test suite
2590 (home-page "https://sourceforge.net/projects/hdparm/")
2591 (synopsis "View and tune ATA disk drive parameters")
2592 (description
2593 "@command{hdparm} is a command-line utility to control ATA controllers and
2594 disk drives. It can increase performance and/or reliability by careful tuning
2595 of hardware settings like power and acoustic management, DMA modes, and caching.
2596 It can also display detailed device information, or be used as a simple
2597 performance benchmarking tool.
2598
2599 @command{hdparm} provides a command line interface to various Linux kernel
2600 interfaces provided by the SATA/ATA/SAS @code{libata} subsystem, and the older
2601 IDE driver subsystem. Many external USB drive enclosures with @dfn{SCSI-ATA
2602 Command Translation} (SAT) are also supported.")
2603 (license (license:non-copyleft "file://LICENSE.TXT"))))
2604
2605 (define-public rfkill
2606 (package
2607 (name "rfkill")
2608 (version "0.5")
2609 (source (origin
2610 (method url-fetch)
2611 (uri (string-append "mirror://kernel.org/software/network/"
2612 name "/" name "-" version ".tar.xz"))
2613 (sha256
2614 (base32
2615 "0snqj5h0y991lszbigbyyqb8swj0hxajc1vfqg2scfay44231bp0"))))
2616 (build-system gnu-build-system)
2617 (arguments
2618 `(#:make-flags (list "CC=gcc"
2619 (string-append "PREFIX=" %output))
2620 #:phases (modify-phases %standard-phases
2621 (delete 'configure))
2622 #:tests? #f))
2623 (home-page "https://wireless.wiki.kernel.org/en/users/Documentation/rfkill")
2624 (synopsis "Tool for enabling and disabling wireless devices")
2625 (description
2626 "rfkill is a simple tool for accessing the rfkill device interface,
2627 which is used to enable and disable wireless networking devices, typically
2628 WLAN, Bluetooth and mobile broadband.")
2629 (license (license:non-copyleft "file://COPYING"
2630 "See COPYING in the distribution."))))
2631
2632 (define-public acpi
2633 (package
2634 (name "acpi")
2635 (version "1.7")
2636 (source (origin
2637 (method url-fetch)
2638 (uri (string-append "mirror://sourceforge/acpiclient/acpiclient/"
2639 version "/" name "-" version ".tar.gz"))
2640 (sha256
2641 (base32
2642 "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp"))))
2643 (build-system gnu-build-system)
2644 (home-page "http://acpiclient.sourceforge.net")
2645 (synopsis "Display information on ACPI devices")
2646 (description "@code{acpi} attempts to replicate the functionality of the
2647 \"old\" @code{apm} command on ACPI systems, including battery and thermal
2648 information. It does not support ACPI suspending, only displays information
2649 about ACPI devices.")
2650 (license license:gpl2+)))
2651
2652 (define-public acpid
2653 (package
2654 (name "acpid")
2655 (version "2.0.28")
2656 (source (origin
2657 (method url-fetch)
2658 (uri (string-append "mirror://sourceforge/acpid2/acpid-"
2659 version ".tar.xz"))
2660 (sha256
2661 (base32
2662 "043igasvp1l6nv5rzh4sksmymay2qn20anl4zm4zvwnkn1a3l34q"))))
2663 (build-system gnu-build-system)
2664 (home-page "https://sourceforge.net/projects/acpid2/")
2665 (synopsis "Daemon for delivering ACPI events to user-space programs")
2666 (description
2667 "acpid is designed to notify user-space programs of Advanced
2668 Configuration and Power Interface (ACPI) events. acpid should be started
2669 during the system boot, and will run as a background process. When an ACPI
2670 event is received from the kernel, acpid will examine the list of rules
2671 specified in /etc/acpi/events and execute the rules that match the event.")
2672 (license license:gpl2+)))
2673
2674 (define-public sysfsutils
2675 (package
2676 (name "sysfsutils")
2677 (version "2.1.0")
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri
2682 (string-append
2683 "mirror://sourceforge/linux-diag/sysfsutils/" version "/sysfsutils-"
2684 version ".tar.gz"))
2685 (sha256
2686 (base32 "12i0ip11xbfcjzxz4r10cvz7mbzgq1hfcdn97w6zz7sm3wndwrg8"))))
2687 (build-system gnu-build-system)
2688 (home-page "http://linux-diag.sourceforge.net/Sysfsutils.html")
2689 (synopsis "System utilities based on Linux sysfs")
2690 (description
2691 "These are a set of utilities built upon sysfs, a virtual file system in
2692 Linux kernel versions 2.5+ that exposes a system's device tree. The package
2693 also contains the libsysfs library.")
2694 ;; The library is under lgpl2.1+ (all files say "or any later version").
2695 ;; The rest is mostly gpl2, with a few files indicating gpl2+.
2696 (license (list license:gpl2 license:gpl2+ license:lgpl2.1+))))
2697
2698 (define-public sysfsutils-1
2699 (package
2700 (inherit sysfsutils)
2701 (version "1.3.0")
2702 (source
2703 (origin
2704 (method url-fetch)
2705 (uri
2706 (string-append
2707 "mirror://sourceforge/linux-diag/sysfsutils/sysfsutils-" version
2708 "/sysfsutils-" version ".tar.gz"))
2709 (sha256
2710 (base32 "0kdhs07fm8263pxwd5blwn2x211cg4fk63fyf9ijcdkvzmwxrqq3"))
2711 (modules '((guix build utils)))
2712 (snippet
2713 '(begin
2714 (substitute* "Makefile.in"
2715 (("includedir = /usr/include/sysfs")
2716 "includedir = @includedir@"))
2717 (substitute* "configure"
2718 (("includedir='(\\$\\{prefix\\}/include)'" all orig)
2719 (string-append "includedir='" orig "/sysfs'")))))))
2720 (synopsis "System utilities based on Linux sysfs (version 1.x)")))
2721
2722 (define-public cpufrequtils
2723 (package
2724 (name "cpufrequtils")
2725 (version "0.3")
2726 (source
2727 (origin
2728 (method url-fetch)
2729 (uri
2730 (string-append
2731 "https://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-"
2732 version ".tar.gz"))
2733 (sha256
2734 (base32 "0qfqv7nqmjfr3p0bwrdlxkiqwqr7vmx053cadaa548ybqbghxmvm"))
2735 (patches (search-patches "cpufrequtils-fix-aclocal.patch"))))
2736 (build-system gnu-build-system)
2737 (native-inputs
2738 `(("sysfsutils" ,sysfsutils-1)))
2739 (arguments
2740 '(#:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="
2741 (assoc-ref %outputs "out") "/lib"))))
2742 (home-page "https://www.kernel.org/pub/linux/utils/kernel/cpufreq/")
2743 (synopsis "Utilities to get and set CPU frequency on Linux")
2744 (description
2745 "The cpufrequtils suite contains utilities to retrieve CPU frequency
2746 information, and set the CPU frequency if supported, using the cpufreq
2747 capabilities of the Linux kernel.")
2748 (license license:gpl2)))
2749
2750 (define-public libraw1394
2751 (package
2752 (name "libraw1394")
2753 (version "2.1.2")
2754 (source (origin
2755 (method url-fetch)
2756 (uri (string-append
2757 "mirror://kernel.org/linux/libs/ieee1394/"
2758 name "-" version ".tar.xz"))
2759 (sha256
2760 (base32
2761 "0pm5b415j1qdzyw38wdv8h7ff4yx20831z1727mpsb6jc6bwdk03"))))
2762 (build-system gnu-build-system)
2763 (home-page "https://ieee1394.wiki.kernel.org/index.php/Main_Page")
2764 (synopsis "Interface library for the Linux IEEE1394 drivers")
2765 (description
2766 "Libraw1394 is the only supported interface to the kernel side raw1394 of
2767 the Linux IEEE-1394 subsystem, which provides direct access to the connected
2768 1394 buses to user space. Through libraw1394/raw1394, applications can directly
2769 send to and receive from other nodes without requiring a kernel driver for the
2770 protocol in question.")
2771 (license license:lgpl2.1+)))
2772
2773 (define-public libavc1394
2774 (package
2775 (name "libavc1394")
2776 (version "0.5.4")
2777 (source (origin
2778 (method url-fetch)
2779 (uri (string-append "mirror://sourceforge/libavc1394/libavc1394/"
2780 name "-" version ".tar.gz"))
2781 (sha256
2782 (base32
2783 "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw"))))
2784 (build-system gnu-build-system)
2785 (native-inputs
2786 `(("pkg-config" ,pkg-config)))
2787 (propagated-inputs
2788 `(("libraw1394" ,libraw1394))) ; required by libavc1394.pc
2789 (home-page "https://sourceforge.net/projects/libavc1394/")
2790 (synopsis "AV/C protocol library for IEEE 1394")
2791 (description
2792 "Libavc1394 is a programming interface to the AV/C specification from
2793 the 1394 Trade Association. AV/C stands for Audio/Video Control.")
2794 (license license:lgpl2.1+)))
2795
2796 (define-public libiec61883
2797 (package
2798 (name "libiec61883")
2799 (version "1.2.0")
2800 (source (origin
2801 (method url-fetch)
2802 (uri (string-append
2803 "mirror://kernel.org/linux/libs/ieee1394/"
2804 name "-" version ".tar.xz"))
2805 (sha256
2806 (base32
2807 "17ph458zya2l8dr2xwqnzy195qd9swrir31g78qkgb3g4xz2rq6i"))))
2808 (build-system gnu-build-system)
2809 (native-inputs
2810 `(("pkg-config" ,pkg-config)))
2811 (propagated-inputs
2812 `(("libraw1394" ,libraw1394))) ; required by libiec61883.pc
2813 (home-page "https://ieee1394.wiki.kernel.org/index.php/Main_Page")
2814 (synopsis "Isochronous streaming media library for IEEE 1394")
2815 (description
2816 "The libiec61883 library provides a higher level API for streaming DV,
2817 MPEG-2 and audio over Linux IEEE 1394.")
2818 (license license:lgpl2.1+)))
2819
2820 (define-public mdadm
2821 (package
2822 (name "mdadm")
2823 (version "4.0")
2824 (source (origin
2825 (method url-fetch)
2826 (uri (string-append
2827 "mirror://kernel.org/linux/utils/raid/mdadm/mdadm-"
2828 version ".tar.xz"))
2829 (sha256
2830 (base32
2831 "1ad3mma641946wn5lsllwf0lifw9lps34fv1nnkhyfpd9krffshx"))))
2832 (build-system gnu-build-system)
2833 (inputs
2834 `(("udev" ,eudev)))
2835 (arguments
2836 `(#:make-flags (let ((out (assoc-ref %outputs "out")))
2837 (list "CC=gcc"
2838 "INSTALL=install"
2839 "CHECK_RUN_DIR=0"
2840 ;; TODO: tell it where to find 'sendmail'
2841 ;; (string-append "MAILCMD=" <???> "/sbin/sendmail")
2842 (string-append "BINDIR=" out "/sbin")
2843 (string-append "MANDIR=" out "/share/man")
2844 (string-append "UDEVDIR=" out "/lib/udev")))
2845 #:phases (alist-cons-before
2846 'build 'patch-program-paths
2847 (lambda* (#:key inputs #:allow-other-keys)
2848 (let ((coreutils (assoc-ref inputs "coreutils")))
2849 (substitute* "udev-md-raid-arrays.rules"
2850 (("/usr/bin/(readlink|basename)" all program)
2851 (string-append coreutils "/bin/" program)))))
2852 (alist-cons-before
2853 'build 'remove-W-error
2854 (lambda _
2855 ;; We cannot build with -Werror on i686 due to a
2856 ;; 'sign-compare' warning in util.c.
2857 (substitute* "Makefile"
2858 (("-Werror") ""))
2859 #t)
2860 (alist-delete 'configure %standard-phases)))
2861 ;;tests must be done as root
2862 #:tests? #f))
2863 (home-page "http://neil.brown.name/blog/mdadm")
2864 (synopsis "Tool for managing Linux Software RAID arrays")
2865 (description
2866 "mdadm is a tool for managing Linux Software RAID arrays. It can create,
2867 assemble, report on, and monitor arrays. It can also move spares between raid
2868 arrays when needed.")
2869 (license license:gpl2+)))
2870
2871 (define-public mdadm-static
2872 (package
2873 (inherit mdadm)
2874 (name "mdadm-static")
2875 (arguments
2876 (substitute-keyword-arguments (package-arguments mdadm)
2877 ((#:make-flags flags)
2878 `(cons "LDFLAGS = -static" ,flags))
2879 ((#:phases phases)
2880 `(modify-phases ,phases
2881 (add-after 'install 'remove-cruft
2882 (lambda* (#:key outputs #:allow-other-keys)
2883 (let* ((out (assoc-ref outputs "out"))
2884 (precious? (lambda (file)
2885 (member file '("." ".." "sbin"))))
2886 (directories (scandir out (negate precious?))))
2887 (with-directory-excursion out
2888 (for-each delete-file-recursively directories)
2889 (remove-store-references "sbin/mdadm")
2890 (delete-file "sbin/mdmon")
2891 #t))))))
2892 ((#:modules modules %gnu-build-system-modules)
2893 `((ice-9 ftw) ,@modules))
2894 ((#:strip-flags _ '())
2895 ''("--strip-all")) ;strip a few extra KiB
2896 ((#:allowed-references _ '("out"))
2897 '("out")))) ;refer only self
2898 (synopsis "Statically-linked 'mdadm' command for use in an initrd")))
2899
2900 (define-public multipath-tools
2901 (package
2902 (name "multipath-tools")
2903 (version "0.7.1")
2904 (source (origin
2905 (method url-fetch)
2906 (uri (string-append "http://git.opensvc.com/?p=multipath-tools/"
2907 ".git;a=snapshot;h=" version ";sf=tgz"))
2908 (file-name (string-append name "-" version ".tar.gz"))
2909 (sha256
2910 (base32
2911 "0w0rgi3lqksaki30yvd4l5rgjqb0d7js1sh7masl8aw6xbrsm26p"))
2912 (modules '((guix build utils)))
2913 (snippet
2914 '(begin
2915 ;; Drop bundled valgrind headers.
2916 (delete-file-recursively "third-party")
2917 (substitute* '("multipathd/main.c"
2918 "libmultipath/debug.c")
2919 (("#include \"../third-party/")
2920 "#include \""))
2921 #t))))
2922 (build-system gnu-build-system)
2923 (arguments
2924 '(#:tests? #f ; No tests.
2925 #:make-flags (list (string-append "DESTDIR="
2926 (assoc-ref %outputs "out"))
2927 "SYSTEMDPATH=lib"
2928 (string-append "LDFLAGS=-Wl,-rpath="
2929 (assoc-ref %outputs "out")
2930 "/lib"))
2931 #:phases
2932 (modify-phases %standard-phases
2933 (add-after 'unpack 'patch-source
2934 (lambda* (#:key inputs #:allow-other-keys)
2935 (let ((lvm2 (assoc-ref inputs "lvm2"))
2936 (udev (assoc-ref inputs "udev")))
2937 (substitute* "Makefile.inc"
2938 (("\\$\\(prefix\\)/usr") "$(prefix)"))
2939 (substitute* '("kpartx/Makefile" "libmultipath/Makefile")
2940 (("/usr/include/libdevmapper.h")
2941 (string-append lvm2 "/include/libdevmapper.h"))
2942 (("/usr/include/libudev.h")
2943 (string-append udev "/include/libudev.h")))
2944 #t)))
2945 (delete 'configure)
2946 (add-before 'build 'set-CC
2947 (lambda _
2948 (setenv "CC" "gcc")
2949 #t)))))
2950 (native-inputs
2951 `(("perl" ,perl)
2952 ("pkg-config" ,pkg-config)
2953 ("valgrind" ,valgrind)))
2954 (inputs
2955 `(("ceph:lib" ,ceph "lib")
2956 ("json-c" ,json-c)
2957 ("libaio" ,libaio)
2958 ("liburcu" ,liburcu)
2959 ("lvm2" ,lvm2)
2960 ("readline" ,readline)
2961 ("udev" ,eudev)))
2962 (home-page "http://christophe.varoqui.free.fr/")
2963 (synopsis "Access block devices through multiple paths")
2964 (description
2965 "This package provides the following binaries to drive the
2966 Linux Device Mapper multipathing driver:
2967 @enumerate
2968 @item @command{multipath} - Device mapper target autoconfig.
2969 @item @command{multipathd} - Multipath daemon.
2970 @item @command{mpathpersist} - Manages SCSI persistent reservations on
2971 @code{dm} multipath devices.
2972 @item @command{kpartx} - Create device maps from partition tables.
2973 @end enumerate")
2974 (license (list license:gpl2+ ; Main distribution.
2975 license:lgpl2.0+)))) ; libmpathcmd/mpath_cmd.h
2976
2977 (define-public libaio
2978 (package
2979 (name "libaio")
2980 (version "0.3.110")
2981 (source (origin
2982 (method url-fetch)
2983 (uri (list
2984 (string-append "mirror://debian/pool/main/liba/libaio/"
2985 name "_" version ".orig.tar.gz")))
2986 (sha256
2987 (base32
2988 "0zjzfkwd1kdvq6zpawhzisv7qbq1ffs343i5fs9p498pcf7046g0"))))
2989 (build-system gnu-build-system)
2990 (arguments
2991 '(#:make-flags
2992 (list "CC=gcc" (string-append "prefix=" %output))
2993 #:test-target "partcheck" ; need root for a full 'check'
2994 #:phases
2995 (alist-delete 'configure %standard-phases))) ; no configure script
2996 (home-page "http://lse.sourceforge.net/io/aio.html")
2997 (synopsis "Linux-native asynchronous I/O access library")
2998 (description
2999 "This library enables userspace to use Linux kernel asynchronous I/O
3000 system calls, important for the performance of databases and other advanced
3001 applications.")
3002 (license license:lgpl2.1+)))
3003
3004 (define-public sbc
3005 (package
3006 (name "sbc")
3007 (version "1.3")
3008 (source (origin
3009 (method url-fetch)
3010 (uri (string-append "https://www.kernel.org/pub/linux/bluetooth/"
3011 name "-" version ".tar.xz"))
3012 (sha256
3013 (base32
3014 "02ckd2z51z0h85qgv7x8vv8ybp5czm9if1z78411j53gaz7j4476"))))
3015 (build-system gnu-build-system)
3016 (inputs
3017 `(("libsndfile" ,libsndfile)))
3018 (native-inputs
3019 `(("pkg-config" ,pkg-config)))
3020 (home-page "https://www.kernel.org/pub/linux/bluetooth/")
3021 (synopsis "Bluetooth subband audio codec")
3022 (description
3023 "The SBC is a digital audio encoder and decoder used to transfer data to
3024 Bluetooth audio output devices like headphones or loudspeakers.")
3025 (license license:gpl2+)))
3026
3027 (define-public bluez
3028 (package
3029 (name "bluez")
3030 (version "5.45")
3031 (replacement bluez/fixed)
3032 (source (origin
3033 (method url-fetch)
3034 (uri (string-append
3035 "mirror://kernel.org/linux/bluetooth/bluez-"
3036 version ".tar.xz"))
3037 (sha256
3038 (base32
3039 "1sb4aflgyrl7apricjipa8wx95qm69yja0lmn2f19g560c3v1b2c"))))
3040 (build-system gnu-build-system)
3041 (arguments
3042 `(#:configure-flags
3043 (let ((out (assoc-ref %outputs "out")))
3044 (list "--sysconfdir=/etc"
3045 "--localstatedir=/var"
3046 "--enable-library"
3047 "--disable-systemd"
3048 ;; Install dbus/udev files to the correct location.
3049 (string-append "--with-dbusconfdir=" out "/etc")
3050 (string-append "--with-udevdir=" out "/lib/udev")))
3051 #:phases
3052 (modify-phases %standard-phases
3053 (add-after 'install 'post-install
3054 (lambda* (#:key inputs outputs #:allow-other-keys)
3055 (let* ((out (assoc-ref outputs "out"))
3056 (servicedir (string-append out "/share/dbus-1/services"))
3057 (service "obexd/src/org.bluez.obex.service")
3058 (rule (string-append
3059 out "/lib/udev/rules.d/97-hid2hci.rules")))
3060 ;; Install the obex dbus service file.
3061 (substitute* service
3062 (("/bin/false")
3063 (string-append out "/libexec/bluetooth/obexd")))
3064 (install-file service servicedir)
3065 ;; Fix paths in the udev rule.
3066 (substitute* rule
3067 (("hid2hci --method")
3068 (string-append out "/lib/udev/hid2hci --method"))
3069 (("/sbin/udevadm")
3070 (string-append (assoc-ref inputs "eudev") "/bin/udevadm")))
3071 #t))))
3072
3073 ;; FIXME: Skip one test that segfaults on ARM.
3074 ,@(if (string=? (%current-system) "armhf-linux")
3075 '(#:make-flags '("XFAIL_TESTS=unit/test-gatt"))
3076 '())))
3077 (native-inputs
3078 `(("pkg-config" ,pkg-config)
3079 ("gettext" ,gettext-minimal)))
3080 (inputs
3081 `(("glib" ,glib)
3082 ("dbus" ,dbus)
3083 ("eudev" ,eudev)
3084 ("libical" ,libical)
3085 ("readline" ,readline)))
3086 (home-page "http://www.bluez.org/")
3087 (synopsis "Linux Bluetooth protocol stack")
3088 (description
3089 "BlueZ provides support for the core Bluetooth layers and protocols. It
3090 is flexible, efficient and uses a modular implementation.")
3091 (license license:gpl2+)))
3092
3093 (define bluez/fixed
3094 (package
3095 (inherit bluez)
3096 (version "5.45")
3097 (source (origin
3098 (method url-fetch)
3099 (uri (string-append
3100 "mirror://kernel.org/linux/bluetooth/bluez-"
3101 version ".tar.xz"))
3102 (sha256
3103 (base32
3104 "1sb4aflgyrl7apricjipa8wx95qm69yja0lmn2f19g560c3v1b2c"))
3105 (patches (search-patches "bluez-CVE-2017-1000250.patch"))))))
3106
3107 (define-public fuse-exfat
3108 (package
3109 (name "fuse-exfat")
3110 (version "1.2.7")
3111 (source (origin
3112 (method url-fetch)
3113 (uri (string-append
3114 "https://github.com/relan/exfat/releases/download/v"
3115 version "/" name "-" version ".tar.gz"))
3116 (sha256
3117 (base32
3118 "0df0ccnd0dgwc6rvk9qmrz0nfb8whc5s3wg9qnw1mzbrh4rcvhw2"))))
3119 (build-system gnu-build-system)
3120 (native-inputs
3121 `(("pkg-config" ,pkg-config)))
3122 (inputs
3123 `(("fuse" ,fuse)))
3124 (home-page "https://github.com/relan/exfat")
3125 (synopsis "Mount exFAT file systems")
3126 (description
3127 "This package provides a FUSE-based file system that provides read and
3128 write access to exFAT devices.")
3129 (license license:gpl2+)))
3130
3131 (define-public gpm
3132 (package
3133 (name "gpm")
3134 (version "1.20.7")
3135 (source (origin
3136 (method url-fetch)
3137 (uri (string-append
3138 "http://www.nico.schottelius.org/software/gpm/archives/gpm-"
3139 version ".tar.bz2"))
3140 (sha256
3141 (base32
3142 "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh"))))
3143 (build-system gnu-build-system)
3144 (arguments
3145 '(#:phases (modify-phases %standard-phases
3146 (add-after 'unpack 'bootstrap
3147 (lambda _
3148 ;; The tarball was not generated with 'make dist' so we
3149 ;; need to bootstrap things ourselves.
3150 (substitute* "autogen.sh"
3151 (("/bin/sh") (which "sh")))
3152 (and (zero? (system* "./autogen.sh"))
3153 (begin
3154 (patch-makefile-SHELL "Makefile.include.in")
3155 #t)))))
3156
3157 ;; Make sure programs find libgpm.so.
3158 #:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
3159 (assoc-ref %outputs "out")
3160 "/lib"))))
3161 (native-inputs
3162 `(("texinfo" ,texinfo)
3163 ("bison" ,bison)
3164 ("flex" ,flex)
3165 ("autoconf" ,autoconf)
3166 ("automake" ,automake)
3167 ("libtool" ,libtool)))
3168 (home-page "http://www.nico.schottelius.org/software/gpm/")
3169 (synopsis "Mouse support for the Linux console")
3170 (description
3171 "The GPM (general-purpose mouse) daemon is a mouse server for
3172 applications running on the Linux console. It allows users to select items
3173 and copy/paste text in the console and in xterm.")
3174 (license license:gpl2+)))
3175
3176 (define-public btrfs-progs
3177 (package
3178 (name "btrfs-progs")
3179 (version "4.13.1")
3180 (source (origin
3181 (method url-fetch)
3182 (uri (string-append "mirror://kernel.org/linux/kernel/"
3183 "people/kdave/btrfs-progs/"
3184 "btrfs-progs-v" version ".tar.xz"))
3185 (sha256
3186 (base32
3187 "1clavvrlkswgicqsm2yfsxqw04lsn8dra0db84jqm6j2apz80kz0"))))
3188 (build-system gnu-build-system)
3189 (outputs '("out"
3190 "static")) ; static versions of the binaries in "out"
3191 (arguments
3192 '(#:phases (modify-phases %standard-phases
3193 (add-after 'build 'build-static
3194 (lambda _ (zero? (system* "make" "static"))))
3195 (add-after 'install 'install-bash-completion
3196 (lambda* (#:key outputs #:allow-other-keys)
3197 (install-file "btrfs-completion"
3198 (string-append (assoc-ref outputs "out")
3199 "/etc/bash_completion.d"))
3200 #t))
3201 (add-after 'install 'install-static
3202 (let ((staticbin (string-append (assoc-ref %outputs "static")
3203 "/bin")))
3204 (lambda _
3205 (zero? (system* "make"
3206 (string-append "bindir=" staticbin)
3207 "install-static"))))))
3208 #:test-target "test"
3209 #:parallel-tests? #f)) ; tests fail when run in parallel
3210 (inputs `(("e2fsprogs" ,e2fsprogs)
3211 ("libblkid" ,util-linux)
3212 ("libblkid:static" ,util-linux "static")
3213 ("libuuid" ,util-linux)
3214 ("libuuid:static" ,util-linux "static")
3215 ("lzo" ,lzo)
3216 ("zlib" ,zlib)
3217 ("zstd" ,zstd)))
3218 (native-inputs `(("pkg-config" ,pkg-config)
3219 ("asciidoc" ,asciidoc)
3220 ("xmlto" ,xmlto)
3221 ;; For building documentation.
3222 ("libxml2" ,libxml2)
3223 ("docbook-xsl" ,docbook-xsl)
3224 ;; For tests.
3225 ("acl" ,acl)
3226 ("which" ,which)))
3227 (home-page "https://btrfs.wiki.kernel.org/")
3228 (synopsis "Create and manage btrfs copy-on-write file systems")
3229 (description "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux
3230 aimed at implementing advanced features while focusing on fault tolerance,
3231 repair and easy administration.")
3232 ;; GPL2+: crc32.c, radix-tree.c, raid6.c, rbtree.c.
3233 ;; GPL2: Everything else.
3234 (license (list license:gpl2 license:gpl2+))))
3235
3236 (define-public btrfs-progs/static
3237 (package
3238 (name "btrfs-progs-static")
3239 (version (package-version btrfs-progs))
3240 (source #f)
3241 (build-system trivial-build-system)
3242 (inputs
3243 `(("btrfs-progs:static" ,btrfs-progs "static")))
3244 (arguments
3245 `(#:modules ((guix build utils))
3246 #:builder
3247 (begin
3248 (use-modules (guix build utils)
3249 (ice-9 ftw)
3250 (srfi srfi-26))
3251
3252 (let* ((btrfs (assoc-ref %build-inputs "btrfs-progs:static"))
3253 (out (assoc-ref %outputs "out"))
3254 (source (string-append btrfs "/bin/btrfs.static"))
3255 (target (string-append out "/bin/btrfs")))
3256 (mkdir-p (dirname target))
3257 (copy-file source target)
3258 (remove-store-references target)
3259 (chmod target #o555)))))
3260 (home-page (package-home-page btrfs-progs))
3261 (synopsis "Statically-linked btrfs command from btrfs-progs")
3262 (description "This package provides the statically-linked @command{btrfs}
3263 from the btrfs-progs package. It is meant to be used in initrds.")
3264 (license (package-license btrfs-progs))))
3265
3266 (define-public f2fs-tools
3267 (package
3268 (name "f2fs-tools")
3269 (version "1.8.0")
3270 (source (origin
3271 (method url-fetch)
3272 (uri (string-append
3273 "https://git.kernel.org/cgit/linux/kernel/git/jaegeuk"
3274 "/f2fs-tools.git/snapshot/" name "-" version ".tar.gz"))
3275 (sha256
3276 (base32
3277 "1bir9ladb58ijlcvrjrq1fb1xv5ys50zdjaq0yzliib0apsyrnyl"))))
3278 (build-system gnu-build-system)
3279 (arguments
3280 `(#:phases
3281 (modify-phases %standard-phases
3282 (add-after 'unpack 'bootstrap
3283 (lambda _
3284 (zero? (system* "autoreconf" "-vif")))))))
3285 (native-inputs
3286 `(("autoconf" ,autoconf)
3287 ("automake" ,automake)
3288 ("libtool" ,libtool)
3289 ("pkg-config" ,pkg-config)))
3290 (inputs
3291 `(("libuuid" ,util-linux)))
3292 (home-page "https://f2fs.wiki.kernel.org/")
3293 (synopsis "Userland tools for f2fs")
3294 (description
3295 "F2FS, the Flash-Friendly File System, is a modern file system
3296 designed to be fast and durable on flash devices such as solid-state
3297 disks and SD cards. This package provides the userland utilities.")
3298 ;; The formatting utility, libf2fs and include/f2fs_fs.h is dual
3299 ;; GPL2/LGPL2.1, everything else is GPL2 only. See 'COPYING'.
3300 (license (list license:gpl2 license:lgpl2.1))))
3301
3302 (define-public freefall
3303 (package
3304 (name "freefall")
3305 (version (package-version linux-libre))
3306 (source (package-source linux-libre))
3307 (build-system gnu-build-system)
3308 (arguments
3309 '(#:phases (modify-phases %standard-phases
3310 (add-after 'unpack 'enter-subdirectory
3311 (lambda _
3312 (chdir "tools/laptop/freefall")))
3313 (delete 'configure)
3314 (add-before 'build 'increase-timeout
3315 (lambda _
3316 ;; The default of 2 seconds is too low: it assumes an
3317 ;; open lid and AC power without actually checking.
3318 (substitute* "freefall.c"
3319 (("alarm\\(2\\)") "alarm(5)")))))
3320 #:make-flags (list (string-append "PREFIX="
3321 (assoc-ref %outputs "out")))
3322 #:tests? #f)) ;no tests
3323 (home-page (package-home-page linux-libre))
3324 (synopsis "Free-fall protection for spinning laptop hard drives")
3325 (description
3326 "Prevents shock damage to the internal spinning hard drive(s) of some
3327 HP and Dell laptops. When sudden movement is detected, all input/output
3328 operations on the drive are suspended and its heads are parked on the ramp,
3329 where they are less likely to cause damage to the spinning disc. Requires a
3330 drive that supports the ATA/ATAPI-7 IDLE IMMEDIATE command with unload
3331 feature, and a laptop with an accelerometer. It has no effect on SSDs.")
3332 (license license:gpl2)))
3333
3334 (define-public thinkfan
3335 (package
3336 (name "thinkfan")
3337 (version "0.9.3")
3338 (source (origin
3339 (method url-fetch)
3340 (uri (string-append "mirror://sourceforge/thinkfan/"
3341 "/thinkfan-" version ".tar.gz"))
3342 (sha256
3343 (base32
3344 "0nz4c48f0i0dljpk5y33c188dnnwg8gz82s4grfl8l64jr4n675n"))
3345 (modules '((guix build utils)))
3346 ;; Fix erroneous man page location in Makefile leading to
3347 ;; a compilation failure.
3348 (snippet
3349 '(substitute* "CMakeLists.txt"
3350 (("thinkfan\\.1") "src/thinkfan.1")))))
3351 (build-system cmake-build-system)
3352 (arguments
3353 `(#:modules ((guix build cmake-build-system)
3354 (guix build utils)
3355 (srfi srfi-26))
3356 #:tests? #f ;no test target
3357 #:configure-flags
3358 ;; Enable reading temperatures from hard disks via S.M.A.R.T.
3359 `("-DUSE_ATASMART:BOOL=ON")
3360 #:phases
3361 (modify-phases %standard-phases
3362 ;; Install scripts for various foreign init systems. Also fix
3363 ;; hard-coded path for daemon.
3364 (add-after 'install 'install-rc-scripts
3365 (lambda* (#:key outputs #:allow-other-keys)
3366 (let ((out (assoc-ref outputs "out"))
3367 (files (find-files
3368 (string-append "../thinkfan-" ,version "/rcscripts")
3369 ".*")))
3370 (substitute* files
3371 (("/usr/sbin/(\\$NAME|thinkfan)" _ name)
3372 (string-append out "/sbin/" name)))
3373 (for-each (cute install-file <>
3374 (string-append out "/share/thinkfan"))
3375 files))
3376 #t)))))
3377 (inputs
3378 `(("libatasmart" ,libatasmart)))
3379 (home-page "http://thinkfan.sourceforge.net/")
3380 (synopsis "Simple fan control program")
3381 (description
3382 "Thinkfan is a simple fan control program. It reads temperatures,
3383 checks them against configured limits and switches to appropriate (also
3384 pre-configured) fan level. It requires a working @code{thinkpad_acpi} or any
3385 other @code{hwmon} driver that enables temperature reading and fan control
3386 from userspace.")
3387 (license license:gpl3+)))
3388
3389 (define-public ntfs-3g
3390 (package
3391 (name "ntfs-3g")
3392 (version "2017.3.23")
3393 (source (origin
3394 (method url-fetch)
3395 (uri (string-append "https://tuxera.com/opensource/"
3396 "ntfs-3g_ntfsprogs-" version ".tgz"))
3397 (sha256
3398 (base32
3399 "1mb228p80hv97pgk3myyvgp975r9mxq56c6bdn1n24kngcfh4niy"))
3400 (modules '((guix build utils)))
3401 (snippet
3402 ;; Install under $prefix.
3403 '(substitute* '("src/Makefile.in" "ntfsprogs/Makefile.in")
3404 (("/sbin")
3405 "@sbindir@")))))
3406 (build-system gnu-build-system)
3407 (inputs `(("util-linux" ,util-linux)
3408 ("fuse" ,fuse))) ;libuuid
3409 (native-inputs `(("pkg-config" ,pkg-config)))
3410 (arguments
3411 '(#:configure-flags (list "--exec-prefix=${prefix}"
3412 "--with-fuse=external" ;use our own FUSE
3413 "--enable-mount-helper"
3414 "--enable-posix-acls"
3415 "--enable-xattr-mappings")))
3416 (home-page "https://www.tuxera.com/community/open-source-ntfs-3g/")
3417 (synopsis "Read-write access to NTFS file systems")
3418 (description
3419 "NTFS-3G provides read-write access to NTFS file systems, which are
3420 commonly found on Microsoft Windows. It is implemented as a FUSE file system.
3421 The package provides additional NTFS tools.")
3422 (license license:gpl2+)))
3423
3424 (define-public rdma-core
3425 (package
3426 (name "rdma-core")
3427 (version "14")
3428 (source (origin
3429 (method url-fetch)
3430 (uri (string-append "https://github.com/linux-rdma/rdma-core"
3431 "/releases/download/v" version "/rdma-core-"
3432 version ".tar.gz"))
3433 (sha256
3434 (base32
3435 "0w03zd49k96bmly44qc8l0s9l671sd26k4wrilsp13xaspy048kd"))))
3436 (build-system cmake-build-system)
3437 (arguments
3438 '(#:tests? #f ; no tests
3439 ;; Upstream uses the "ninja" build system and encourage distros
3440 ;; to do the same for consistency. They also recommend using the
3441 ;; "Release" build type.
3442 #:configure-flags (list "-GNinja"
3443 ;; Defaults to "lib64" on 64-bit archs.
3444 (string-append "-DCMAKE_INSTALL_LIBDIR="
3445 (assoc-ref %outputs "out") "/lib")
3446 "-DCMAKE_BUILD_TYPE=Release")
3447 #:phases
3448 (modify-phases %standard-phases
3449 (replace 'build
3450 (lambda _
3451 (zero? (system* "ninja"
3452 "-j" (number->string (parallel-job-count))))))
3453 (replace 'install
3454 (lambda _
3455 (zero? (system* "ninja" "install")))))))
3456 (native-inputs
3457 `(("ninja" ,ninja)
3458 ("pkg-config" ,pkg-config)
3459 ("python" ,python-wrapper)))
3460 (inputs
3461 `(("libnl" ,libnl)
3462 ("udev" ,eudev)))
3463 (home-page "https://github.com/linux-rdma/rdma-core")
3464 (synopsis "Utilities and libraries for working with RDMA devices")
3465 (description
3466 "This package provides userspace components for the InfiniBand
3467 subsystem of the Linux kernel. Specifically it contains userspace
3468 libraries for the following device nodes:
3469
3470 @enumerate
3471 @item @file{/dev/infiniband/uverbsX} (@code{libibverbs})
3472 @item @file{/dev/infiniband/rdma_cm} (@code{librdmacm})
3473 @item @file{/dev/infiniband/umadX} (@code{libibumad})
3474 @end enumerate
3475
3476 The following service daemons are also provided:
3477 @enumerate
3478 @item @code{srp_daemon} (for the @code{ib_srp} kernel module)
3479 @item @code{iwpmd} (for iWARP kernel providers)
3480 @item @code{ibacm} (for InfiniBand communication management assistant)
3481 @end enumerate")
3482 ;; All library code is dual licensed under GPL2 and a custom MIT
3483 ;; variant. The package also includes some components covered by
3484 ;; other licenses. Consult COPYING.md for full details.
3485 (license
3486 (list license:gpl2
3487 (license:x11-style "See COPYING.BSD_MIT in the distribution")
3488 license:bsd-2 ; Files referring to COPYING.BSD_FB
3489 license:cc0 ; most files in ccan/
3490 license:bsd-3)))) ; providers/hfi1verbs are dual GPL2/BSD-3
3491
3492 (define-public rng-tools
3493 (package
3494 (name "rng-tools")
3495 (version "5")
3496 (source (origin
3497 (method url-fetch)
3498 (uri (string-append
3499 "http://downloads.sourceforge.net/sourceforge/gkernel/"
3500 "rng-tools-" version ".tar.gz"))
3501 (sha256
3502 (base32
3503 "13h7lc8wl9khhvkr0i3bl5j9bapf8anhqis1lcnwxg1vc2v058b0"))))
3504 (build-system gnu-build-system)
3505 (synopsis "Random number generator daemon")
3506 (description
3507 "Monitor a hardware random number generator, and supply entropy
3508 from that to the system kernel's @file{/dev/random} machinery.")
3509 (home-page "https://sourceforge.net/projects/gkernel")
3510 ;; The source package is offered under the GPL2+, but the files
3511 ;; 'rngd_rdrand.c' and 'rdrand_asm.S' are only available under the GPL2.
3512 (license (list license:gpl2 license:gpl2+))))
3513
3514 (define-public cpupower
3515 (package
3516 (name "cpupower")
3517 (version (package-version linux-libre))
3518 (source (package-source linux-libre))
3519 (build-system gnu-build-system)
3520 (arguments
3521 '(#:phases (modify-phases %standard-phases
3522 (add-after 'unpack 'enter-subdirectory
3523 (lambda _
3524 (chdir "tools/power/cpupower")))
3525 (delete 'configure)
3526 (add-before 'build 'fix-makefiles
3527 (lambda _
3528 (substitute* "Makefile"
3529 (("/usr/") "/")
3530 (("/bin/(install|pwd)" _ command) command))
3531 (substitute* "bench/Makefile"
3532 (("\\$\\(CC\\) -o") "$(CC) $(LDFLAGS) -o")))))
3533 #:make-flags (let ((out (assoc-ref %outputs "out")))
3534 (list (string-append "DESTDIR=" out)
3535 (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
3536 "docdir=/share/doc/cpupower"
3537 "confdir=$(docdir)/examples"
3538 ;; The Makefile recommends the following changes
3539 "DEBUG=false"
3540 "PACKAGE_BUGREPORT=bug-guix@gnu.org"))
3541 #:tests? #f)) ;no tests
3542 (native-inputs `(("gettext" ,gettext-minimal)))
3543 (inputs `(("pciutils" ,pciutils)))
3544 (home-page (package-home-page linux-libre))
3545 (synopsis "CPU frequency and voltage scaling tools for Linux")
3546 (description
3547 "cpupower is a set of user-space tools that use the cpufreq feature of the
3548 Linux kernel to retrieve and control processor features related to power saving,
3549 such as frequency and voltage scaling.")
3550 (license license:gpl2)))
3551
3552 (define-public haveged
3553 (package
3554 (name "haveged")
3555 (version "1.9.1")
3556 (source
3557 (origin
3558 (method url-fetch)
3559 (uri (string-append "http://www.issihosts.com/haveged/haveged-"
3560 version ".tar.gz"))
3561 (sha256
3562 (base32
3563 "059pxlfd4l5dqhd6r3lynzfz4wby2f17294fy17pi9j2jpnn68ww"))))
3564 (build-system gnu-build-system)
3565 (home-page "http://www.issihosts.com/haveged")
3566 (synopsis "Entropy source for the Linux random number generator")
3567 (description
3568 "haveged generates an unpredictable stream of random numbers for use by
3569 Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's
3570 standard mechanisms for filling the entropy pool may not be sufficient for
3571 systems with high needs or limited user interaction, such as headless servers.
3572 @command{haveged} runs as a privileged daemon, harvesting randomness from the
3573 indirect effects of hardware events on hidden processor state using the HArdware
3574 Volatile Entropy Gathering and Expansion (HAVEGE) algorithm. It tunes itself to
3575 its environment and provides the same built-in test suite for the output stream
3576 as used on certified hardware security devices.")
3577 (license (list (license:non-copyleft "file://nist/mconf.h")
3578 (license:non-copyleft "file://nist/packtest.c")
3579 license:public-domain ; nist/dfft.c
3580 license:gpl3+)))) ; everything else
3581
3582 (define-public ecryptfs-utils
3583 (package
3584 (name "ecryptfs-utils")
3585 (version "111")
3586 (source
3587 (origin
3588 (method url-fetch)
3589 (uri (string-append "https://launchpad.net/ecryptfs/trunk/"
3590 version "/+download/ecryptfs-utils_"
3591 version ".orig.tar.gz"))
3592 (sha256
3593 (base32
3594 "0zwq19siiwf09h7lwa7n7mgmrr8cxifp45lmwgcfr8c1gviv6b0i"))))
3595 (build-system gnu-build-system)
3596 (arguments
3597 `(#:configure-flags (list "--disable-pywrap")))
3598 (native-inputs
3599 `(("intltool" ,intltool)
3600 ("perl" ,perl) ; for pod2man
3601 ("pkg-config" ,pkg-config)))
3602 (inputs
3603 `(("keyutils" ,keyutils)
3604 ("linux-pam" ,linux-pam)
3605 ("nss" ,nss)))
3606 (home-page "http://ecryptfs.org/")
3607 (synopsis "eCryptfs cryptographic file system utilities")
3608 (description
3609 "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.
3610 Each file's cryptographic meta-data is stored inside the file itself, along
3611 with the encrypted contents. This allows individual encrypted files to be
3612 copied between hosts and still be decrypted with the proper key. eCryptfs is a
3613 native Linux file system, and has been part of the Linux kernel since version
3614 2.6.19. This package contains the userland utilities to manage it.")
3615 ;; The files src/key_mod/ecryptfs_key_mod_{openssl,pkcs11_helper,tspi}.c
3616 ;; grant additional permission to link with OpenSSL.
3617 (license license:gpl2+)))
3618
3619 (define-public libnfsidmap
3620 (package
3621 (name "libnfsidmap")
3622 (version "0.25")
3623 (source (origin
3624 (method url-fetch)
3625 (uri (string-append
3626 "http://www.citi.umich.edu/projects/nfsv4/linux/"
3627 name "/" name "-" version ".tar.gz"))
3628 (sha256
3629 (base32
3630 "1kzgwxzh83qi97rblcm9qj80cdvnv8kml2plz0q103j0hifj8vb5"))))
3631 (build-system gnu-build-system)
3632 (arguments
3633 `(#:configure-flags (list
3634 (string-append "--with-pluginpath="
3635 (assoc-ref %outputs "out")
3636 "/lib/libnfsidmap"))))
3637 (home-page
3638 "http://www.citi.umich.edu/projects/nfsv4/crossrealm/libnfsidmap_config.html")
3639 (synopsis
3640 "NFSv4 support library for name/ID mapping")
3641 (description "Libnfsidmap is a library holding mulitiple methods of
3642 mapping names to ids and visa versa, mainly for NFSv4. It provides an
3643 extensible array of mapping functions, currently consisting of two choices:
3644 the default @code{nsswitch} and the experimental @code{umich_ldap}.")
3645 (license (license:non-copyleft "file://COPYING"
3646 "See COPYING in the distribution."))))
3647
3648 (define-public module-init-tools
3649 (package
3650 (name "module-init-tools")
3651 (version "3.16")
3652 (source (origin
3653 (method url-fetch)
3654 (uri (string-append
3655 "mirror://kernel.org/linux/utils/kernel/module-init-tools/"
3656 "module-init-tools-" version ".tar.bz2"))
3657 (sha256
3658 (base32
3659 "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"))
3660 (patches (search-patches "module-init-tools-moduledir.patch"))))
3661 (build-system gnu-build-system)
3662 (arguments
3663 ;; FIXME: The upstream tarball lacks man pages, and building them would
3664 ;; require DocBook & co. We used to use Gentoo's pre-built man pages,
3665 ;; but they vanished. In the meantime, fake it.
3666 '(#:phases (alist-cons-before
3667 'configure 'fake-docbook
3668 (lambda _
3669 (substitute* "Makefile.in"
3670 (("^DOCBOOKTOMAN.*$")
3671 "DOCBOOKTOMAN = true\n")))
3672 %standard-phases)))
3673 (home-page "http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/")
3674 (synopsis "Tools for loading and managing Linux kernel modules")
3675 (description
3676 "Tools for loading and managing Linux kernel modules, such as `modprobe',
3677 `insmod', `lsmod', and more.")
3678 (license license:gpl2+)))
3679
3680 (define-public mcelog
3681 (package
3682 (name "mcelog")
3683 (version "153")
3684 (source (origin
3685 (method url-fetch)
3686 (uri (string-append "https://git.kernel.org/cgit/utils/cpu/mce/"
3687 "mcelog.git/snapshot/v" version ".tar.gz"))
3688 (sha256
3689 (base32
3690 "0q40d60p1klzg0aznvxhxgjlddwcxfj2q59s4q86sf9ild6rcdhl"))
3691 (file-name (string-append name "-" version ".tar.gz"))
3692 (modules '((guix build utils)))
3693 (snippet
3694 ;; The snapshots lack a .git directory, breaking ‘git describe’.
3695 `(substitute* "Makefile"
3696 (("\"unknown\"") (string-append "\"v" ,version "\""))))))
3697 (build-system gnu-build-system)
3698 (arguments
3699 `(#:phases (modify-phases %standard-phases
3700 (delete 'configure)) ; no configure script
3701 #:make-flags (let ((out (assoc-ref %outputs "out")))
3702 (list "CC=gcc"
3703 (string-append "prefix=" out)
3704 (string-append "DOCDIR=" out "/share/doc/mcelog")
3705 "etcprefix=$(DOCDIR)/examples"))
3706 ;; The tests will only run as root on certain supported CPU models.
3707 #:tests? #f))
3708 (supported-systems (list "i686-linux" "x86_64-linux"))
3709 (home-page "http://mcelog.org/")
3710 (synopsis "Machine check monitor for x86 Linux systems")
3711 (description
3712 "The mcelog daemon is required by the Linux kernel to log memory, I/O, CPU,
3713 and other hardware errors on x86 systems. It can also perform user-defined
3714 tasks, such as bringing bad pages off-line, when configurable error thresholds
3715 are exceeded.")
3716 (license license:gpl2)))
3717
3718 (define-public mtd-utils
3719 (package
3720 (name "mtd-utils")
3721 (version "1.5.2")
3722 (source (origin
3723 (method url-fetch)
3724 (uri (string-append
3725 "ftp://ftp.infradead.org/pub/mtd-utils/"
3726 "mtd-utils-" version ".tar.bz2"))
3727 (sha256
3728 (base32
3729 "007lhsd8yb34l899r4m37whhzdw815cz4fnjbpnblfha524p7dax"))))
3730 (inputs
3731 `(("acl" ,acl)
3732 ("libuuid" ,util-linux)
3733 ("lzo", lzo)
3734 ("zlib" ,zlib)))
3735 (build-system gnu-build-system)
3736 (arguments
3737 `(#:test-target "tests"
3738 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
3739 #:phases (modify-phases %standard-phases
3740 (delete 'configure))))
3741 (synopsis "MTD Flash Storage Utilities")
3742 (description "This package provides utilities for testing, partitioning, etc
3743 of flash storage.")
3744 (home-page "http://www.linux-mtd.infradead.org/")
3745 (license
3746 (list license:gpl2 ; Almost everything is gpl2 or gpl2+
3747 license:mpl1.1 ; All ftl* files
3748 license:expat)))) ; libiniparser
3749
3750 (define-public libseccomp
3751 (package
3752 (name "libseccomp")
3753 (version "2.3.2")
3754 (source (origin
3755 (method url-fetch)
3756 (uri (string-append "https://github.com/seccomp/libseccomp/"
3757 "releases/download/v" version
3758 "/libseccomp-" version ".tar.gz"))
3759 (sha256
3760 (base32
3761 "18dwfxzsw3agiy2dxbflrkhmjgvlji0wwkk636nabh2ng41qrp1x"))))
3762 (build-system gnu-build-system)
3763 (native-inputs
3764 `(("which" ,which)))
3765 (synopsis "Interface to Linux's seccomp syscall filtering mechanism")
3766 (description "The libseccomp library provides an easy to use, platform
3767 independent, interface to the Linux Kernel's syscall filtering mechanism. The
3768 libseccomp API is designed to abstract away the underlying BPF based syscall
3769 filter language and present a more conventional function-call based filtering
3770 interface that should be familiar to, and easily adopted by, application
3771 developers.")
3772 (home-page "https://github.com/seccomp/libseccomp")
3773 (license license:lgpl2.1)))
3774
3775 (define-public radeontop
3776 (package
3777 (name "radeontop")
3778 (version "1.0")
3779 (home-page "https://github.com/clbr/radeontop/")
3780 (source (origin
3781 (method url-fetch)
3782 (uri (string-append home-page "archive/v" version ".tar.gz"))
3783 (file-name (string-append name "-" version ".tar.gz"))
3784 (sha256
3785 (base32
3786 "1z38nibirqxrbsfyhfcrnzlcw16cqjp4ds6qnjfxalwayf9fm5x9"))))
3787 (build-system gnu-build-system)
3788 (arguments
3789 `(#:phases (modify-phases %standard-phases
3790 ;; getver.sh uses ‘git --describe’, isn't worth an extra git
3791 ;; dependency, and doesn't even work on release(!) tarballs.
3792 (add-after 'unpack 'report-correct-version
3793 (lambda _ (substitute* "getver.sh"
3794 (("ver=unknown")
3795 (string-append "ver=" ,version)))))
3796 (delete 'configure)) ; no configure script
3797 #:make-flags (list "CC=gcc"
3798 (string-append "PREFIX=" %output))
3799 #:tests? #f)) ; no tests
3800 (native-inputs
3801 `(("gettext" ,gettext-minimal)
3802 ("pkg-config" ,pkg-config)))
3803 (inputs
3804 `(("libdrm" ,libdrm)
3805 ("libpciaccess" ,libpciaccess)
3806 ("libxcb" ,libxcb)
3807 ("ncurses" ,ncurses)))
3808 (synopsis "Usage monitor for AMD Radeon graphics")
3809 (description "RadeonTop monitors resource consumption on supported AMD
3810 Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on
3811 a terminal or saved to a file for further processing. It measures both the
3812 activity of the GPU as a whole, which is also accurate during OpenCL
3813 computations, as well as separate component statistics that are only meaningful
3814 under OpenGL graphics workloads.")
3815 (license license:gpl3)))
3816
3817 (define-public efivar
3818 (package
3819 (name "efivar")
3820 (version "30")
3821 (source (origin
3822 (method url-fetch)
3823 (uri (string-append "https://github.com/rhinstaller/" name
3824 "/releases/download/" version "/" name
3825 "-" version ".tar.bz2"))
3826 (sha256
3827 (base32
3828 "12qjnm44yi55ffqxjpgrxy82s89yjziy84w2rfjjknsd8flj0mqz"))))
3829 (build-system gnu-build-system)
3830 (arguments
3831 `(;; Tests require a UEFI system and is not detected in the chroot.
3832 #:tests? #f
3833 #:make-flags (list (string-append "prefix=" %output)
3834 (string-append "libdir=" %output "/lib")
3835 (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
3836 #:phases
3837 (modify-phases %standard-phases
3838 (delete 'configure))))
3839 (native-inputs
3840 `(("pkg-config" ,pkg-config)))
3841 (inputs
3842 `(("popt" ,popt)))
3843 (home-page "https://github.com/rhinstaller/efivar")
3844 (synopsis "Tool and library to manipulate EFI variables")
3845 (description "This package provides a library and a command line
3846 interface to the variable facility of UEFI boot firmware.")
3847 (license license:lgpl2.1+)))
3848
3849 (define-public efibootmgr
3850 (package
3851 (name "efibootmgr")
3852 (version "14")
3853 (source (origin
3854 (method url-fetch)
3855 (uri (string-append "https://github.com/rhinstaller/" name
3856 "/releases/download/" version "/" name
3857 "-" version ".tar.bz2"))
3858 (sha256
3859 (base32
3860 "1n3sydvpr6yl040hhf460k7mrxby7laqd9dqs6pq0js1hijc2zip"))))
3861 (build-system gnu-build-system)
3862 (arguments
3863 `(#:tests? #f ; No tests.
3864 #:make-flags (list (string-append "prefix=" %output)
3865 (string-append "libdir=" %output "/lib")
3866 ;; Override CFLAGS to add efivar include directory.
3867 (string-append "CFLAGS=-O2 -g -flto -I"
3868 (assoc-ref %build-inputs "efivar")
3869 "/include/efivar"))
3870 #:phases
3871 (modify-phases %standard-phases
3872 (add-after 'unpack 'branding
3873 ;; Replace default loader path with something more familiar.
3874 (lambda _
3875 (substitute* "src/efibootmgr.c"
3876 (("EFI\\\\\\\\redhat") ; Matches 'EFI\\redhat'.
3877 "EFI\\\\gnu"))
3878 #t))
3879 (delete 'configure))))
3880 (native-inputs
3881 `(("pkg-config" ,pkg-config)))
3882 (inputs
3883 `(("efivar" ,efivar)
3884 ("popt" ,popt)))
3885 (home-page "https://github.com/rhinstaller/efibootmgr")
3886 (synopsis "Modify the Extensible Firmware Interface (EFI) boot manager")
3887 (description
3888 "@code{efibootmgr} is a user-space application to modify the Intel
3889 Extensible Firmware Interface (EFI) Boot Manager. This application can
3890 create and destroy boot entries, change the boot order, change the next
3891 running boot option, and more.")
3892 (license license:gpl2+)))
3893
3894 (define-public sysstat
3895 (package
3896 (name "sysstat")
3897 (version "11.4.3")
3898 (source (origin
3899 (method url-fetch)
3900 (uri (string-append "http://perso.orange.fr/sebastien.godard/"
3901 "sysstat-" version ".tar.xz"))
3902 (sha256
3903 (base32
3904 "1ryf9myjzpa2279i3rvsh6fr5psm6qvr5r9kbm1sxyspapxcms82"))))
3905 (build-system gnu-build-system)
3906 (arguments
3907 `(#:tests? #f ; No test suite.
3908 ;; Without this flag, it tries to install the man pages with group 'root'
3909 ;; and fails because /etc/passwd lacks an entry for the root user.
3910 #:configure-flags
3911 (list "--disable-file-attr"
3912 (string-append "conf_dir=" (assoc-ref %outputs "out") "/etc"))
3913 #:phases
3914 (modify-phases %standard-phases
3915 ;; The build process tries to create '/var/lib/sa', so we skip that
3916 ;; instruction.
3917 (add-after 'build 'skip-touching-var
3918 (lambda _
3919 (substitute* "Makefile"
3920 (("mkdir -p \\$\\(DESTDIR\\)\\$\\(SA_DIR\\)")
3921 ""))
3922 #t)))))
3923 (home-page "http://sebastien.godard.pagesperso-orange.fr/")
3924 (synopsis "Performance monitoring tools for Linux")
3925 (description "The sysstat utilities are a collection of performance
3926 monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
3927 @code{tapestat}, @code{cifsiostat}, @code{pidstat}, @code{sar}, @code{sadc},
3928 @code{sadf} and @code{sa}.")
3929 (license license:gpl2+)))
3930
3931 (define-public light
3932 (package
3933 (name "light")
3934 (version "1.0")
3935 (source (origin
3936 (method url-fetch)
3937 (uri (string-append "https://github.com/haikarainen/" name
3938 "/archive/v" version ".tar.gz"))
3939 (sha256
3940 (base32
3941 "0r5gn6c0jcxknzybl6059dplxv46dpahchqq4gymrs7z8bp0hilp"))
3942 (file-name (string-append name "-" version ".tar.gz"))))
3943 (build-system gnu-build-system)
3944 (arguments
3945 '(#:tests? #f ; no tests
3946 #:make-flags (list "CC=gcc"
3947 (string-append "PREFIX=" %output))
3948 #:phases
3949 (modify-phases %standard-phases
3950 (delete 'configure)
3951 (add-after 'unpack 'patch-makefile
3952 (lambda _
3953 (substitute* "Makefile" (("chown") "#")))))))
3954 (native-inputs
3955 `(("help2man" ,help2man)))
3956 (home-page "https://haikarainen.github.io/light")
3957 (synopsis "GNU/Linux application to control backlights")
3958 (description
3959 "Light is a program to send commands to screen backlight controllers
3960 under GNU/Linux. Features include:
3961
3962 @itemize
3963 @item It does not rely on X.
3964 @item Light can automatically figure out the best controller to use, making
3965 full use of underlying hardware.
3966 @item It is possible to set a minimum brightness value, as some controllers
3967 set the screen to be pitch black at a vaĺue of 0 (or higher).
3968 @end itemize
3969
3970 Light is the successor of lightscript.")
3971 (license license:gpl3+)))
3972
3973 (define-public tlp
3974 (package
3975 (name "tlp")
3976 (version "1.0")
3977 (source (origin
3978 (method url-fetch)
3979 (uri (string-append
3980 "https://github.com/linrunner/"
3981 (string-upcase name)
3982 "/archive/" version ".tar.gz"))
3983 (file-name (string-append name "-" version ".tar.gz"))
3984 (sha256
3985 (base32
3986 "1v3qpj9kp4rxwqapayd0i9419wwv4bikyrzjvqn0r9xkgnr1f9v4"))))
3987 (inputs `(("bash" ,bash)
3988 ("dbus" ,dbus)
3989 ("ethtool" ,ethtool)
3990 ("eudev" ,eudev)
3991 ("grep" ,grep)
3992 ("hdparm" ,hdparm)
3993 ("inetutils" ,inetutils)
3994 ("iw" ,iw)
3995 ("kmod" ,kmod)
3996 ("pciutils" ,pciutils)
3997 ("perl" ,perl)
3998 ("rfkill" ,rfkill)
3999 ("sed" ,sed)
4000 ("usbutils" ,usbutils)
4001 ("util-linux" ,util-linux)
4002 ("wireless-tools" ,wireless-tools)))
4003 (build-system gnu-build-system)
4004 (arguments
4005 `(#:phases
4006 (modify-phases %standard-phases
4007 (delete 'configure) ; no configure script
4008 (add-before 'build 'setenv
4009 (lambda* (#:key outputs #:allow-other-keys)
4010 (let ((out (assoc-ref outputs "out")))
4011 (setenv "TLP_WITH_SYSTEMD" "0")
4012 (setenv "TLP_NO_INIT" "1")
4013 (setenv "TLP_NO_PMUTILS" "1")
4014 (setenv "TLP_SBIN" (string-append out "/bin"))
4015 (setenv "TLP_BIN" (string-append out "/bin"))
4016 (setenv "TLP_TLIB" (string-append out "/share/tlp-pm"))
4017 (setenv "TLP_ULIB" (string-append out "/lib/udev"))
4018 (setenv "TLP_CONF" "/etc/tlp")
4019 (setenv "TLP_SHCPL"
4020 (string-append out "/share/bash-completion/completions"))
4021 (setenv "TLP_MAN" (string-append out "/share/man")))))
4022 (delete 'check) ; no tests
4023 (add-before 'install 'fix-installation
4024 (lambda _
4025 ;; Stop the Makefile from trying to create system directories.
4026 (substitute* "Makefile" (("\\[ -f \\$\\(_CONF\\) \\]") "#"))))
4027 (replace 'install
4028 (lambda _
4029 (zero? (system* "make" "install-tlp" "install-man"))))
4030 (add-after 'install 'wrap
4031 (lambda* (#:key inputs outputs #:allow-other-keys)
4032 (let* ((bin (string-append (assoc-ref outputs "out") "/bin"))
4033 (bin-files (find-files bin ".*")))
4034 (define (bin-directory input-name)
4035 (string-append (assoc-ref inputs input-name) "/bin"))
4036 (define (sbin-directory input-name)
4037 (string-append (assoc-ref inputs input-name) "/sbin"))
4038 (for-each (lambda (program)
4039 (wrap-program program
4040 `("PATH" ":" prefix
4041 ,(append
4042 (map bin-directory '("bash"
4043 "coreutils"
4044 "dbus"
4045 "eudev"
4046 "grep"
4047 "inetutils"
4048 "kmod"
4049 "perl"
4050 "sed"
4051 "usbutils"
4052 "util-linux"))
4053 (map sbin-directory '("ethtool"
4054 "hdparm"
4055 "iw"
4056 "pciutils"
4057 "rfkill"
4058 "wireless-tools"))))))
4059 bin-files)))))))
4060 (home-page "http://linrunner.de/en/tlp/tlp.html")
4061 (synopsis "Power management tool for Linux")
4062 (description "TLP is a power management tool for Linux. It comes with
4063 a default configuration already optimized for battery life. Nevertheless,
4064 TLP is customizable to fulfil system requirements. TLP settings are applied
4065 every time the power supply source is changed.")
4066
4067 ;; 'COPYING' is a custom version that says that one file is GPLv3+ and the
4068 ;; rest is GPLv2+.
4069 (license (list license:gpl2+ license:gpl3+))))
4070
4071 (define-public lshw
4072 (package
4073 (name "lshw")
4074 (version "B.02.18")
4075 (source (origin
4076 (method url-fetch)
4077 (uri (string-append "https://www.ezix.org/software/"
4078 "files/lshw-" version
4079 ".tar.gz"))
4080 (sha256
4081 (base32
4082 "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf"))))
4083 (build-system gnu-build-system)
4084 (arguments
4085 `(#:phases (modify-phases %standard-phases (delete 'configure))
4086 #:tests? #f ; no tests
4087 #:make-flags
4088 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
4089 (synopsis "List hardware information")
4090 (description
4091 "@command{lshw} (Hardware Lister) is a small tool to provide
4092 detailed information on the hardware configuration of the machine.
4093 It can report exact memory configuration, firmware version, mainboard
4094 configuration, CPU version and speed, cache configuration, bus speed,
4095 and more on DMI-capable x86 or EFI (IA-64) systems and on some PowerPC
4096 machines (PowerMac G4 is known to work).")
4097 (home-page "https://www.ezix.org/project/wiki/HardwareLiSter")
4098 (license license:gpl2+)))
4099
4100 (define-public libmnl
4101 (package
4102 (name "libmnl")
4103 (version "1.0.4")
4104 (source
4105 (origin
4106 (method url-fetch)
4107 (uri (string-append "mirror://netfilter.org/libmnl/"
4108 "libmnl-" version ".tar.bz2"))
4109 (sha256
4110 (base32
4111 "108zampspaalv44zn0ar9h386dlfixpd149bnxa5hsi8kxlqj7qp"))))
4112 (build-system gnu-build-system)
4113 (home-page "https://www.netfilter.org/projects/libmnl/")
4114 (synopsis "Netlink utility library")
4115 (description "Libmnl is a minimalistic user-space library oriented to
4116 Netlink developers. There are a lot of common tasks in parsing, validating,
4117 constructing of both the Netlink header and TLVs that are repetitive and easy to
4118 get wrong. This library aims to provide simple helpers that allows you to
4119 re-use code and to avoid re-inventing the wheel.")
4120 (license license:lgpl2.1+)))
4121
4122 (define-public libnftnl
4123 (package
4124 (name "libnftnl")
4125 (version "1.0.7")
4126 (source
4127 (origin
4128 (method url-fetch)
4129 (uri (string-append "mirror://netfilter.org/libnftnl/"
4130 "libnftnl-" version ".tar.bz2"))
4131 (sha256
4132 (base32
4133 "10irjrylcfkbp11617yr19vpfhgl54w0kw02jhj0i1abqv5nxdlv"))))
4134 (build-system gnu-build-system)
4135 (native-inputs
4136 `(("pkg-config" ,pkg-config)))
4137 (inputs
4138 `(("libmnl" ,libmnl)))
4139 (home-page "https://www.netfilter.org/projects/libnftnl/index.html")
4140 (synopsis "Netlink programming interface to the Linux nf_tables subsystem")
4141 (description "Libnftnl is a userspace library providing a low-level netlink
4142 programming interface to the in-kernel nf_tables subsystem. The library
4143 libnftnl has been previously known as libnftables. This library is currently
4144 used by nftables.")
4145 (license license:gpl2+)))
4146
4147 (define-public nftables
4148 (package
4149 (name "nftables")
4150 (version "0.7")
4151 (source
4152 (origin
4153 (method url-fetch)
4154 (uri (string-append "http://www.nftables.org/projects/nftables"
4155 "/files/nftables-" version ".tar.bz2"))
4156 (sha256
4157 (base32
4158 "0hzdqigdx4i6jbpxbdyq4zy4p4waqn8l6vvz7685ikh1v0wr4qzy"))))
4159 (build-system gnu-build-system)
4160 (inputs `(("bison", bison)
4161 ("flex", flex)
4162 ("gmp", gmp)
4163 ("libmnl", libmnl)
4164 ("libnftnl", libnftnl)
4165 ("readline", readline)))
4166 (native-inputs `(("pkg-config", pkg-config)))
4167 (home-page "http://www.nftables.org")
4168 (synopsis "Userspace utility for Linux packet filtering")
4169 (description "nftables is the project that aims to replace the existing
4170 {ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet
4171 filtering framework, a new userspace utility and also a compatibility layer for
4172 {ip,ip6}tables. nftables is built upon the building blocks of the Netfilter
4173 infrastructure such as the existing hooks, the connection tracking system, the
4174 userspace queueing component and the logging subsystem.")
4175 (license license:gpl2)))
4176
4177 (define-public proot
4178 (package
4179 (name "proot")
4180 (version "5.1.0")
4181 (home-page "https://github.com/proot-me/PRoot")
4182 (source (origin
4183 (method url-fetch)
4184 (uri (string-append home-page "/archive/v" version ".tar.gz"))
4185 (file-name (string-append name "-" version ".tar.gz"))
4186 (sha256
4187 (base32
4188 "11h30i83vdhc3khlj6hrh3a21sbmmz8nhfv09vkf6b9bcs1biz2h"))
4189 (patches (search-patches "proot-test-fhs.patch"))))
4190 (build-system gnu-build-system)
4191 (arguments
4192 '(#:make-flags '("-C" "src")
4193
4194 #:phases (modify-phases %standard-phases
4195 (delete 'configure)
4196 (add-before 'build 'set-shell-file-name
4197 (lambda* (#:key inputs #:allow-other-keys)
4198 (substitute* (find-files "src" "\\.[ch]$")
4199 (("\"/bin/sh\"")
4200 (string-append "\""
4201 (assoc-ref inputs "bash")
4202 "/bin/sh\"")))
4203 #t))
4204 (add-before 'check 'fix-fhs-assumptions-in-tests
4205 (lambda _
4206 (substitute* "tests/test-c6b77b77.mk"
4207 (("/bin/bash") (which "bash"))
4208 (("/usr/bin/test") (which "test")))
4209 (substitute* '("tests/test-16573e73.c")
4210 (("/bin/([a-z-]+)" _ program)
4211 (which program)))
4212
4213 (substitute* (find-files "tests" "\\.sh$")
4214 ;; Some of the tests try to "bind-mount" /bin/true.
4215 (("-b /bin/true:")
4216 (string-append "-b " (which "true") ":"))
4217 ;; Likewise for /bin.
4218 (("-b /bin:") "-b /gnu:")
4219 ;; Others try to run /bin/sh.
4220 (("/bin/sh") (which "sh"))
4221 ;; Others assume /etc/fstab exists.
4222 (("/etc/fstab") "/etc/passwd"))
4223
4224 (substitute* "tests/GNUmakefile"
4225 (("-b /bin:") "-b /gnu:"))
4226
4227 ;; XXX: This test fails in an obscure corner case, just
4228 ;; skip it.
4229 (delete-file "tests/test-kkkkkkkk.c")
4230
4231 #t))
4232 (replace 'check
4233 (lambda _
4234 (let ((n (parallel-job-count)))
4235 ;; For some reason we get lots of segfaults with
4236 ;; seccomp support (x86_64, Linux-libre 4.11.0).
4237 (setenv "PROOT_NO_SECCOMP" "1")
4238
4239 ;; Most of the tests expect "/bin" to be in $PATH so
4240 ;; they can run things that live in $ROOTFS/bin.
4241 (setenv "PATH"
4242 (string-append (getenv "PATH") ":/bin"))
4243
4244 (zero? (system* "make" "check" "-C" "tests"
4245 ;;"V=1"
4246 "-j" (number->string n))))))
4247 (replace 'install
4248 (lambda* (#:key outputs #:allow-other-keys)
4249 ;; The 'install' rule does nearly nothing.
4250 (let ((out (assoc-ref outputs "out")))
4251 (and (zero?
4252 ;; TODO: 'make install-care' (does not even
4253 ;; build currently.)
4254 (system* "make" "-C" "src" "install"
4255 (string-append "PREFIX=" out)))
4256 (let ((man1 (string-append out
4257 "/share/man/man1")))
4258 (mkdir-p man1)
4259 (copy-file "doc/proot/man.1"
4260 (string-append man1 "/proot.1"))
4261 #t))))))))
4262 (native-inputs `(("which" ,which)
4263
4264 ;; For 'mcookie', used by some of the tests.
4265 ("util-linux" ,util-linux)))
4266 (inputs `(("talloc" ,talloc)))
4267 (synopsis "Unprivileged chroot, bind mount, and binfmt_misc")
4268 (description
4269 "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},
4270 and @code{binfmt_misc}. This means that users don't need any privileges or
4271 setup to do things like using an arbitrary directory as the new root
4272 filesystem, making files accessible somewhere else in the file system
4273 hierarchy, or executing programs built for another CPU architecture
4274 transparently through QEMU user-mode. Also, developers can use PRoot as a
4275 generic process instrumentation engine thanks to its extension mechanism.
4276 Technically PRoot relies on @code{ptrace}, an unprivileged system-call
4277 available in the kernel Linux.")
4278 (license license:gpl2+)))
4279
4280 (define-public proot-static
4281 (package
4282 (inherit proot)
4283 (name "proot-static")
4284 (synopsis
4285 "Unprivileged chroot, bind mount, and binfmt_misc (statically linked)")
4286 (inputs `(("talloc" ,talloc/static)))
4287 (arguments
4288 (substitute-keyword-arguments (package-arguments proot)
4289 ((#:make-flags flags)
4290 `(cons "LDFLAGS = -ltalloc -static -static-libgcc" ,flags))
4291 ((#:phases phases)
4292 `(modify-phases ,phases
4293 (add-after 'strip 'remove-store-references
4294 (lambda* (#:key outputs #:allow-other-keys)
4295 (let* ((out (assoc-ref outputs "out")))
4296 (with-directory-excursion out
4297 (remove-store-references "bin/proot")
4298 #t))))))
4299 ((#:allowed-references _ '("out"))
4300 '("out"))))))
4301
4302 (define-public cpuid
4303 (package
4304 (name "cpuid")
4305 (version "20170122")
4306 (source (origin
4307 (method url-fetch)
4308 (uri (string-append "http://www.etallen.com/cpuid/cpuid-"
4309 version ".src.tar.gz"))
4310 (sha256
4311 (base32
4312 "0ra8ph9m1dckqaikfnbsh408fp2w9k49fkl423fl2hvhwsm14xk6"))))
4313 (build-system gnu-build-system)
4314 (arguments
4315 '(#:make-flags '("CC=gcc")
4316 #:tests? #f ; no tests
4317 #:phases (modify-phases %standard-phases
4318 (delete 'configure)
4319 (add-before 'install 'fix-makefile
4320 (lambda* (#:key outputs #:allow-other-keys)
4321 (substitute* "Makefile"
4322 (("\\$\\(BUILDROOT\\)/usr") (assoc-ref outputs "out")))
4323 ;; Make the compressed manpages writable so that the
4324 ;; reset-gzip-timestamps phase does not error out.
4325 (substitute* "Makefile"
4326 (("-m 444") "-m 644"))
4327 #t)))))
4328 (inputs `(("perl" ,perl)))
4329 (supported-systems '("i686-linux" "x86_64-linux"))
4330 (home-page "http://www.etallen.com/cpuid.html")
4331 (synopsis "Linux tool to dump x86 CPUID information about the CPU(s)")
4332 (description "cpuid dumps detailed information about the CPU(s) gathered
4333 from the CPUID instruction, and also determines the exact model of CPU(s). It
4334 supports Intel, AMD, and VIA CPUs, as well as older Transmeta, Cyrix, UMC,
4335 NexGen, Rise, and SiS CPUs.")
4336 (license license:gpl2+)))
4337
4338 (define-public jmtpfs
4339 (package
4340 (name "jmtpfs")
4341 (version "0.5")
4342 (source
4343 (origin
4344 (method url-fetch)
4345 (uri (string-append "https://github.com/JasonFerrara/jmtpfs/archive/v"
4346 version ".tar.gz"))
4347 (file-name (string-append name "-" version ".tar.gz"))
4348 (sha256
4349 (base32
4350 "10v8d7mmx8b8123x5f9y9zaaa428ms6wkngwn2ra71n5a53wrjn0"))))
4351 (build-system gnu-build-system)
4352 (inputs
4353 `(("file" ,file)
4354 ("fuse" ,fuse)
4355 ("libmtp" ,libmtp)))
4356 (native-inputs
4357 `(("pkg-config" ,pkg-config)))
4358 (home-page "https://github.com/JasonFerrara/jmtpfs")
4359 (synopsis "Use a FUSE filesystem to access data over MTP")
4360 (description "jmtpfs uses FUSE (filesystem in userspace) to provide access
4361 to data over the Media Transfer Protocol (MTP). Unprivileged users can mount
4362 the MTP device as a filesystem.")
4363 (license license:gpl3)))
4364
4365 (define-public procenv
4366 (package
4367 (name "procenv")
4368 (version "0.49")
4369 (source
4370 (origin
4371 (method url-fetch)
4372 (uri (string-append "https://github.com/jamesodhunt/procenv/archive/"
4373 version ".tar.gz"))
4374 (file-name (string-append name "-" version ".tar.gz"))
4375 (sha256
4376 (base32 "0brzf6185hb76imw107cl21c8lzwiywkxi3jknihrk86bvvicd0d"))))
4377 (build-system gnu-build-system)
4378 (arguments `(#:configure-flags '("--disable-silent-rules")))
4379 (inputs `(("expat" ,expat) ("libcap" ,libcap) ("check" ,check)
4380 ("groff" ,groff) ; for tests
4381 ("libselinux" ,libselinux)))
4382 (synopsis "Utility to show process environment")
4383 (description "Procenv is a command-line tool that displays as much detail about
4384 itself and its environment as possible. It can be used as a test
4385 tool, to understand the type of environment a process runs in, and for
4386 comparing system environments.")
4387 (home-page "http://github.com/jamesodhunt/procenv/")
4388 (license license:gpl3+)))
4389
4390 (define-public libfabric
4391 (package
4392 (name "libfabric")
4393 (version "1.4.1")
4394 (source
4395 (origin
4396 (method url-fetch)
4397 (uri
4398 (string-append "https://github.com/ofiwg/libfabric/releases/download/v"
4399 version "/libfabric-" version ".tar.bz2"))
4400 (sha256
4401 (base32 "19l2m1frna1l765z4j7wl8hp4rb9wrh0hy5496685hd183hmy5pv"))))
4402 (build-system gnu-build-system)
4403 (inputs `(("rdma-core" ,rdma-core)
4404 ;; TODO: add psm, psm(2).
4405 ("libnl" ,libnl)))
4406 (home-page "https://ofiwg.github.io/libfabric/")
4407 (synopsis "Open Fabric Interfaces")
4408 (description
4409 "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric
4410 communication services to applications. OFI is best described as a collection
4411 of libraries and applications used to export fabric services. The key
4412 components of OFI are: application interfaces, provider libraries, kernel
4413 services, daemons, and test applications.
4414
4415 Libfabric is a core component of OFI. It is the library that defines and
4416 exports the user-space API of OFI, and is typically the only software that
4417 applications deal with directly. It works in conjunction with provider
4418 libraries, which are often integrated directly into libfabric.")
4419 (license (list license:bsd-2 license:gpl2)))) ;dual