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