1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 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, 2018, 2019 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, 2018 Efraim Flashner <efraim@flashner.co.il>
9 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
10 ;;; Copyright © 2016, 2017, 2018, 2019 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, 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
15 ;;; Copyright © 2016, 2018, 2019 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, 2018, 2019 Marius Bakke <mbakke@fastmail.com>
19 ;;; Copyright © 2016, 2018 Rene Saavedra <pacoon@protonmail.com>
20 ;;; Copyright © 2016 Carlos Sánchez de La Lama <csanchezdll@gmail.com>
21 ;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
22 ;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name>
23 ;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.com>
24 ;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
25 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
26 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
27 ;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
28 ;;; Copyright © 2017 nee <nee-git@hidamari.blue>
29 ;;; Copyright © 2017 Dave Love <fx@gnu.org>
30 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
31 ;;; Copyright © 2018 Brendan Tildesley <mail@brendan.scot>
32 ;;; Copyright © 2018 Manuel Graf <graf@init.at>
33 ;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
34 ;;; Copyright © 2018 Vasile Dumitrascu <va511e@yahoo.com>
35 ;;; Copyright © 2019 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
36 ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
37 ;;; Copyright © 2019 Stefan Stefanović <stefanx2ovic@gmail.com>
38 ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
40 ;;; This file is part of GNU Guix.
42 ;;; GNU Guix is free software; you can redistribute it and/or modify it
43 ;;; under the terms of the GNU General Public License as published by
44 ;;; the Free Software Foundation; either version 3 of the License, or (at
45 ;;; your option) any later version.
47 ;;; GNU Guix is distributed in the hope that it will be useful, but
48 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
49 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
50 ;;; GNU General Public License for more details.
52 ;;; You should have received a copy of the GNU General Public License
53 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
55 (define-module (gnu packages linux)
56 #:use-module (gnu packages)
57 #:use-module (gnu packages acl)
58 #:use-module (gnu packages admin)
59 #:use-module (gnu packages algebra)
60 #:use-module (gnu packages attr)
61 #:use-module (gnu packages audio)
62 #:use-module (gnu packages autotools)
63 #:use-module (gnu packages backup)
64 #:use-module (gnu packages base)
65 #:use-module (gnu packages bash)
66 #:use-module (gnu packages bison)
67 #:use-module (gnu packages calendar)
68 #:use-module (gnu packages check)
69 #:use-module (gnu packages crypto)
70 #:use-module (gnu packages cryptsetup)
71 #:use-module (gnu packages compression)
72 #:use-module (gnu packages dbm)
73 #:use-module (gnu packages datastructures)
74 #:use-module (gnu packages docbook)
75 #:use-module (gnu packages documentation)
76 #:use-module (gnu packages elf)
77 #:use-module (gnu packages flex)
78 #:use-module (gnu packages file)
79 #:use-module (gnu packages freedesktop)
80 #:use-module (gnu packages gcc)
81 #:use-module (gnu packages gettext)
82 #:use-module (gnu packages glib)
83 #:use-module (gnu packages golang)
84 #:use-module (gnu packages gperf)
85 #:use-module (gnu packages gtk)
86 #:use-module (gnu packages libunwind)
87 #:use-module (gnu packages libusb)
88 #:use-module (gnu packages man)
89 #:use-module (gnu packages maths)
90 #:use-module (gnu packages multiprecision)
91 #:use-module (gnu packages ncurses)
92 #:use-module (gnu packages netpbm)
93 #:use-module (gnu packages nettle)
94 #:use-module (gnu packages networking)
95 #:use-module (gnu packages ninja)
96 #:use-module (gnu packages nss)
97 #:use-module (gnu packages perl)
98 #:use-module (gnu packages pciutils)
99 #:use-module (gnu packages pkg-config)
100 #:use-module (gnu packages popt)
101 #:use-module (gnu packages pulseaudio)
102 #:use-module (gnu packages python)
103 #:use-module (gnu packages readline)
104 #:use-module (gnu packages rrdtool)
105 #:use-module (gnu packages samba)
106 #:use-module (gnu packages serialization)
107 #:use-module (gnu packages slang)
108 #:use-module (gnu packages texinfo)
109 #:use-module (gnu packages tls)
110 #:use-module (gnu packages valgrind)
111 #:use-module (gnu packages video)
112 #:use-module (gnu packages web)
113 #:use-module (gnu packages xiph)
114 #:use-module (gnu packages xml)
115 #:use-module (gnu packages xdisorg)
116 #:use-module (gnu packages xorg)
117 #:use-module (gnu packages groff)
118 #:use-module (gnu packages selinux)
119 #:use-module (gnu packages swig)
120 #:use-module (guix build-system cmake)
121 #:use-module (guix build-system gnu)
122 #:use-module (guix build-system go)
123 #:use-module (guix build-system python)
124 #:use-module (guix build-system trivial)
125 #:use-module (guix build-system linux-module)
126 #:use-module (guix download)
127 #:use-module (guix git-download)
128 #:use-module ((guix licenses) #:prefix license:)
129 #:use-module (guix packages)
130 #:use-module (guix gexp)
131 #:use-module (guix store)
132 #:use-module (guix monads)
133 #:use-module (guix utils)
134 #:use-module (srfi srfi-1)
135 #:use-module (srfi srfi-2)
136 #:use-module (srfi srfi-26)
137 #:use-module (ice-9 match))
139 (define-public (system->linux-architecture arch)
140 "Return the Linux architecture name for ARCH, a Guix system name such as
141 \"x86_64-linux\" or a target triplet such as \"arm-linux-gnueabihf\"."
142 (let ((arch (car (string-split arch #\-))))
143 (cond ((string=? arch "i686") "i386")
144 ((string-prefix? "mips" arch) "mips")
145 ((string-prefix? "arm" arch) "arm")
146 ((string-prefix? "aarch64" arch) "arm64")
147 ((string-prefix? "alpha" arch) "alpha")
148 ((string-prefix? "powerpc" arch) "powerpc") ;including "powerpc64le"
149 ((string-prefix? "s390" arch) "s390")
150 ((string-prefix? "riscv" arch) "riscv")
153 (define-public (system->defconfig system)
154 "Some systems (notably powerpc-linux) require a special target for kernel
155 defconfig. Return the appropriate make target if applicable, otherwise return
157 (cond ((string-prefix? "powerpc-" system) "pmac32_defconfig")
158 ((string-prefix? "powerpc64le-" system) "ppc64_defconfig")
163 ;;; Kernel source code deblobbing.
166 (define (linux-libre-deblob-scripts version
169 (list (version-major+minor version)
172 (uri (string-append "https://linux-libre.fsfla.org"
173 "/pub/linux-libre/releases/" version "-gnu/"
174 "deblob-" (version-major+minor version)))
175 (sha256 deblob-hash))
178 (uri (string-append "https://linux-libre.fsfla.org"
179 "/pub/linux-libre/releases/" version "-gnu/"
181 (sha256 deblob-check-hash))))
183 (define deblob-scripts-5.2
184 (linux-libre-deblob-scripts
186 (base32 "076fwxlm6jq6z4vg1xq3kr474zz7qk71r90sf9dnfia3rw2pb4fa")
187 (base32 "030cccchli7vnzvxcw261spyzsgnq0m113bjsz8y4vglf6gaz4n9")))
189 (define deblob-scripts-4.19
190 (linux-libre-deblob-scripts
192 (base32 "02zs405awaxydbapka4nz8h6lmnc0dahgczqsrs5s2bmzjyyqkcy")
193 (base32 "07z1bsyny8lldncfh27lb16mgx9r38nswx4vmd24c7n4xva12k2s")))
195 (define deblob-scripts-4.14
196 (linux-libre-deblob-scripts
198 (base32 "091jk9jkn9jf39bxpc7395bhcb7p96nkg3a8047380ki06lnfxh6")
199 (base32 "0x9nd3hnyrm753cbgdqmy92mbnyw86w64g4hvyibnkpq5n7s3z9n")))
201 (define deblob-scripts-4.9
202 (linux-libre-deblob-scripts
204 (base32 "1wvldzlv7q2xdbadas87dh593nxr4a8p5n0f8zpm72lja6w18hmg")
205 (base32 "1gmjn5cwxydg6qb47wcmahwkv37npsjx4papynzkkdxyidmrccya")))
207 (define deblob-scripts-4.4
208 (linux-libre-deblob-scripts
210 (base32 "0x2j1i88am54ih2mk7gyl79g25l9zz4r08xhl482l3fvjj2irwbw")
211 (base32 "1x40lbiaizksy8z38ax7wpqr9ldgq7qvkxbb0ca98vd1axpklb10")))
213 (define* (computed-origin-method gexp-promise hash-algo hash
214 #:optional (name "source")
215 #:key (system (%current-system))
216 (guile (default-guile)))
217 "Return a derivation that executes the G-expression that results
218 from forcing GEXP-PROMISE."
219 (mlet %store-monad ((guile (package->derivation guile system)))
220 (gexp->derivation (or name "computed-origin")
222 #:graft? #f ;nothing to graft
224 #:guile-for-build guile)))
226 (define (make-linux-libre-source version
229 "Return a 'computed' origin that generates a Linux-libre tarball from the
230 corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
231 (match deblob-scripts
232 ((deblob-version (? origin? deblob) (? origin? deblob-check))
233 (unless (string=? deblob-version (version-major+minor version))
234 ;; The deblob script cannot be expected to work properly on a
235 ;; different version (major+minor) of Linux, even if no errors
236 ;; are signaled during execution.
237 (error "deblob major+minor version mismatch"))
239 (method computed-origin-method)
240 (file-name (string-append "linux-libre-" version "-guix.tar.xz"))
244 (with-imported-modules '((guix build utils))
246 (use-modules (guix build utils)
250 (let ((dir (string-append "linux-" #$version)))
253 (set-path-environment-variable
256 #+(canonical-package bash)
257 #+(canonical-package coreutils)
258 #+(canonical-package diffutils)
259 #+(canonical-package findutils)
260 #+(canonical-package patch)
261 #+(canonical-package xz)
262 #+(canonical-package sed)
263 #+(canonical-package grep)
264 #+(canonical-package bzip2)
265 #+(canonical-package gzip)
266 #+(canonical-package tar)
267 ;; The comments in the 'deblob-check' script
268 ;; claim that it supports Python 2 and 3, but
269 ;; in fact it fails when run in Python 3 as
273 (with-directory-excursion "/tmp/bin"
275 (copy-file #+deblob "deblob")
276 (chmod "deblob" #o755)
277 (substitute* "deblob"
278 (("/bin/sh") (which "sh")))
280 (copy-file #+deblob-check "deblob-check")
281 (chmod "deblob-check" #o755)
282 (substitute* "deblob-check"
283 (("/bin/sh") (which "sh"))
284 (("/bin/sed") (which "sed"))
285 (("/usr/bin/python") (which "python"))))
287 (if (file-is-directory? #+upstream-source)
289 (format #t "Copying upstream linux source...~%")
291 (invoke "cp" "--archive" #+upstream-source dir)
292 (invoke "chmod" "--recursive" "u+w" dir))
294 (format #t "Unpacking upstream linux tarball...~%")
296 (invoke "tar" "xf" #$upstream-source)
299 (and (not (member name '("." "..")))
300 (file-is-directory? name))))
302 (unless (string=? dir unpacked-dir)
303 (rename-file unpacked-dir dir)))
305 (error "multiple directories found" dirs)))))
307 (with-directory-excursion dir
308 (setenv "PYTHON" (which "python"))
309 (format #t "Running deblob script...~%")
311 (invoke "/tmp/bin/deblob"))
313 (format #t "~%Packing new Linux-libre tarball...~%")
315 (invoke "tar" "cfa" #$output
316 ;; Avoid non-determinism in the archive.
329 (define (linux-libre-urls version)
330 "Return a list of URLs for Linux-Libre VERSION."
332 "https://linux-libre.fsfla.org/pub/linux-libre/releases/"
333 version "-gnu/linux-libre-" version "-gnu.tar.xz")
335 ;; XXX: Work around <http://bugs.gnu.org/14851>.
337 "ftp://alpha.gnu.org/gnu/guix/mirror/linux-libre-"
338 version "-gnu.tar.xz")
340 ;; Maybe this URL will become valid eventually.
342 "mirror://gnu/linux-libre/" version "-gnu/linux-libre-"
343 version "-gnu.tar.xz")))
345 (define (%upstream-linux-source version hash)
348 (uri (string-append "mirror://kernel.org"
349 "/linux/kernel/v" (version-major version) ".x/"
350 "linux-" version ".tar.xz"))
353 (define-public linux-libre-5.2-version "5.2.1")
354 (define-public linux-libre-5.2-pristine-source
355 (let ((version linux-libre-5.2-version)
356 (hash (base32 "01k5v3kdwk65cfx6bw4cl32jbfvf976jbya7q4a8lab3km7fi09m")))
357 (make-linux-libre-source version
358 (%upstream-linux-source version hash)
359 deblob-scripts-5.2)))
361 (define-public linux-libre-4.19-version "4.19.59")
362 (define-public linux-libre-4.19-pristine-source
363 (let ((version linux-libre-4.19-version)
364 (hash (base32 "0nxkr196q0b1hs3a3zavpsjp0jgbqmcwdf0y0f3hbpirshjiid5q")))
365 (make-linux-libre-source version
366 (%upstream-linux-source version hash)
367 deblob-scripts-4.19)))
369 (define-public linux-libre-4.14-version "4.14.134")
370 (define-public linux-libre-4.14-pristine-source
371 (let ((version linux-libre-4.14-version)
372 (hash (base32 "0b9xj1rwr5fpw2giirfghzxxc0wp1hwf4nqvalx314pxxysyf88b")))
373 (make-linux-libre-source version
374 (%upstream-linux-source version hash)
375 deblob-scripts-4.14)))
377 (define-public linux-libre-4.9-version "4.9.186")
378 (define-public linux-libre-4.9-pristine-source
379 (let ((version linux-libre-4.9-version)
380 (hash (base32 "0sjbp7m6d625rw06wv34a0805d1lgldii4pxiqfpja871m1q8914")))
381 (make-linux-libre-source version
382 (%upstream-linux-source version hash)
383 deblob-scripts-4.9)))
385 (define-public linux-libre-4.4-version "4.4.186")
386 (define-public linux-libre-4.4-pristine-source
387 (let ((version linux-libre-4.4-version)
388 (hash (base32 "113rjf8842glzi23y1g1yrwncihv2saah6wz0r726r06bk9p64hb")))
389 (make-linux-libre-source version
390 (%upstream-linux-source version hash)
391 deblob-scripts-4.4)))
393 (define %boot-logo-patch
394 ;; Linux-Libre boot logo featuring Freedo and a gnu.
397 (uri (string-append "http://www.fsfla.org/svn/fsfla/software/linux-libre/"
398 "lemote/gnewsense/branches/3.16/100gnu+freedo.patch"))
401 "1hk9swxxc80bmn2zd2qr5ccrjrk28xkypwhl4z0qx4hbivj7qm06"))))
403 (define %linux-libre-arm-export-__sync_icache_dcache-patch
407 "https://salsa.debian.org/kernel-team/linux"
408 "/raw/34a7d9011fcfcfa38b68282fd2b1a8797e6834f0"
409 "/debian/patches/bugfix/arm/"
410 "arm-mm-export-__sync_icache_dcache-for-xen-privcmd.patch"))
411 (file-name "linux-libre-arm-export-__sync_icache_dcache.patch")
413 (base32 "1ifnfhpakzffn4b8n7x7w5cps9mzjxlkcfz9zqak2vaw8nzvl39f"))))
415 (define (source-with-patches source patches)
418 (patches (append (origin-patches source)
421 (define-public linux-libre-5.2-source
422 (source-with-patches linux-libre-5.2-pristine-source
423 (list %boot-logo-patch
424 %linux-libre-arm-export-__sync_icache_dcache-patch)))
426 (define-public linux-libre-4.19-source
427 (source-with-patches linux-libre-4.19-pristine-source
428 (list %boot-logo-patch
429 %linux-libre-arm-export-__sync_icache_dcache-patch)))
431 (define-public linux-libre-4.14-source
432 (source-with-patches linux-libre-4.14-pristine-source
433 (list %boot-logo-patch)))
435 (define-public linux-libre-4.9-source
436 (source-with-patches linux-libre-4.9-pristine-source
437 (list %boot-logo-patch)))
439 (define-public linux-libre-4.4-source
440 (source-with-patches linux-libre-4.4-pristine-source
441 (list %boot-logo-patch)))
448 (define (make-linux-libre-headers version hash-string)
449 (make-linux-libre-headers* version
452 (uri (linux-libre-urls version))
453 (sha256 (base32 hash-string)))))
455 (define (make-linux-libre-headers* version source)
457 (name "linux-libre-headers")
460 (build-system gnu-build-system)
461 (native-inputs `(("perl" ,perl)
462 ,@(if (version>=? version "4.16")
467 `(#:modules ((guix build gnu-build-system)
471 (modify-phases %standard-phases
475 (let ((arch ,(system->linux-architecture
476 (or (%current-target-system)
478 (defconfig ,(system->defconfig
479 (or (%current-target-system)
480 (%current-system)))))
482 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
483 (invoke "make" defconfig)
484 (invoke "make" "mrproper" "headers_check"))))
486 (lambda* (#:key outputs #:allow-other-keys)
487 (let ((out (assoc-ref outputs "out")))
489 (string-append "INSTALL_HDR_PATH=" out)
492 (mkdir (string-append out "/include/config"))
493 (call-with-output-file
495 "/include/config/kernel.release")
497 (format p "~a-default~%" ,version)))
499 ;; Remove the '.install' and '..install.cmd' files; the
500 ;; latter contains store paths, which pulls in bootstrap
501 ;; binaries in the build environment, and prevents bit
502 ;; reproducibility for the bootstrap binaries.
503 (for-each delete-file (find-files out "\\.install"))
506 #:allowed-references ()
508 (home-page "https://www.gnu.org/software/linux-libre/")
509 (synopsis "GNU Linux-Libre kernel headers")
510 (description "Headers of the Linux-Libre kernel.")
511 (license license:gpl2)))
513 (define-public linux-libre-headers-5.2
514 (make-linux-libre-headers* linux-libre-5.2-version
515 linux-libre-5.2-source))
517 (define-public linux-libre-headers-4.19
518 (make-linux-libre-headers* linux-libre-4.19-version
519 linux-libre-4.19-source))
521 (define-public linux-libre-headers-4.14
522 (make-linux-libre-headers* linux-libre-4.14-version
523 linux-libre-4.14-source))
525 (define-public linux-libre-headers-4.9
526 (make-linux-libre-headers* linux-libre-4.9-version
527 linux-libre-4.9-source))
529 (define-public linux-libre-headers-4.4
530 (make-linux-libre-headers* linux-libre-4.4-version
531 linux-libre-4.4-source))
533 ;; The following package is used in the early bootstrap, and thus must be kept
534 ;; stable and with minimal build requirements.
535 (define-public linux-libre-headers-4.14.67
536 (make-linux-libre-headers "4.14.67"
537 "050zvdxjy6sc64q75pr1gxsmh49chwav2pwxz8xlif39bvahnrpg"))
539 (define-public linux-libre-headers linux-libre-headers-4.14.67)
543 ;;; Kernel configurations.
546 (define* (kernel-config arch #:key variant)
547 "Return the absolute file name of the Linux-Libre build configuration file
548 for ARCH and optionally VARIANT, or #f if there is no such configuration."
549 (let* ((name (string-append (if variant (string-append variant "-") "")
550 (if (string=? "i386" arch) "i686" arch) ".conf"))
551 (file (string-append "linux-libre/" name)))
552 (search-auxiliary-file file)))
554 ;; FIXME: merge into kernel-config
555 (define* (kernel-config-veyron arch #:key variant)
556 "Return the absolute file name of the Linux-Libre build configuration file
557 for ARCH and optionally VARIANT, or #f if there is no such configuration."
558 (let* ((name (string-append (if variant (string-append variant "-") "")
559 (if (string=? "i386" arch) "i686" arch) "-veyron.conf"))
560 (file (string-append "linux-libre/" name)))
561 (search-auxiliary-file file)))
563 (define %default-extra-linux-options
564 `(;; Modules required for initrd:
565 ("CONFIG_NET_9P" . m)
566 ("CONFIG_NET_9P_VIRTIO" . m)
567 ("CONFIG_VIRTIO_BLK" . m)
568 ("CONFIG_VIRTIO_NET" . m)
569 ("CONFIG_VIRTIO_PCI" . m)
570 ("CONFIG_VIRTIO_BALLOON" . m)
571 ("CONFIG_VIRTIO_MMIO" . m)
572 ("CONFIG_FUSE_FS" . m)
574 ("CONFIG_9P_FS" . m)))
576 (define (config->string options)
577 (string-join (map (match-lambda
579 (string-append option "=m"))
581 (string-append option "=y"))
583 (string-append option "=n")))
589 ;;; Kernel package utilities.
592 (define* (make-linux-libre version hash-string supported-systems
594 ;; A function that takes an arch and a variant.
595 ;; See kernel-config for an example.
597 (configuration-file #f)
598 (defconfig "defconfig")
599 (extra-options %default-extra-linux-options)
600 (patches (list %boot-logo-patch)))
601 (make-linux-libre* version
604 (uri (linux-libre-urls version))
605 (sha256 (base32 hash-string))
608 #:extra-version extra-version
609 #:configuration-file configuration-file
610 #:defconfig defconfig
611 #:extra-options extra-options))
613 (define* (make-linux-libre* version source supported-systems
615 ;; A function that takes an arch and a variant.
616 ;; See kernel-config for an example.
618 (configuration-file #f)
619 (defconfig "defconfig")
620 (extra-options %default-extra-linux-options))
622 (name (if extra-version
623 (string-append "linux-libre-" extra-version)
627 (supported-systems supported-systems)
628 (build-system gnu-build-system)
634 ("elfutils" ,elfutils) ; Needed to enable CONFIG_STACK_VALIDATION
638 ;; Build with GCC-7 for full retpoline support.
639 ;; FIXME: Remove this when our default compiler has retpoline support.
642 ;; These are needed to compile the GCC plugins.
647 ,@(match (and configuration-file
649 (system->linux-architecture
650 (or (%current-target-system) (%current-system)))
651 #:variant (version-major+minor version)))
652 (#f ;no config for this platform
655 `(("kconfig" ,config))))))
657 `(#:modules ((guix build gnu-build-system)
662 (modify-phases %standard-phases
663 (add-after 'unpack 'patch-/bin/pwd
665 (substitute* (find-files "." "^Makefile(\\.include)?$")
666 (("/bin/pwd") "pwd"))
669 (lambda* (#:key inputs native-inputs target #:allow-other-keys)
670 ;; Avoid introducing timestamps
671 (setenv "KCONFIG_NOTIMESTAMP" "1")
672 (setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH"))
674 ;; Set ARCH and CROSS_COMPILE
675 (let ((arch ,(system->linux-architecture
676 (or (%current-target-system)
677 (%current-system)))))
679 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
682 (setenv "CROSS_COMPILE" (string-append target "-"))
683 (format #t "`CROSS_COMPILE' set to `~a'~%"
684 (getenv "CROSS_COMPILE"))))
686 (setenv "EXTRA_VERSION" ,extra-version)
688 (let ((build (assoc-ref %standard-phases 'build))
689 (config (assoc-ref (or native-inputs inputs) "kconfig")))
691 ;; Use a custom kernel configuration file or a default
692 ;; configuration file.
695 (copy-file config ".config")
696 (chmod ".config" #o666))
697 (invoke "make" ,defconfig))
699 ;; Appending works even when the option wasn't in the
700 ;; file. The last one prevails if duplicated.
701 (let ((port (open-file ".config" "a"))
702 (extra-configuration ,(config->string extra-options)))
703 (display extra-configuration port)
706 (invoke "make" "oldconfig"))))
708 (lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
709 (let* ((out (assoc-ref outputs "out"))
710 (moddir (string-append out "/lib/modules"))
711 (dtbdir (string-append out "/lib/dtbs"))
712 (kmod (assoc-ref (or native-inputs inputs) "kmod")))
713 ;; Install kernel image, kernel configuration and link map.
714 (for-each (lambda (file) (install-file file out))
715 (find-files "." "^(\\.config|bzImage|zImage|Image|vmlinuz|System\\.map|Module\\.symvers)$"))
716 ;; Install device tree files
717 (unless (null? (find-files "." "\\.dtb$"))
719 (invoke "make" (string-append "INSTALL_DTBS_PATH=" dtbdir)
721 ;; Install kernel modules
724 (string-append "DEPMOD=" kmod "/bin/depmod")
725 (string-append "MODULE_DIR=" moddir)
726 (string-append "INSTALL_PATH=" out)
727 (string-append "INSTALL_MOD_PATH=" out)
728 "INSTALL_MOD_STRIP=1"
729 "modules_install")))))
731 (home-page "https://www.gnu.org/software/linux-libre/")
732 (synopsis "100% free redistribution of a cleaned Linux kernel")
734 "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.
735 It has been modified to remove all non-free binary blobs.")
736 (license license:gpl2)))
740 ;;; Generic kernel packages.
743 (define-public linux-libre-5.2
744 (make-linux-libre* linux-libre-5.2-version
745 linux-libre-5.2-source
746 '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux")
747 #:configuration-file kernel-config))
749 (define-public linux-libre-version linux-libre-5.2-version)
750 (define-public linux-libre-pristine-source linux-libre-5.2-pristine-source)
751 (define-public linux-libre-source linux-libre-5.2-source)
752 (define-public linux-libre linux-libre-5.2)
754 (define-public linux-libre-4.19
755 (make-linux-libre* linux-libre-4.19-version
756 linux-libre-4.19-source
757 '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux")
758 #:configuration-file kernel-config))
760 (define-public linux-libre-4.14
761 (make-linux-libre* linux-libre-4.14-version
762 linux-libre-4.14-source
763 '("x86_64-linux" "i686-linux" "armhf-linux")
764 #:configuration-file kernel-config))
766 (define-public linux-libre-4.9
767 (make-linux-libre* linux-libre-4.9-version
768 linux-libre-4.9-source
769 '("x86_64-linux" "i686-linux")
770 #:configuration-file kernel-config))
772 (define-public linux-libre-4.4
773 (make-linux-libre* linux-libre-4.4-version
774 linux-libre-4.4-source
775 '("x86_64-linux" "i686-linux")
776 #:configuration-file kernel-config
779 `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html
780 ;; This option was removed upstream in version 4.7.
781 ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t))
782 %default-extra-linux-options)))
786 ;;; Specialized kernel variants.
789 (define-public linux-libre-arm-veyron
790 (make-linux-libre* linux-libre-version
793 #:configuration-file kernel-config-veyron
794 #:extra-version "arm-veyron"))
796 (define-public linux-libre-arm-generic
797 (make-linux-libre* linux-libre-version
800 #:defconfig "multi_v7_defconfig"
801 #:extra-version "arm-generic"))
803 (define-public linux-libre-arm-generic-4.19
804 (make-linux-libre* linux-libre-4.19-version
805 linux-libre-4.19-source
807 #:defconfig "multi_v7_defconfig"
808 #:extra-version "arm-generic"))
810 (define-public linux-libre-arm-generic-4.14
811 (make-linux-libre* linux-libre-4.14-version
812 linux-libre-4.14-source
814 #:defconfig "multi_v7_defconfig"
815 #:extra-version "arm-generic"))
817 (define-public linux-libre-arm-omap2plus
818 (make-linux-libre* linux-libre-version
821 #:defconfig "omap2plus_defconfig"
822 #:extra-version "arm-omap2plus"))
824 (define-public linux-libre-arm-omap2plus-4.19
825 (make-linux-libre* linux-libre-4.19-version
826 linux-libre-4.19-source
828 #:defconfig "omap2plus_defconfig"
829 #:extra-version "arm-omap2plus"))
831 (define-public linux-libre-arm-omap2plus-4.14
832 (make-linux-libre* linux-libre-4.14-version
833 linux-libre-4.14-source
835 #:defconfig "omap2plus_defconfig"
836 #:extra-version "arm-omap2plus"))
840 ;;; Linux kernel modules.
843 (define-public acpi-call-linux-module
845 (name "acpi-call-linux-module")
851 (url "https://github.com/teleshoes/acpi_call.git")
853 (file-name (git-file-name name version))
855 (base32 "04mbv4lasm3vv1j4ndxhnz4hvp5wg8f5fc9q6qxv0nhvwjynmsl3"))))
856 (build-system linux-module-build-system)
858 `(#:tests? #f ; no tests
860 (modify-phases %standard-phases
861 (add-after 'unpack 'fix-for-linux-4.12
863 (substitute* "acpi_call.c"
867 (add-after 'install 'install-documentation
868 (lambda* (#:key outputs #:allow-other-keys)
869 (let* ((out (assoc-ref outputs "out"))
870 (doc (string-append out "/share/doc/" ,name "-" ,version)))
871 (for-each (lambda (file)
872 (let ((target (string-append doc "/" file)))
873 (mkdir-p (dirname target))
874 (copy-recursively file target)))
875 (list "README.md" "examples"))
877 (home-page "https://github.com/teleshoes/acpi_call")
878 (synopsis "Linux kernel module to perform ACPI method calls")
880 "This simple Linux kernel module allows calls from user space to any
881 @acronym{ACPI, Advanced Configuration and Power Interface} method provided by
882 your computer's firmware, by writing to @file{/proc/acpi/call}. You can pass
883 any number of parameters of types @code{ACPI_INTEGER}, @code{ACPI_STRING},
884 and @code{ACPI_BUFFER}.
886 It grants direct and undocumented access to your hardware that may cause damage
887 and should be used with caution, especially on untested models.")
888 (license license:gpl3+))) ; see README.md (no licence headers)
890 (define-public vhba-module
897 "http://downloads.sourceforge.net/cdemu/vhba-module/vhba-module-"
901 "1513hq130raxp9z5grj54cwfjfxj05apipxg425j0zicii59a60c"))))
902 (build-system linux-module-build-system)
906 (home-page "https://cdemu.sourceforge.io/")
907 (synopsis "Kernel module that emulates SCSI devices")
908 (description "VHBA module provides a Virtual (SCSI) HBA, which is the link
909 between the CDemu userspace daemon and linux kernel.")
910 (license license:gpl2+)))
914 ;;; Pluggable authentication modules (PAM).
917 (define-public linux-pam
925 "https://github.com/linux-pam/linux-pam/releases/download/v"
926 version "/Linux-PAM-" version ".tar.xz"))
929 "1nyh9kdi3knhxcbv5v4snya0g3gff0m671lnvqcbygw3rm77mx7g"))
930 (patches (search-patches "linux-pam-no-setfsuid.patch"))))
932 (build-system gnu-build-system)
936 ;; TODO: optional dependencies
937 ;; ("libxcrypt" ,libxcrypt)
938 ;; ("cracklib" ,cracklib)
941 `(;; Most users, such as `shadow', expect the headers to be under
943 #:configure-flags (list (string-append "--includedir="
944 (assoc-ref %outputs "out")
947 ;; XXX: <rpc/rpc.h> is missing from glibc when
948 ;; cross-compiling, so we have to disable NIS
949 ;; support altogether.
950 ,@(if (%current-target-system)
954 ;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
957 (home-page "http://www.linux-pam.org/")
958 (synopsis "Pluggable authentication modules for Linux")
960 "A *Free* project to implement OSF's RFC 86.0.
961 Pluggable authentication modules are small shared object files that can
962 be used through the PAM API to perform tasks, like authenticating a user
963 at login. Local and dynamic reconfiguration are its key features.")
964 (license license:bsd-3)))
966 (define-public linux-pam-1.2
974 "http://www.linux-pam.org/library/"
975 "Linux-PAM-" version ".tar.bz2"))
978 "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl"))
979 (patches (search-patches "linux-pam-no-setfsuid.patch"))))))
986 (define-public psmisc
993 (uri (string-append "mirror://sourceforge/psmisc/psmisc devel/psmisc-"
997 "0s1kjhrik0wzqbm7hv4gkhywhjrwhp9ajw0ad05fwharikk6ah49"))))
998 (build-system gnu-build-system)
999 (inputs `(("ncurses" ,ncurses)))
1000 (home-page "https://gitlab.com/psmisc/psmisc")
1002 "Small utilities that use the proc file system")
1004 "This PSmisc package is a set of some small useful utilities that
1005 use the proc file system. We're not about changing the world, but
1006 providing the system administrator with some help in common tasks.")
1007 (license license:gpl2+)))
1009 (define-public util-linux
1015 (uri (string-append "mirror://kernel.org/linux/utils/"
1016 name "/v" (version-major+minor version) "/"
1017 name "-" version ".tar.xz"))
1020 "1ck7d8srw5szpjq7v0gpmjahnjs6wgqzm311ki4gazww6xx71rl6"))
1021 (patches (search-patches "util-linux-tests.patch"))
1022 (modules '((guix build utils)))
1024 ;; We take 'nologin' from Shadow, the 'logger' program from
1025 ;; GNU Inetutils and 'kill' from GNU Coreutils.
1027 (substitute* "configure"
1028 (("build_nologin=yes") "build_nologin=no")
1029 (("build_logger=yes") "build_logger=no")
1030 (("build_kill=yes") "build_kill=no"))
1032 (build-system gnu-build-system)
1034 "static")) ; >2 MiB of static .a libraries
1036 `(#:configure-flags (list "--disable-use-tty-group"
1037 "--enable-fs-paths-default=/run/current-system/profile/sbin"
1038 ;; Don't try to chown root:root mount and umount
1039 "--disable-makeinstall-chown"
1040 ;; Install completions where our
1041 ;; bash-completion package expects them.
1042 (string-append "--with-bashcompletiondir="
1043 (assoc-ref %outputs "out")
1044 "/etc/bash_completion.d"))
1045 #:phases (modify-phases %standard-phases
1047 'build 'set-umount-file-name
1048 (lambda* (#:key outputs #:allow-other-keys)
1049 ;; Tell 'eject' the right file name of 'umount'.
1050 (let ((out (assoc-ref outputs "out")))
1051 (substitute* "sys-utils/eject.c"
1052 (("\"/bin/umount\"")
1053 (string-append "\"" out "/bin/umount\"")))
1057 (lambda* (#:key inputs outputs #:allow-other-keys)
1058 (let ((out (assoc-ref outputs "out"))
1059 (net (assoc-ref inputs "net-base")))
1060 ;; Change the test to refer to the right file.
1061 (substitute* "tests/ts/misc/mcookie"
1063 (string-append net "/etc/services")))
1066 'install 'move-static-libraries
1067 (lambda* (#:key outputs #:allow-other-keys)
1068 (let ((out (assoc-ref outputs "out"))
1069 (static (assoc-ref outputs "static")))
1070 (mkdir-p (string-append static "/lib"))
1071 (with-directory-excursion out
1072 (for-each (lambda (file)
1074 (string-append static "/"
1076 (find-files "lib" "\\.a$"))
1078 ;; Remove references to the static library from the '.la'
1079 ;; files so that Libtool does the right thing when both
1080 ;; the shared and static library is available.
1081 (substitute* (find-files "lib" "\\.la$")
1082 (("old_library=.*") "old_library=''\n")))
1085 (inputs `(("zlib" ,zlib)
1086 ("ncurses" ,ncurses)
1088 ;; XXX: This is so that the 'pre-check' phase can find it.
1089 ,@(if (%current-target-system)
1090 `(("net-base" ,net-base))
1094 ("net-base" ,net-base))) ;for tests
1095 (home-page "https://www.kernel.org/pub/linux/utils/util-linux/")
1096 (synopsis "Collection of utilities for the Linux kernel")
1097 (description "Util-linux is a diverse collection of Linux kernel
1098 utilities. It provides dmesg and includes tools for working with file systems,
1099 block devices, UUIDs, TTYs, and many other tools.")
1101 ;; Note that util-linux doesn't use the same license for all the
1102 ;; code. GPLv2+ is the default license for a code without an
1103 ;; explicitly defined license.
1104 (license (list license:gpl3+ license:gpl2+ license:gpl2 license:lgpl2.0+
1105 license:bsd-4 license:public-domain))))
1107 (define-public ddate
1113 (uri (string-append "https://github.com/bo0ts/ddate/archive/v"
1115 (file-name (string-append name "-" version ".tar.gz"))
1117 (base32 "1bbqqq8mswj4bp9083gxjaky5ysfznax4cynsqwmy125z053yg6m"))))
1118 (build-system cmake-build-system)
1119 (arguments '(#:tests? #f))
1120 (home-page "https://github.com/bo0ts/ddate")
1121 (synopsis "PERPETUAL DATE CONVERTER FROM GREGORIAN TO POEE CALENDAR")
1123 "ddate displays the Discordian date and holidays of a given date.
1124 The Discordian calendar was made popular by the \"Illuminatus!\" trilogy
1125 by Robert Shea and Robert Anton Wilson.")
1126 (license license:public-domain)))
1128 (define-public procps
1134 (uri (string-append "mirror://sourceforge/procps-ng/Production/"
1135 "procps-ng-" version ".tar.xz"))
1138 "0r84kwa5fl0sjdashcn4vh7hgfm7ahdcysig3mcjvpmkzi7p9g8h"))))
1139 (build-system gnu-build-system)
1141 '(#:modules ((guix build utils)
1142 (guix build gnu-build-system)
1146 (modify-phases %standard-phases
1148 'install 'post-install
1149 ;; Remove commands and man pages redudant with
1151 (lambda* (#:key outputs #:allow-other-keys)
1152 (let* ((out (assoc-ref outputs "out"))
1153 (dup (append-map (cut find-files out <>)
1154 '("^kill" "^uptime"))))
1155 (for-each delete-file dup)
1157 (inputs `(("ncurses" ,ncurses)))
1158 (home-page "https://gitlab.com/procps-ng/procps/")
1159 (synopsis "Utilities that give information about processes")
1161 "Procps is the package that has a bunch of small useful utilities
1162 that give information about processes using the Linux /proc file system.
1163 The package includes the programs ps, top, vmstat, w, kill, free,
1164 slabtop, and skill.")
1165 (license license:gpl2)))
1167 (define-public usbutils
1174 (uri (string-append "mirror://kernel.org/linux/utils/usb/usbutils/"
1175 "usbutils-" version ".tar.xz"))
1177 (base32 "0iiy0q7fzikavmdsjsb0sl9kp3gfh701qwyjjccvqh0qz4jlcqw8"))))
1178 (build-system gnu-build-system)
1179 (outputs (list "out" "python"))
1182 (modify-phases %standard-phases
1183 (add-before 'bootstrap 'patch-bootstrap-scripts
1185 (substitute* "usbhid-dump/bootstrap"
1186 (("/bin/bash") (which "bash")))
1188 ;; Don't let autogen.sh run configure with bogus options & CFLAGS.
1189 (substitute* "autogen.sh"
1190 (("^\\./configure.*") ""))
1192 (add-after 'install 'separate-python-output
1193 ;; Separating one Python script shaves more than 106 MiB from :out.
1194 (lambda* (#:key outputs #:allow-other-keys)
1195 (let ((out (assoc-ref outputs "out"))
1196 (out:python (assoc-ref outputs "python")))
1197 (for-each (lambda (file)
1198 (let ((old (string-append out "/" file))
1199 (new (string-append out:python "/" file)))
1200 (mkdir-p (dirname new))
1201 (rename-file old new)))
1202 (list "bin/lsusb.py"))
1207 ("python" ,python)))
1209 `(("autoconf" ,autoconf)
1210 ("automake" ,automake)
1211 ("libtool" ,libtool)
1212 ("pkg-config" ,pkg-config)))
1213 (home-page "http://www.linux-usb.org/")
1215 "Tools for working with USB devices, such as lsusb")
1217 "Tools for working with USB devices, such as lsusb.")
1218 (license license:gpl2+)))
1220 (define-public e2fsprogs
1227 "mirror://kernel.org/linux/kernel/people/tytso/"
1228 name "/v" version "/"
1229 name "-" version ".tar.xz"))
1232 "02g0cm72sgz709s9pkg4mvj56m7bgs7rwnyc2cp7cvg3j6pcjlj9"))))
1233 (build-system gnu-build-system)
1234 (inputs `(("util-linux" ,util-linux)))
1235 (native-inputs `(("pkg-config" ,pkg-config)
1236 ("texinfo" ,texinfo) ;for the libext2fs Info manual
1240 ("procps" ,procps)))
1242 '(;; util-linux is the preferred source for some of the libraries and
1243 ;; commands, so disable them (see, e.g.,
1244 ;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b33633>.)
1245 #:configure-flags (list "--disable-libblkid"
1246 "--disable-libuuid" "--disable-uuidd"
1249 ;; Use symlinks instead of hard links for
1250 ;; 'fsck.extN' etc. This makes the resulting nar
1251 ;; smaller and is preserved across copies.
1252 "--enable-symlink-install"
1254 (string-append "LDFLAGS=-Wl,-rpath="
1255 (assoc-ref %outputs "out")
1258 ;; Install libext2fs et al.
1259 "--enable-elf-shlibs")
1262 (modify-phases %standard-phases
1263 (add-before 'configure 'patch-shells
1265 (substitute* "configure"
1266 (("/bin/sh (.*)parse-types.sh" _ dir)
1267 (string-append (which "sh") " " dir
1269 (substitute* "MCONFIG.in"
1270 (("INSTALL_SYMLINK = /bin/sh")
1271 "INSTALL_SYMLINK = sh"))
1272 (substitute* (find-files "." "^Makefile.in$")
1274 (string-append "#!" (which "sh"))))
1276 (add-after 'install 'install-libs
1277 (lambda* (#:key outputs #:allow-other-keys)
1278 (let* ((out (assoc-ref outputs "out"))
1279 (lib (string-append out "/lib")))
1280 (invoke "make" "install-libs")
1282 ;; Make the .a writable so that 'strip' works.
1283 ;; Failing to do that, due to debug symbols, we
1284 ;; retain a reference to the final
1285 ;; linux-libre-headers, which refer to the
1286 ;; bootstrap binaries.
1287 (let ((archives (find-files lib "\\.a$")))
1288 (for-each (lambda (file)
1292 (home-page "http://e2fsprogs.sourceforge.net/")
1293 (synopsis "Creating and checking ext2/ext3/ext4 file systems")
1295 "This package provides tools for manipulating ext2/ext3/ext4 file systems.")
1296 (license (list license:gpl2 ;programs
1297 license:lgpl2.0 ;libext2fs
1298 license:x11)))) ;libuuid
1300 (define e2fsprogs/static
1302 (package (inherit e2fsprogs)
1304 ;; Do not build shared libraries.
1305 (substitute-keyword-arguments (package-arguments e2fsprogs)
1306 ((#:configure-flags _)
1307 '(list "--disable-blkid"))
1311 (define-public e2fsck/static
1313 (name "e2fsck-static")
1314 (version (package-version e2fsprogs))
1315 (build-system trivial-build-system)
1318 `(("e2fsprogs" ,e2fsprogs/static)))
1320 `(#:modules ((guix build utils))
1323 (use-modules (guix build utils)
1327 (let ((e2fsck (string-append (assoc-ref %build-inputs "e2fsprogs")
1329 (bin (string-append (assoc-ref %outputs "out") "/sbin")))
1331 (with-directory-excursion bin
1332 (copy-file e2fsck "e2fsck")
1333 (remove-store-references "e2fsck")
1334 (chmod "e2fsck" #o555))
1336 (home-page (package-home-page e2fsprogs))
1337 (synopsis "Statically-linked e2fsck command from e2fsprogs")
1338 (description "This package provides statically-linked e2fsck command taken
1339 from the e2fsprogs package. It is meant to be used in initrds.")
1340 (license (package-license e2fsprogs))))
1342 (define-public extundelete
1344 (name "extundelete")
1349 (uri (string-append "mirror://sourceforge/extundelete/"
1350 "extundelete/" version "/extundelete-"
1351 version ".tar.bz2"))
1354 "1x0r7ylxlp9lbj3d7sqf6j2a222dwy2nfpff05jd6mkh4ihxvyd1"))
1355 (patches (search-patches "extundelete-e2fsprogs-1.44.patch"))))
1356 (build-system gnu-build-system)
1357 (inputs `(("e2fsprogs" ,e2fsprogs)))
1358 (home-page "http://extundelete.sourceforge.net/")
1359 (synopsis "Recover deleted files from ext2/3/4 partitions")
1361 "Extundelete is a set of tools that can recover deleted files from an
1362 ext3 or ext4 partition.")
1363 (license license:gpl2)))
1365 (define-public zerofree
1369 (home-page "https://frippery.org/uml/")
1372 (uri (string-append home-page name "-" version
1376 "0rrqfa5z103ws89vi8kfvbks1cfs74ix6n1wb6vs582vnmhwhswm"))))
1377 (build-system gnu-build-system)
1380 (modify-phases %standard-phases
1381 (delete 'configure) ; no configure script
1383 ;; The Makefile lacks an ‘install’ target.
1384 (lambda* (#:key outputs #:allow-other-keys)
1385 (let* ((out (assoc-ref outputs "out"))
1386 (bin (string-append out "/bin")))
1387 (chmod "zerofree" #o555)
1388 (install-file "zerofree" bin)
1390 #:tests? #f)) ; no tests
1391 (inputs `(("libext2fs" ,e2fsprogs)))
1392 (synopsis "Zero non-allocated regions in ext2/ext3/ext4 file systems")
1394 "Zerofree finds the unallocated blocks with non-zero value content in an
1395 ext2, ext3, or ext4 file system and fills them with zeroes (or another value).
1396 This is a simple way to make disk images more compressible.
1397 Zerofree requires the file system to be unmounted or mounted read-only.")
1398 (license license:gpl2)))
1400 (define-public strace
1404 (home-page "https://strace.io")
1407 (uri (string-append home-page "/files/" version
1408 "/strace-" version ".tar.xz"))
1411 "12wsga1v3rab24gr0mpfip7j7gwr90m8f9h6fviqxa3xgnwl38zm"))))
1412 (build-system gnu-build-system)
1415 (modify-phases %standard-phases
1416 (add-after 'unpack 'patch-/bin/sh
1418 (substitute* "strace.c"
1419 (("/bin/sh") (which "sh")))
1421 ;; Don't fail if the architecture doesn't support different personalities.
1422 #:configure-flags '("--enable-mpers=check")
1423 ;; See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32459>.
1424 #:parallel-tests? #f)) ; undeterministic failures
1425 (native-inputs `(("perl" ,perl)))
1426 (synopsis "System call tracer for Linux")
1428 "strace is a system call tracer, i.e. a debugging tool which prints out a
1429 trace of all the system calls made by a another process/program.")
1430 (license license:lgpl2.1+)))
1432 (define-public ltrace
1438 (uri (string-append "http://www.ltrace.org/ltrace_" version
1442 "00wmbdghqbz6x95m1mcdd3wd46l6hgcr4wggdp049dbifh3qqvqf"))))
1443 (build-system gnu-build-system)
1444 (inputs `(("libelf" ,libelf)))
1446 ;; Compilation uses -Werror by default, but it fails.
1447 '(#:configure-flags '("--disable-werror")))
1448 (home-page "https://www.ltrace.org/")
1449 (synopsis "Library call tracer for Linux")
1451 "ltrace intercepts and records dynamic library calls which are called by
1452 an executed process and the signals received by that process. It can also
1453 intercept and print the system calls executed by the program.")
1454 (license license:gpl2+)))
1456 (define-public alsa-lib
1463 "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-"
1464 version ".tar.bz2"))
1467 "0jwr9g4yxg9gj6xx0sb2r6wrdl8amrjd19hilkrq4rirynp770s8"))))
1468 (build-system gnu-build-system)
1469 (home-page "https://www.alsa-project.org/")
1470 (synopsis "The Advanced Linux Sound Architecture libraries")
1472 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1473 MIDI functionality to the Linux-based operating system.")
1474 (license license:lgpl2.1+)))
1476 (define-public alsa-utils
1482 (uri (string-append "ftp://ftp.alsa-project.org/pub/utils/"
1483 name "-" version ".tar.bz2"))
1486 "0fi11b7r8hg1bdjw74s8sqx8rc4qb310jaj9lsia9labvfyjrpsx"))))
1487 (build-system gnu-build-system)
1489 ;; XXX: Disable man page creation until we have DocBook.
1490 '(#:configure-flags (list "--disable-xmlto"
1492 ;; The udev rule is responsible for restoring
1494 (string-append "--with-udev-rules-dir="
1495 (assoc-ref %outputs "out")
1496 "/lib/udev/rules.d"))
1498 (modify-phases %standard-phases
1499 (add-before 'check 'disable-broken-test
1501 ;; XXX: The 1.1.8 release tarball is missing a header that's
1502 ;; required for this test to work. Fixed in 1.1.9.
1503 (substitute* "axfer/test/Makefile"
1504 ((".*container-test.*") ""))
1507 'install 'pre-install
1509 ;; Don't try to mkdir /var/lib/alsa.
1510 (substitute* "Makefile"
1511 (("\\$\\(MKDIR_P\\) .*ASOUND_STATE_DIR.*")
1515 `(("libsamplerate" ,libsamplerate)
1516 ("ncurses" ,ncurses)
1517 ("alsa-lib" ,alsa-lib)
1519 ("gettext" ,gettext-minimal)))
1520 (home-page "http://www.alsa-project.org/")
1521 (synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)")
1523 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1524 MIDI functionality to the Linux-based operating system.")
1526 ;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are
1528 (license license:gpl2)))
1530 (define-public alsa-plugins
1532 (name "alsa-plugins")
1536 (uri (string-append "ftp://ftp.alsa-project.org/pub/plugins/"
1537 name "-" version ".tar.bz2"))
1540 "01zrg0h2jw9dlj9233vjsn916yf4f2s667yry6xsn8d57lq745qn"))))
1541 (build-system gnu-build-system)
1542 ;; TODO: Split libavcodec and speex if possible. It looks like they can not
1543 ;; be split, there are references to both in files.
1544 ;; TODO: Remove OSS related plugins, they add support to run native
1545 ;; ALSA applications on OSS however we do not offer OSS and OSS is
1547 (outputs '("out" "pulseaudio" "jack"))
1549 `(#:configure-flags '(;; Do not install a "local" configuration targeted
1550 ;; for /etc/alsa. On Guix System plugins are loaded from
1551 ;; the ALSA service, and other distributions likely
1552 ;; won't use these files.
1553 "--with-alsalconfdir=/tmp/noop")
1555 (modify-phases %standard-phases
1556 (add-after 'install 'split
1557 (lambda* (#:key inputs outputs #:allow-other-keys)
1558 ;; Distribute the binaries to the various outputs.
1559 (let* ((out (assoc-ref outputs "out"))
1560 (jack (assoc-ref outputs "jack"))
1561 (jacklib (string-append jack "/lib/alsa-lib"))
1562 (pua (assoc-ref outputs "pulseaudio"))
1563 (pualib (string-append pua "/lib/alsa-lib")))
1566 (for-each (lambda (file)
1567 (rename-file file (string-append jacklib "/" (basename file))))
1568 (find-files out ".*jack\\.(la|so)"))
1571 (for-each (lambda (file)
1572 (rename-file file (string-append pualib "/" (basename file))))
1573 (find-files out ".*pulse\\.(la|so)"))
1576 `(("alsa-lib" ,alsa-lib)
1578 ("speex" ,speex) ; libspeexdsp resampling plugin
1579 ("libsamplerate" ,libsamplerate) ; libsamplerate resampling plugin
1580 ("ffmpeg" ,ffmpeg) ; libavcodec resampling plugin, a52 plugin
1581 ("pulseaudio" ,pulseaudio))) ; PulseAudio plugin
1583 `(("pkg-config" ,pkg-config)))
1584 (home-page "http://www.alsa-project.org/")
1585 (synopsis "Plugins for the Advanced Linux Sound Architecture (ALSA)")
1587 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1588 MIDI functionality to the Linux-based operating system. This package enhances ALSA
1589 by providing additional plugins which include: upmixing, downmixing, jackd and
1590 pulseaudio support for native alsa applications, format conversion (s16 to a52), and
1591 external rate conversion.")
1592 (license (list license:gpl2+
1593 ;; `rate/rate_samplerate.c': LGPL v2.1 or later.
1594 license:lgpl2.1+))))
1596 (define-public iptables
1603 "mirror://netfilter.org/iptables/iptables-"
1604 version ".tar.bz2"))
1607 "0crp0lvh5m2f15pr8cw97h8yb8zjj10x95zj06j46cr68vx2vl2m"))))
1608 (build-system gnu-build-system)
1610 `(("pkg-config" ,pkg-config)
1614 `(("libmnl" ,libmnl)
1615 ("libnftnl" ,libnftnl)))
1617 '(#:tests? #f ; no test suite
1618 #:configure-flags ; add $libdir to the RUNPATH of executables
1619 (list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))))
1620 (home-page "https://www.netfilter.org/projects/iptables/index.html")
1621 (synopsis "Programs to configure Linux IP packet filtering rules")
1623 "@command{iptables} is the user-space command line program used to
1624 configure the Linux 2.4.x and later IPv4 packet filtering ruleset
1625 (@dfn{firewall}), including @dfn{NAT} (Network Address Translation).
1627 This package also includes @command{ip6tables}, which is used to configure the
1630 Both commands are targeted at system administrators.")
1631 (license license:gpl2+)))
1633 (define-public ebtables
1636 (version "2.0.10-4")
1640 "mirror://netfilter.org/ebtables/ebtables-v"
1644 "0pa5ljlk970yfyhpf3iqwfpbc30j8mgn90fapw9cfz909x47nvyw"))))
1645 (build-system gnu-build-system)
1647 '(#:tests? #f ; no test suite
1649 (let* ((out (assoc-ref %outputs "out"))
1650 (bin (string-append out "/sbin"))
1651 (lib (string-append out "/lib"))
1652 (man (string-append out "/share/man"))
1653 (iptables (assoc-ref %build-inputs "iptables"))
1654 (ethertypes (string-append iptables "/etc/ethertypes")))
1655 (list (string-append "LIBDIR=" lib)
1656 (string-append "MANDIR=" man)
1657 (string-append "BINDIR=" bin)
1658 (string-append "ETHERTYPESFILE=" ethertypes)
1659 ;; With the default CFLAGS, it falis with:
1660 ;; communication.c:259:58: error: variable ‘ret’ set but not
1661 ;; used [-Werror=unused-but-set-variable]
1664 (modify-phases %standard-phases
1666 ;; no configure script
1668 (substitute* "Makefile"
1669 ;; Remove user and group options from install commands,
1670 ;; otherwise it fails with: invalid user 'root'.
1671 (("-o root -g root") "")
1672 ;; Remove 'ethertypes' from the install target.
1674 "install: $(MANDIR)/man8/ebtables.8 exec scripts\n"))
1678 ("iptables" ,iptables)))
1679 (synopsis "Ethernet bridge frame table administration")
1680 (home-page "http://ebtables.netfilter.org/")
1682 "ebtables is an application program used to set up and maintain the
1683 tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is
1684 analogous to the iptables application, but less complicated, due to the fact
1685 that the Ethernet protocol is much simpler than the IP protocol.")
1686 (license license:gpl2+)))
1688 (define-public iproute
1695 "mirror://kernel.org/linux/utils/net/iproute2/iproute2-"
1699 "1a2dywa2kam24951byv9pl32mb9z6klh7d4vp8fwfgrm4vn5vfd5"))))
1700 (build-system gnu-build-system)
1702 `( ;; There is a test suite, but it wants network namespaces and sudo.
1704 #:make-flags (let ((out (assoc-ref %outputs "out")))
1706 (string-append "BASH_COMPDIR=" out
1707 "/etc/bash_completion.d")
1708 (string-append "LIBDIR=" out "/lib")
1709 (string-append "HDRDIR=" out "/include")
1710 (string-append "SBINDIR=" out "/sbin")
1711 (string-append "CONFDIR=" out "/etc")
1712 (string-append "DOCDIR=" out "/share/doc/"
1714 (string-append "MANDIR=" out "/share/man")))
1715 #:phases (modify-phases %standard-phases
1716 (add-before 'install 'pre-install
1718 ;; Don't attempt to create /var/lib/arpd.
1719 (substitute* "Makefile"
1720 (("^.*ARPDDIR.*$") ""))
1724 ("iptables" ,iptables)))
1728 ("pkg-config" ,pkg-config)))
1730 ;; ("libmnl" ,libmnl)
1731 ;; ("util-linux" ,util-linux)
1733 "https://wiki.linuxfoundation.org/networking/iproute2")
1735 "Utilities for controlling TCP/IP networking and traffic in Linux")
1737 "Iproute2 is a collection of utilities for controlling TCP/IP networking
1738 and traffic with the Linux kernel. The most important of these are
1739 @command{ip}, which configures IPv4 and IPv6, and @command{tc} for traffic
1742 Most network configuration manuals still refer to ifconfig and route as the
1743 primary network configuration tools, but ifconfig is known to behave
1744 inadequately in modern network environments, and both should be deprecated.")
1745 (license license:gpl2+)))
1747 (define-public net-tools
1748 ;; XXX: This package is basically unmaintained, but it provides a few
1749 ;; commands not yet provided by Inetutils, such as 'route', so we have to
1751 (let ((commit "479bb4a7e11a4084e2935c0a576388f92469225b")
1755 (version (string-append "1.60-" revision "." (string-take commit 7)))
1758 (uri (string-append "https://sourceforge.net/code-snapshots/git/"
1759 "n/ne/net-tools/code.git/net-tools-code-"
1761 (file-name (string-append name "-" version ".zip"))
1764 "0hz9fda9d78spp774b6rr5xaxav7cm4h0qcpxf70rvdbrf6qx7vy"))))
1765 (home-page "http://net-tools.sourceforge.net/")
1766 (build-system gnu-build-system)
1768 '(#:modules ((guix build gnu-build-system)
1773 (modify-phases %standard-phases
1775 (lambda* (#:key outputs #:allow-other-keys)
1776 (let ((out (assoc-ref outputs "out")))
1777 (mkdir-p (string-append out "/bin"))
1778 (mkdir-p (string-append out "/sbin"))
1780 ;; Pretend we have everything...
1781 (system "yes | make config")
1783 ;; ... except for the things we don't have.
1784 ;; HAVE_AFDECnet requires libdnet, which we don't have.
1785 ;; HAVE_HWSTRIP and HAVE_HWTR require kernel headers
1786 ;; that have been removed.
1787 ;; XXX SELINUX and AFBLUETOOTH are removed for now, but we should
1788 ;; think about adding them later.
1789 (substitute* '("config.make" "config.h")
1790 (("^.*HAVE_(AFDECnet|HWSTRIP|HWTR|SELINUX|AFBLUETOOTH)[ =]1.*$")
1793 (add-after 'install 'remove-redundant-commands
1794 (lambda* (#:key outputs #:allow-other-keys)
1795 ;; Remove commands and man pages redundant with Inetutils.
1796 (let* ((out (assoc-ref outputs "out"))
1797 (dup (append-map (cut find-files out <>)
1799 "^(yp|nis|dns)?domainname"))))
1800 (for-each delete-file dup)
1802 ;; Binaries that depend on libnet-tools.a don't declare that
1803 ;; dependency, making it parallel-unsafe.
1804 #:parallel-build? #f
1806 #:tests? #f ; no test suite
1807 #:make-flags (let ((out (assoc-ref %outputs "out")))
1809 (string-append "BASEDIR=" out)
1810 (string-append "INSTALLNLSDIR=" out "/share/locale")
1811 (string-append "mandir=/share/man")))))
1812 (native-inputs `(("gettext" ,gettext-minimal)
1814 (synopsis "Tools for controlling the network subsystem in Linux")
1816 "This package includes the important tools for controlling the network
1817 subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and
1818 route. Additionally, this package contains utilities relating to particular
1819 network hardware types (plipconfig, slattach) and advanced aspects of IP
1820 configuration (iptunnel, ipmaddr).")
1821 (license license:gpl2+))))
1823 (define-public libcap
1830 "mirror://kernel.org/linux/libs/security/linux-privs/"
1831 "libcap2/libcap-" version ".tar.xz"))
1834 "0qjiqc5pknaal57453nxcbz3mn1r4hkyywam41wfcglq3v2qlg39"))))
1835 (build-system gnu-build-system)
1836 (arguments '(#:phases
1837 (modify-phases %standard-phases
1839 ;; Add $libdir to the RUNPATH of executables.
1841 (substitute* "Make.Rules"
1843 (string-append "LDFLAGS := -Wl,-rpath="
1846 #:tests? #f ; no 'check' target
1847 #:make-flags (list "lib=lib"
1848 (string-append "prefix="
1849 (assoc-ref %outputs "out"))
1850 "RAISE_SETFCAP=no")))
1851 (native-inputs `(("perl" ,perl)))
1852 (inputs `(("attr" ,attr)))
1853 (home-page "https://sites.google.com/site/fullycapable/")
1854 (synopsis "Library for working with POSIX capabilities")
1856 "Libcap2 provides a programming interface to POSIX capabilities on
1857 Linux-based operating systems.")
1859 ;; License is BSD-3 or GPLv2, at the user's choice.
1860 (license license:gpl2)))
1862 (define-public bridge-utils
1864 (name "bridge-utils")
1869 (uri (string-append "mirror://kernel.org/linux/utils/net/bridge-utils/"
1870 "bridge-utils-" version ".tar.xz"))
1872 (base32 "1j16kr44csyr4yqxly26l1yw2bh4nkiasgwvask2i2gvsnsyyryc"))))
1873 (build-system gnu-build-system)
1875 ;; The tarball lacks all the generated files.
1876 (native-inputs `(("autoconf" ,autoconf)
1877 ("automake" ,automake)))
1880 (modify-phases %standard-phases
1881 (add-before 'bootstrap 'patch-stuff
1883 ;; Fix "field ‘ip6’ has incomplete type" errors.
1884 (substitute* "libbridge/libbridge.h"
1885 (("#include <linux/if_bridge.h>")
1886 "#include <linux/in6.h>\n#include <linux/if_bridge.h>"))
1888 ;; Ensure that the entire build fails if one of the
1889 ;; sub-Makefiles fails.
1890 (substitute* "Makefile.in"
1891 (("\\$\\(MAKE\\) \\$\\(MFLAGS\\) -C \\$\\$x ;")
1892 "$(MAKE) $(MFLAGS) -C $$x || exit 1;"))
1895 #:tests? #f)) ; no 'check' target
1898 "http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge")
1899 (synopsis "Manipulate Ethernet bridges")
1901 "Utilities for Linux's Ethernet bridging facilities. A bridge is a way
1902 to connect two Ethernet segments together in a protocol independent way.
1903 Packets are forwarded based on Ethernet address, rather than IP address (like
1904 a router). Since forwarding is done at Layer 2, all protocols can go
1905 transparently through a bridge.")
1906 (license license:gpl2+)))
1908 (define-public libnl
1915 "https://github.com/thom311/libnl/releases/download/"
1916 "libnl" (string-join (string-split version #\.) "_")
1917 "/libnl-" version ".tar.gz"))
1920 "1gzm444rnsib64dddv0cwlpzy1q4bycjqhp1i5pxpikimqvpca5p"))))
1921 (build-system gnu-build-system)
1925 ("pkg-config" ,pkg-config)
1931 "https://github.com/thom311/libnl/releases/download/libnl"
1932 (string-join (string-split version #\.) "_")
1933 "/libnl-doc-" version ".tar.gz"))
1935 (base32 "1m5cnzviv31gjnz6fz5rgyl6ah4dbp2akm49j9973sgwl36gs8jx"))))))
1937 `(("python-2" ,python-2)
1938 ("python-3" ,python-3)))
1939 (outputs '("out" "doc" "python2" "python3"))
1941 `(#:modules ((guix build gnu-build-system)
1945 (modify-phases %standard-phases
1946 (add-after 'install 'install-python
1947 (lambda* (#:key outputs #:allow-other-keys)
1948 (define (python-inst python)
1949 (invoke python "setup.py" "build")
1950 (invoke python "setup.py" "install"
1951 (string-append "--prefix="
1952 (assoc-ref %outputs python)))
1953 (invoke python "setup.py" "clean"))
1954 (setenv "LDFLAGS" (format #f "-Wl,-rpath=~a/lib"
1955 (assoc-ref %outputs "out")))
1956 (with-directory-excursion "./python"
1957 (for-each python-inst '("python2" "python3")))
1959 (add-after 'install 'install-doc
1960 (lambda* (#:key inputs outputs #:allow-other-keys)
1961 (let ((dest (string-append (assoc-ref outputs "doc")
1962 "/share/doc/libnl")))
1964 (invoke "tar" "xf" (assoc-ref inputs "libnl3-doc")
1965 "--strip-components=1" "-C" dest)))))))
1966 (home-page "https://www.infradead.org/~tgr/libnl/")
1967 (synopsis "NetLink protocol library suite")
1969 "The libnl suite is a collection of libraries providing APIs to netlink
1970 protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily
1971 between the kernel and user space processes. It was designed to be a more
1972 flexible successor to ioctl to provide mainly networking related kernel
1973 configuration and monitoring interfaces.")
1975 ;; Most files are LGPLv2.1-only, but some are GPLv2-only (like
1976 ;; 'nl-addr-add.c'), so the result is GPLv2-only.
1977 (license license:gpl2)))
1986 "mirror://kernel.org/software/network/iw/iw-"
1990 "12ddd6vh6vs97135bnlyr0szv7hvpbnmfh48584frzab0z0725ph"))))
1991 (build-system gnu-build-system)
1992 (native-inputs `(("pkg-config" ,pkg-config)))
1993 (inputs `(("libnl" ,libnl)))
1995 `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1997 #:phases (modify-phases %standard-phases (delete 'configure))))
1998 (home-page "https://wireless.wiki.kernel.org/")
1999 (synopsis "Tool for configuring wireless devices")
2001 "iw is a new nl80211 based CLI configuration utility for wireless
2002 devices. It replaces @code{iwconfig}, which is deprecated.")
2003 (license license:isc)))
2005 (define-public powertop
2012 (uri (string-append "https://01.org/sites/default/files/downloads/"
2013 "powertop-v" version ".tar.gz"))
2015 (base32 "0xaazqccyd42v2q532dxx40nqhb9sfsa6cyx8641rl57mfg4bdyk"))))
2016 (build-system gnu-build-system)
2019 (modify-phases %standard-phases
2020 ;; TODO: Patch some hardcoded "wlan0" in calibrate/calibrate.cpp to
2021 ;; allow calibrating the network interface in Guix System.
2022 (add-after 'unpack 'patch-absolute-file-names
2023 (lambda* (#:key inputs #:allow-other-keys)
2024 (let ((kmod (assoc-ref inputs "kmod")))
2025 (substitute* (find-files "src" "\\.cpp$")
2026 ;; Give the right 'modprobe' file name so that essential
2027 ;; modules such as msr.ko can be loaded.
2028 (("/sbin/modprobe") (string-append kmod "/bin/modprobe"))
2029 ;; These programs are only needed to calibrate, so using
2030 ;; relative file names avoids adding extra inputs. When they
2031 ;; are missing powertop gracefully handles it.
2032 (("/usr/bin/hcitool") "hcitool")
2033 (("/usr/bin/xset") "xset")
2034 (("/usr/sbin/hciconfig") "hciconfig"))
2039 ("ncurses" ,ncurses)
2040 ("pciutils" ,pciutils)
2043 `(("pkg-config" ,pkg-config)))
2044 (home-page "https://01.org/powertop/")
2045 (synopsis "Analyze power consumption on Intel-based laptops")
2047 "PowerTOP is a Linux tool to diagnose issues with power consumption and
2048 power management. In addition to being a diagnostic tool, PowerTOP also has
2049 an interactive mode where the user can experiment various power management
2050 settings for cases where the operating system has not enabled these
2052 (license license:gpl2)))
2054 (define-public aumix
2061 "http://www.jpj.net/~trevor/aumix/releases/aumix-"
2062 version ".tar.bz2"))
2065 "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj"))))
2066 (build-system gnu-build-system)
2067 (inputs `(("ncurses" ,ncurses)))
2068 (home-page "http://www.jpj.net/~trevor/aumix.html")
2069 (synopsis "Audio mixer for X and the console")
2071 "Aumix adjusts an audio mixer from X, the console, a terminal,
2072 the command line or a script.")
2073 (license license:gpl2+)))
2075 (define-public iotop
2082 (uri (string-append "http://guichaz.free.fr/iotop/files/iotop-"
2085 "1kp8mqg2pbxq4xzpianypadfxcsyfgwcaqgqia6h9fsq6zyh4z0s"))))
2086 (build-system python-build-system)
2088 ;; The setup.py script expects python-2.
2089 `(#:python ,python-2
2090 ;; There are currently no checks in the package.
2092 (native-inputs `(("python" ,python-2)))
2093 (home-page "http://guichaz.free.fr/iotop/")
2095 "Displays the IO activity of running processes")
2097 "Iotop is a Python program with a top like user interface to show the
2098 processes currently causing I/O.")
2099 (license license:gpl2+)))
2107 (uri (string-append "https://github.com/libfuse/libfuse/releases/"
2108 "download/fuse-" version
2109 "/fuse-" version ".tar.gz"))
2112 "1qxg1r1mgysfq6qakmvid2njph3lr00w0swvydsfl9ymilfzi12y"))
2113 (patches (search-patches "fuse-overlapping-headers.patch"))))
2114 (build-system gnu-build-system)
2115 (inputs `(("util-linux" ,util-linux)))
2117 '(#:configure-flags (list (string-append "MOUNT_FUSE_PATH="
2118 (assoc-ref %outputs "out")
2120 (string-append "INIT_D_PATH="
2121 (assoc-ref %outputs "out")
2124 ;; The rule makes /dev/fuse 666.
2125 (string-append "UDEV_RULES_PATH="
2126 (assoc-ref %outputs "out")
2127 "/lib/udev/rules.d"))
2129 (modify-phases %standard-phases
2130 (add-before 'build 'set-file-names
2131 (lambda* (#:key inputs #:allow-other-keys)
2132 ;; libfuse calls out to mount(8) and umount(8). Make sure
2133 ;; it refers to the right ones.
2134 (substitute* '("lib/mount_util.c" "util/mount_util.c")
2135 (("/bin/(u?)mount" _ maybe-u)
2136 (string-append (assoc-ref inputs "util-linux")
2137 "/bin/" maybe-u "mount")))
2138 (substitute* '("util/mount.fuse.c")
2142 ;; This hack leads libfuse to search for 'fusermount' in
2143 ;; $PATH, where it may find a setuid-root binary, instead of
2144 ;; trying solely $out/sbin/fusermount and failing because
2146 (substitute* "lib/Makefile"
2147 (("-DFUSERMOUNT_DIR=[[:graph:]]+")
2148 "-DFUSERMOUNT_DIR=\\\"/var/empty\\\""))
2150 (home-page "https://github.com/libfuse/libfuse")
2151 (synopsis "Support file systems implemented in user space")
2153 "As a consequence of its monolithic design, file system code for Linux
2154 normally goes into the kernel itself---which is not only a robustness issue,
2155 but also an impediment to system extensibility. FUSE, for \"file systems in
2156 user space\", is a kernel module and user-space library that tries to address
2157 part of this problem by allowing users to run file system implementations as
2158 user-space processes.")
2159 (license (list license:lgpl2.1 ;library
2160 license:gpl2+)))) ;command-line utilities
2162 (define-public unionfs-fuse
2164 (name "unionfs-fuse")
2169 "https://github.com/rpodgorny/unionfs-fuse/archive/v"
2171 (file-name (string-append name "-" version ".tar.gz"))
2174 "0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
2175 (build-system cmake-build-system)
2177 `(("python" ,python)))
2178 (inputs `(("fuse" ,fuse)))
2180 ;; The tests were never actually run ("collected 0 items"), but in recent
2181 ;; versions of pytest that causes an error.
2183 (home-page "https://github.com/rpodgorny/unionfs-fuse")
2184 (synopsis "User-space union file system")
2186 "UnionFS-FUSE is a flexible union file system implementation in user
2187 space, using the FUSE library. Mounting a union file system allows you to
2188 \"aggregate\" the contents of several directories into a single mount point.
2189 UnionFS-FUSE additionally supports copy-on-write.")
2190 (license license:bsd-3)))
2193 (package (inherit fuse)
2194 (name "fuse-static")
2195 (source (origin (inherit (package-source fuse))
2196 (modules '((guix build utils)))
2199 ;; Normally libfuse invokes mount(8) so that /etc/mtab is
2200 ;; updated. Change calls to 'mtab_needs_update' to 0 so
2201 ;; that it doesn't do that, allowing us to remove the
2202 ;; dependency on util-linux (something that is useful in
2204 (substitute* '("lib/mount_util.c"
2205 "util/mount_util.c")
2206 (("mtab_needs_update[[:blank:]]*\\([a-z_]+\\)")
2212 (define-public unionfs-fuse/static
2213 (package (inherit unionfs-fuse)
2214 (synopsis "User-space union file system (statically linked)")
2215 (name (string-append (package-name unionfs-fuse) "-static"))
2216 (source (origin (inherit (package-source unionfs-fuse))
2217 (modules '((guix build utils)))
2220 ;; Add -ldl to the libraries, because libfuse.a needs that.
2221 (substitute* "src/CMakeLists.txt"
2222 (("target_link_libraries(.*)\\)" _ libs)
2223 (string-append "target_link_libraries"
2228 #:configure-flags '("-DCMAKE_EXE_LINKER_FLAGS=-static")
2230 (modify-phases %standard-phases
2231 (add-after 'install 'post-install
2232 (lambda* (#:key outputs #:allow-other-keys)
2233 (let* ((out (assoc-ref outputs "out"))
2234 (exe (string-append out "/bin/unionfs")))
2235 ;; By default, 'unionfs' keeps references to
2236 ;; $glibc/share/locale and similar stuff. Remove them.
2237 (remove-store-references exe)
2239 ;; 'unionfsctl' has references to glibc as well. Since
2240 ;; we don't need it, remove it.
2241 (delete-file (string-append out "/bin/unionfsctl"))
2243 (inputs `(("fuse" ,fuse-static)))))
2245 (define-public sshfs
2251 (uri (string-append "https://github.com/libfuse/sshfs/releases/"
2252 "download/sshfs-" version "/sshfs-" version
2256 "00fir2iykdx11g8nv5gijg0zjrp2g3ldypnv0yi6lq3h5pg5v13h"))))
2257 (build-system gnu-build-system)
2262 `(("pkg-config" ,pkg-config)))
2263 (home-page "https://github.com/libfuse/sshfs")
2264 (synopsis "Mount remote file systems over SSH")
2266 "This is a file system client based on the SSH File Transfer Protocol.
2267 Since most SSH servers already support this protocol it is very easy to set
2268 up: on the server side there's nothing to do; on the client side mounting the
2269 file system is as easy as logging into the server with an SSH client.")
2270 (license license:gpl2+)))
2272 (define-public sshfs-fuse
2273 (package (inherit sshfs)
2275 (properties `((superseded . ,sshfs)))))
2277 (define-public archivemount
2279 (name "archivemount")
2284 (uri (string-append "https://www.cybernoia.de/software/archivemount/"
2285 "archivemount-" version ".tar.gz"))
2287 (base32 "12fb8fcmd1zwvfgzx4pay47md5cr2kgxcgq82cm6skmq75alfzi4"))))
2288 (build-system gnu-build-system)
2289 (inputs `(("fuse" ,fuse)
2290 ("libarchive" ,libarchive)))
2291 (native-inputs `(("pkg-config" ,pkg-config)))
2292 (home-page "https://www.cybernoia.de/software/archivemount.html")
2293 (synopsis "Tool for mounting archive files with FUSE")
2294 (description "archivemount is a FUSE-based file system for Unix variants,
2295 including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a
2296 mount point where it can be read from or written to as with any other file
2297 system. This makes accessing the contents of the archive, which may be
2298 compressed, transparent to other programs, without decompressing them.")
2299 (license license:lgpl2.0+)))
2301 (define-public numactl
2308 "https://github.com/numactl/numactl/releases/download/v"
2309 version "/" name "-" version ".tar.gz"))
2312 "0ad7mpi3vacbfnx3aqxnvgsj64yp3mav9yxnaz8ancjv7wvdmfsm"))))
2313 (build-system gnu-build-system)
2315 '(;; There's a 'test' target, but it requires NUMA support in the kernel
2316 ;; to run, which we can't assume to have.
2319 ;; NUMA is apparently not supported on armhf, see
2320 ;; http://www.spinics.net/lists/linux-numa/msg01157.html
2321 (supported-systems (delete "armhf-linux" %supported-systems))
2322 (home-page "https://github.com/numactl/numactl")
2323 (synopsis "Tools for non-uniform memory access (NUMA) machines")
2325 "NUMA stands for Non-Uniform Memory Access, in other words a system whose
2326 memory is not all in one place. The numactl program allows you to run your
2327 application program on specific CPU's and memory nodes. It does this by
2328 supplying a NUMA memory policy to the operating system before running your
2331 The package contains other commands, such as numademo, numastat and memhog.
2332 The numademo command provides a quick overview of NUMA performance on your
2334 (license (list license:gpl2 ;programs
2335 license:lgpl2.1)))) ;library
2337 (define-public kbd-neo
2344 (uri (string-append "https://svn.neo-layout.org/!svn/bc/"
2345 version "/linux/console/neo.map"))
2346 (file-name (string-append name "-" version ".map"))
2349 "19mfrd31vzpsjiwc7pshxm0b0sz5dd17xrz6k079cy4im1vf0r4g"))))
2350 (build-system trivial-build-system)
2352 `(#:modules ((guix build utils))
2354 (use-modules (guix build utils))
2355 (let ((out (string-append %output "/share/keymaps"))
2356 (source (assoc-ref %build-inputs "source")))
2358 (copy-file source (string-append out "/neo.map"))
2360 (home-page "https://neo-layout.org")
2361 (synopsis "Neo2 console layout")
2363 "Kbd-neo provides the Neo2 keyboard layout for use with
2364 @command{loadkeys(1)} from @code{kbd(4)}.")
2365 ;; The file is located in an svn directory, the entire content of
2366 ;; the directory is licensed as GPL3.
2367 (license license:gpl3+)))
2375 (uri (string-append "mirror://kernel.org/linux/utils/kbd/kbd-"
2379 "124swm93dm4ca0pifgkrand3r9gvj3019d4zkfxsj9djpvv0mnaz"))
2380 (modules '((guix build utils)))
2383 (substitute* "tests/Makefile.in"
2384 ;; The '%: %.in' rule incorrectly uses @VERSION@.
2387 (substitute* '("src/unicode_start" "src/unicode_stop")
2388 ;; Assume the Coreutils are in $PATH.
2392 (build-system gnu-build-system)
2395 (modify-phases %standard-phases
2396 (add-before 'build 'pre-build
2397 (lambda* (#:key inputs #:allow-other-keys)
2398 (let ((gzip (assoc-ref %build-inputs "gzip"))
2399 (bzip2 (assoc-ref %build-inputs "bzip2")))
2400 (substitute* "src/libkeymap/findfile.c"
2402 (string-append gzip "/bin/gzip"))
2404 (string-append bzip2 "/bin/bzip2")))
2406 (add-after 'install 'post-install
2407 (lambda* (#:key outputs #:allow-other-keys)
2408 ;; Make sure these programs find their comrades.
2409 (let* ((out (assoc-ref outputs "out"))
2410 (bin (string-append out "/bin")))
2411 (for-each (lambda (prog)
2412 (wrap-program (string-append bin "/" prog)
2413 `("PATH" ":" prefix (,bin))))
2414 '("unicode_start" "unicode_stop"))
2416 (inputs `(("check" ,check)
2419 ("pam" ,linux-pam)))
2420 (native-search-paths
2421 (list (search-path-specification
2422 (variable "LOADKEYS_KEYMAP_PATH")
2423 ;; Append ‘/**’ to recursively search all directories. One can then
2424 ;; run (for example) ‘loadkeys en-latin9’ instead of having to find
2425 ;; and type ‘i386/colemak/en-latin9’ on a mislabelled keyboard.
2426 (files (list "share/keymaps/**")))))
2427 (native-inputs `(("pkg-config" ,pkg-config)))
2428 (home-page "http://kbd-project.org/")
2429 (synopsis "Linux keyboard utilities and keyboard maps")
2431 "This package contains keytable files and keyboard utilities compatible
2432 for systems using the Linux kernel. This includes commands such as
2433 @code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}.")
2434 (license license:gpl2+)))
2436 (define-public loadkeys-static
2439 (name "loadkeys-static")
2441 (substitute-keyword-arguments (package-arguments kbd)
2442 ((#:configure-flags flags ''())
2443 `(append '("LDFLAGS=-static" "--disable-shared" "--disable-nls"
2444 "--disable-vlock" ;so we don't need libpam
2445 "--disable-libkeymap")
2447 ((#:make-flags flags ''())
2448 `(cons "LDFLAGS=-all-static" ,flags))
2449 ((#:phases phases '%standard-phases)
2450 `(modify-phases ,phases
2452 (lambda* (#:key outputs #:allow-other-keys)
2453 (let ((out (assoc-ref outputs "out")))
2454 ;; The binary keeps references to gzip, among other things,
2455 ;; which we don't need in the initrd, so strip references.
2456 (remove-store-references "src/loadkeys")
2458 (install-file "src/loadkeys"
2459 (string-append out "/bin"))
2461 (delete 'post-install)))
2462 ((#:strip-flags _ '())
2464 ((#:allowed-references _ '())
2467 (synopsis "Statically-linked @command{loadkeys} program")
2469 ;; This package is meant to be used internally in the initrd so don't
2471 (properties '((hidden? . #t)))))
2473 (define-public inotify-tools
2475 (name "inotify-tools")
2480 (url "https://github.com/rvoicilas/inotify-tools.git")
2482 (file-name (git-file-name name version))
2485 "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq"))))
2486 (build-system gnu-build-system)
2488 `(("autoconf" ,autoconf)
2489 ("automake" ,automake)
2490 ("libtool" ,libtool)))
2491 (home-page "https://github.com/rvoicilas/inotify-tools/wiki")
2492 (synopsis "Monitor file accesses")
2494 "The inotify-tools packages provides a C library and command-line tools
2495 to use Linux' inotify mechanism, which allows file accesses to be monitored.")
2496 (license license:gpl2+)))
2505 (string-append "mirror://kernel.org/linux/utils/kernel/kmod/"
2506 "kmod-" version ".tar.xz"))
2509 "17dvrls70nr3b3x1wm8pwbqy4r8a5c20m0dhys8mjhsnpg425fsp"))
2510 (patches (search-patches "kmod-module-directory.patch"))))
2511 (build-system gnu-build-system)
2513 `(("pkg-config" ,pkg-config)))
2518 `(#:tests? #f ; FIXME: Investigate test failures
2519 #:configure-flags '("--with-xz" "--with-zlib")
2521 (modify-phases %standard-phases
2522 (add-after 'install 'install-modprobe&co
2523 (lambda* (#:key outputs #:allow-other-keys)
2524 (let* ((out (assoc-ref outputs "out"))
2525 (bin (string-append out "/bin")))
2526 (for-each (lambda (tool)
2528 (string-append bin "/" tool)))
2529 '("insmod" "rmmod" "lsmod" "modprobe"
2530 "modinfo" "depmod"))
2532 (home-page "https://www.kernel.org/")
2533 (synopsis "Kernel module tools")
2534 (description "Kmod is a set of tools to handle common tasks with Linux
2535 kernel modules like insert, remove, list, check properties, resolve
2536 dependencies and aliases.
2538 These tools are designed on top of libkmod, a library that is shipped with
2539 kmod. The aim is to be compatible with tools, configurations and indices
2540 from the module-init-tools project.")
2541 (license license:gpl2+))) ; library under lgpl2.1+
2543 (define-public eudev
2544 ;; The post-systemd fork, maintained by Gentoo.
2550 (uri (git-reference (url "https://github.com/gentoo/eudev")
2551 (commit (string-append "v" version))))
2552 (file-name (git-file-name name version))
2555 "1g95yzzx4qxm5qhhylbi930lrq4gsbz207n72018nkvswj6gmpjw"))
2556 (patches (search-patches "eudev-rules-directory.patch"))))
2557 (build-system gnu-build-system)
2560 (modify-phases %standard-phases
2561 (add-after 'unpack 'make-source-writable
2563 ;; XXX: Git checkouts are read-only, but this package needs to
2564 ;; modify some of its files.
2565 (for-each make-file-writable (find-files "."))
2567 (add-before 'bootstrap 'patch-file-names
2568 (lambda* (#:key inputs #:allow-other-keys)
2569 (substitute* "man/make.sh"
2570 (("/usr/bin/xsltproc")
2571 (string-append (assoc-ref inputs "xsltproc")
2574 (add-after 'install 'build-hwdb
2575 (lambda* (#:key outputs #:allow-other-keys)
2576 ;; Build OUT/etc/udev/hwdb.bin. This allows 'lsusb' and
2577 ;; similar tools to display product names.
2578 (let ((out (assoc-ref outputs "out")))
2579 (invoke (string-append out "/bin/udevadm")
2580 "hwdb" "--update")))))
2581 #:configure-flags (list "--enable-manpages")))
2583 `(("autoconf" ,autoconf)
2584 ("automake" ,automake)
2586 ("libtool" ,libtool)
2587 ("pkg-config" ,pkg-config)
2590 ("python" ,python-wrapper)
2591 ;; For documentation.
2592 ("docbook-xml" ,docbook-xml-4.2)
2593 ("docbook-xsl" ,docbook-xsl)
2594 ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
2595 ("xsltproc" ,libxslt)))
2597 ;; When linked against libblkid, eudev can populate /dev/disk/by-label
2598 ;; and similar; it also installs the '60-persistent-storage.rules' file,
2599 ;; which contains the rules to do that.
2600 `(("util-linux" ,util-linux) ;for blkid
2602 (home-page "https://wiki.gentoo.org/wiki/Project:Eudev")
2603 (synopsis "Userspace device management")
2604 (description "Udev is a daemon which dynamically creates and removes
2605 device nodes from /dev/, handles hotplug events and loads drivers at boot
2607 (license license:gpl2+)))
2609 (define-public eudev-with-hwdb
2610 (deprecated-package "eudev-with-hwdb" eudev))
2615 (version "2.02.177")
2618 (uri (string-append "ftp://sources.redhat.com/pub/lvm2/releases/LVM2."
2622 "1wl0isn0yz5wvglwylnlqkppafwmvhliq5bd92vjqp5ir4za49a0"))
2623 (modules '((guix build utils)))
2626 (use-modules (guix build utils))
2628 ;; Honor sysconfdir.
2629 (substitute* "make.tmpl.in"
2631 "confdir = @sysconfdir@\n")
2632 (("DEFAULT_SYS_DIR = @DEFAULT_SYS_DIR@")
2633 "DEFAULT_SYS_DIR = @sysconfdir@"))
2635 (patches (search-patches "lvm2-static-link.patch"))))
2636 (build-system gnu-build-system)
2638 `(("pkg-config" ,pkg-config)
2639 ("procps" ,procps))) ;tests use 'pgrep'
2644 (modify-phases %standard-phases
2645 (add-after 'configure 'set-makefile-shell
2647 ;; Use 'sh', not 'bash', so that '. lib/utils.sh' works as
2649 (setenv "SHELL" (which "sh"))
2651 ;; Replace /bin/sh with the right file name.
2652 (patch-makefile-SHELL "make.tmpl")
2655 #:configure-flags (list (string-append "--sysconfdir="
2656 (assoc-ref %outputs "out")
2658 "--enable-udev_sync"
2659 "--enable-udev_rules"
2660 "--enable-pkgconfig"
2662 "--enable-dmeventd" ; Requires '--enable-cmdlib'.
2664 ;; Make sure programs such as 'dmsetup' can
2665 ;; find libdevmapper.so.
2666 (string-append "LDFLAGS=-Wl,-rpath="
2667 (assoc-ref %outputs "out")
2669 (assoc-ref %outputs "out")
2670 "/lib/device-mapper")
2671 ;; TODO: Patch make.tmpl.in to take LDFLAGS
2672 ;; into account so that we don't need to also
2674 (string-append "CLDFLAGS=-Wl,-rpath="
2675 (assoc-ref %outputs "out")
2677 (assoc-ref %outputs "out")
2678 "/lib/device-mapper"))
2680 ;; The tests use 'mknod', which requires root access.
2682 (home-page "https://sourceware.org/lvm2/")
2683 (synopsis "Logical volume management for Linux")
2685 "LVM2 is the logical volume management tool set for Linux-based systems.
2686 This package includes the user-space libraries and tools, including the device
2687 mapper. Kernel components are part of Linux-libre.")
2689 ;; Libraries (liblvm2, libdevmapper) are LGPLv2.1.
2690 ;; Command-line tools are GPLv2.
2691 (license (list license:gpl2 license:lgpl2.1))))
2693 (define-public lvm2-static
2696 (name "lvm2-static")
2698 ;; Propagate udev because libdevmapper.a depends on libudev.
2699 (inputs (alist-delete "udev" (package-inputs lvm2)))
2700 (propagated-inputs `(("udev" ,eudev)))
2703 (substitute-keyword-arguments (package-arguments lvm2)
2704 ((#:configure-flags flags '())
2705 ;; LVM2 doesn't use Libtool, hence the custom option.
2706 `(cons "--enable-static_link" ,flags))))
2707 (synopsis "Logical volume management for Linux (statically linked)")))
2709 (define-public wireless-tools
2711 (name "wireless-tools")
2715 (uri (string-append "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools."
2719 "0qscyd44jmhs4k32ggp107hlym1pcyjzihiai48xs7xzib4wbndb"))
2722 ;; Remove the older header files that are not free software.
2723 (for-each (lambda (n)
2724 (delete-file (format #f "wireless.~a.h" n)))
2725 '(10 11 12 13 14 15 16 17 18 19 20))
2727 (build-system gnu-build-system)
2730 (list (string-append "PREFIX=" %output)
2731 (string-append "INSTALL_MAN=" %output "/share/man")
2732 (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib")
2734 #:phases (modify-phases %standard-phases
2735 (delete 'configure))
2737 (synopsis "Tools for manipulating Linux Wireless Extensions")
2738 (description "Wireless Tools are used to manipulate the now-deprecated
2739 Linux Wireless Extensions; consider using @code{iw} instead. The Wireless
2740 Extension was an interface allowing you to set Wireless LAN specific
2741 parameters and get the specific stats. It is deprecated in favor the nl80211
2743 (home-page "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html")
2744 ;; wireless.21.h and wireless.22.h are distributed under lgpl2.1+, the
2745 ;; other files are distributed under gpl2.
2746 (license (list license:gpl2 license:lgpl2.1+))))
2754 (uri (string-append "mirror://kernel.org/software/network/crda/"
2755 "crda-" version ".tar.xz"))
2758 "1gydiqgb08d9gbx4l6gv98zg3pljc984m50hmn3ysxcbkxkvkz23"))
2759 (patches (search-patches "crda-optional-gcrypt.patch"))))
2760 (build-system gnu-build-system)
2762 '(#:phases (modify-phases %standard-phases
2764 (add-after 'unpack 'gzip-determinism
2766 (substitute* "Makefile"
2767 (("gzip") "gzip --no-name"))
2770 'build 'no-werror-no-ldconfig
2772 (substitute* "Makefile"
2774 (("ldconfig") "true"))
2777 'build 'set-regulator-db-file-name
2778 (lambda* (#:key inputs #:allow-other-keys)
2779 ;; Tell CRDA where to find our database.
2780 (let ((regdb (assoc-ref inputs "wireless-regdb")))
2781 (substitute* "crda.c"
2782 (("\"/lib/crda/regulatory.bin\"")
2783 (string-append "\"" regdb
2784 "/lib/crda/regulatory.bin\"")))
2786 #:test-target "verify"
2787 #:make-flags (let ((out (assoc-ref %outputs "out"))
2788 (regdb (assoc-ref %build-inputs "wireless-regdb")))
2789 (list "CC=gcc" "V=1"
2791 ;; Disable signature-checking on 'regulatory.bin'.
2792 ;; The reason is that this simplifies maintenance
2793 ;; on our side (no need to manage a distro key
2794 ;; pair), and we can guarantee integrity of
2795 ;; 'regulatory.bin' by other means anyway, such as
2796 ;; 'guix gc --verify'. See
2797 ;; <https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb>
2801 (string-append "PREFIX=" out)
2802 (string-append "SBINDIR=" out "/sbin/")
2803 (string-append "UDEV_RULE_DIR="
2804 out "/lib/udev/rules.d")
2805 (string-append "LDFLAGS=-Wl,-rpath="
2807 (string-append "REG_BIN=" regdb
2808 "/lib/crda/regulatory.bin")))))
2809 (native-inputs `(("pkg-config" ,pkg-config)
2810 ("python" ,python-2)
2811 ("wireless-regdb" ,wireless-regdb)))
2812 (inputs `(("libnl" ,libnl)))
2814 "https://wireless.wiki.kernel.org/en/developers/Regulatory/CRDA")
2815 (synopsis "Central regulatory domain agent (CRDA) for WiFi")
2817 "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for
2818 communication between the kernel Linux and user space for regulatory
2820 (license license:copyleft-next)))
2822 (define-public wireless-regdb
2824 (name "wireless-regdb")
2825 (version "2019.06.03")
2829 "mirror://kernel.org/software/network/wireless-regdb/"
2830 "wireless-regdb-" version ".tar.xz"))
2833 "1gslvh0aqdkv48jyr2ddq153mw28i7qz2ybrjj9qvkk3dgc7x4fd"))
2835 ;; We're building 'regulatory.bin' by ourselves.
2837 (delete-file "regulatory.bin")
2839 (build-system gnu-build-system)
2842 (modify-phases %standard-phases
2843 (add-after 'unpack 'gzip-determinism
2845 (substitute* "Makefile"
2846 (("gzip") "gzip --no-name"))
2848 (add-after 'unpack 'omit-signature
2850 (substitute* "Makefile"
2851 ;; Signing requires a REGDB_PUBCERT and REGDB_PRIVKEY which we
2852 ;; don't provide (see below). Disable it.
2853 ((" regulatory\\.db\\.p7s") "")
2854 ;; regulatory.db is built as a dependency of regulatory.db.p7s,
2855 ;; but ‘make install’ depends only on the latter while installing
2856 ;; both (and failing). Depend on it explicitly.
2857 (("^install: " all) (string-append all "regulatory.db ")))
2859 (delete 'configure)) ; no configure script
2861 ;; The 'all' target of the makefile depends on $(REGDB_CHANGED), which
2862 ;; is computed and can be equal to 'maintainer-clean'; when that
2863 ;; happens, we can end up deleting the 'regulatory.bin' file that we
2864 ;; just built. Thus, build things sequentially.
2865 #:parallel-build? #f
2867 #:tests? #f ; no tests
2869 (let ((out (assoc-ref %outputs "out")))
2870 (list (string-append "PREFIX=" out)
2871 (string-append "FIRMWARE_PATH=$(PREFIX)/lib/firmware")
2873 ;; Leave this empty so that db2bin.py doesn't try to sign
2874 ;; ‘regulatory.bin’. This allows us to avoid managing a key
2875 ;; pair for the whole distribution.
2876 (string-append "REGDB_PRIVKEY=")
2877 ;; Don't generate a public key for the same reason. These are
2878 ;; used as Makefile targets and can't be the empty string.
2879 (string-append "REGDB_PUBCERT=/dev/null")
2880 (string-append "REGDB_PUBKEY=/dev/null")))))
2882 `(("python" ,python-wrapper)))
2884 "https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb")
2885 (synopsis "Wireless regulatory database")
2887 "This package contains the wireless regulatory database Central
2888 Regulatory Database Agent (CRDA) daemon. The database contains information on
2889 country-specific regulations for the wireless spectrum.")
2890 (license license:isc)))
2892 (define-public lm-sensors
2900 (url "https://github.com/groeck/lm-sensors.git")
2901 (commit (string-append "V" (string-join
2902 (string-split version #\.) "-")))))
2903 (file-name (git-file-name name version))
2905 (base32 "1mdrnb9r01z1xfdm6dpkywvf9yy9a4yzb59paih9sijwmigv19fj"))
2906 (patches (search-patches "lm-sensors-hwmon-attrs.patch"))))
2907 (build-system gnu-build-system)
2908 (inputs `(("rrdtool" ,rrdtool)
2911 ("gnuplot" ,gnuplot)))
2912 (native-inputs `(("pkg-config" ,pkg-config)
2916 (outputs '("lib" ;avoid perl in closure
2919 `(#:tests? #f ; no 'check' target
2920 #:make-flags (list (string-append "PREFIX=" %output)
2921 (string-append "ETCDIR=" (assoc-ref %outputs "lib") "/etc")
2922 (string-append "INCLUDEDIR="
2923 (assoc-ref %outputs "lib") "/include")
2924 (string-append "MANDIR=" %output "/share/man")
2925 (string-append "LIBDIR=" (assoc-ref %outputs "lib") "/lib"))
2927 (modify-phases %standard-phases
2929 (add-before 'build 'patch-exec-paths
2930 (lambda* (#:key inputs outputs #:allow-other-keys)
2931 (substitute* "prog/detect/sensors-detect"
2933 (string-append "`" (assoc-ref inputs "coreutils")
2935 (("(`|\")modprobe" all open-quote)
2936 (string-append open-quote
2937 (assoc-ref inputs "kmod")
2939 (substitute* '("prog/pwm/pwmconfig"
2940 "prog/pwm/fancontrol")
2942 (string-append (assoc-ref inputs "gnuplot")
2945 (string-append (assoc-ref inputs "coreutils")
2948 (string-append (assoc-ref inputs "grep")
2951 (string-append (assoc-ref inputs "sed")
2954 (string-append (assoc-ref inputs "coreutils")
2957 (string-append (assoc-ref inputs "coreutils")
2960 (string-append (assoc-ref inputs "coreutils")
2961 "/bin/readlink -f")))
2963 (home-page "https://hwmon.wiki.kernel.org/lm_sensors")
2964 (synopsis "Utilities to read temperature/voltage/fan sensors")
2966 "Lm-sensors is a hardware health monitoring package for Linux. It allows
2967 you to access information from temperature, voltage, and fan speed sensors.
2968 It works with most newer systems.")
2969 (license license:gpl2+)))
2971 (define-public iucode-tool
2973 (name "iucode-tool")
2977 (uri (string-append "https://gitlab.com/iucode-tool/releases"
2978 "/raw/latest/iucode-tool_" version ".tar.xz"))
2981 "159gvf6ljgg3g4vlhyy6pyr0wz11rcyhp985vc4az58d9px8xf0j"))))
2982 (build-system gnu-build-system)
2983 (home-page "https://gitlab.com/iucode-tool/iucode-tool/wikis/home")
2984 (synopsis "Manipulate Intel microcode bundles")
2986 "@command{iucode_tool} is a utility to work with microcode packages for
2987 Intel processors. It can convert between formats, extract specific versions,
2988 create a firmware image suitable for the Linux kernel, and more.")
2989 ;; cpuid.h is available for i686, x86_64, and ia64.
2990 (supported-systems '("i686-linux" "x86_64-linux"))
2991 (license license:gpl2+)))
2993 (define-public i2c-tools
3000 "http://jdelvare.nerim.net/mirror/i2c-tools/i2c-tools-"
3001 version ".tar.bz2"))
3004 "000pvg995qy1b15ks59gd0klri55hb33kqpg5czy84hw1pbdgm0l"))))
3005 (build-system gnu-build-system)
3007 `(#:tests? #f ; no 'check' target
3008 #:make-flags (list (string-append "prefix=" %output)
3010 ;; no configure script
3011 #:phases (modify-phases %standard-phases (delete 'configure))))
3014 (home-page "http://jdelvare.nerim.net/devel.html#i2ctools")
3015 (synopsis "I2C tools for Linux")
3017 "The i2c-tools package contains a heterogeneous set of I2C tools for
3018 Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,
3019 EEPROM decoding scripts, EEPROM programming tools, and a python module for
3021 (license license:gpl2+)))
3023 (define-public xsensors
3030 "http://www.linuxhardware.org/xsensors/xsensors-"
3034 "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh"))))
3035 (build-system gnu-build-system)
3036 (inputs `(("lm-sensors" ,lm-sensors "lib")
3038 (native-inputs `(("pkg-config" ,pkg-config)))
3041 (modify-phases %standard-phases
3042 (add-before 'configure 'enable-deprecated
3044 (substitute* "src/Makefile.in"
3045 (("-DGDK_DISABLE_DEPRECATED") "")
3046 (("-DGTK_DISABLE_DEPRECATED") ""))
3048 (add-before 'configure 'remove-Werror
3050 (substitute* '("configure" "src/Makefile.in")
3053 (home-page "http://www.linuxhardware.org/xsensors/")
3054 (synopsis "Hardware health information viewer")
3056 "Xsensors reads data from the libsensors library regarding hardware
3057 health such as temperature, voltage and fan speed and displays the information
3058 in a digital read-out.")
3059 (license license:gpl2+)))
3064 (version (package-version linux-libre))
3065 (source (package-source linux-libre))
3066 (build-system gnu-build-system)
3069 (modify-phases %standard-phases
3071 (lambda* (#:key inputs #:allow-other-keys)
3072 (setenv "SHELL_PATH" (which "bash"))
3073 (chdir "tools/perf")
3075 #:make-flags (list (string-append "prefix="
3076 (assoc-ref %outputs "out"))
3079 ;; By default, 'config/Makefile' uses lib64 on
3080 ;; x86_64. Work around that.
3082 #:tests? #f)) ;no tests
3084 `(("pkg-config" ,pkg-config)
3088 ;; There are build scripts written in these languages.
3090 ("python" ,python-2)))
3092 `(("slang" ,slang) ;for the interactive TUI
3094 ("python" ,python-2) ;'perf' links against libpython
3095 ("elfutils" ,elfutils)
3096 ("libiberty" ,libiberty) ;used alongside BDF for symbol demangling
3097 ("libunwind" ,libunwind) ;better stack walking
3098 ("numactl" ,numactl) ;for 'perf bench numa mem'
3101 ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
3102 ("docbook-xsl" ,docbook-xsl)
3104 ("asciidoc" ,asciidoc)))
3105 (home-page "https://perf.wiki.kernel.org/")
3106 (synopsis "Linux profiling with performance counters")
3108 "perf is a tool suite for profiling using hardware performance counters,
3109 with support in the Linux kernel. perf can instrument CPU performance
3110 counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable
3111 of lightweight profiling. This package contains the user-land tools and in
3112 particular the @code{perf} command.")
3113 (license (package-license linux-libre))))
3115 (define-public pflask
3121 (uri (string-append "https://github.com/ghedo/pflask/archive/v"
3123 (file-name (string-append name "-" version ".tar.gz"))
3126 "1g8fjj67dfkc2s0852l9vqi1pm61gp4rxbpzbzg780f5s5hd1fys"))))
3127 (build-system cmake-build-system)
3129 '(#:tests? #f)) ; no tests
3130 (home-page "https://ghedo.github.io/pflask/")
3131 (synopsis "Simple tool for creating Linux namespace containers")
3132 (description "pflask is a simple tool for creating Linux namespace
3133 containers. It can be used for running a command or even booting an OS inside
3134 an isolated container, created with the help of Linux namespaces. It is
3135 similar in functionality to chroot, although pflask provides better isolation
3136 thanks to the use of namespaces.")
3137 (license license:bsd-2)))
3139 (define-public singularity
3141 (name "singularity")
3145 (uri (string-append "https://github.com/singularityware/singularity/"
3146 "releases/download/" version
3147 "/singularity-" version ".tar.gz"))
3150 "1whx0hqqi1326scgdxxxa1d94vn95mnq0drid6s8wdp84ni4d3gk"))
3151 (modules '((guix build utils)))
3154 ;; Do not create directories in /var.
3155 (substitute* "Makefile.in"
3156 (("\\$\\(MAKE\\) .*install-data-hook") ""))
3158 ;; The original source overrides PATH so that it points to
3159 ;; /bin, /usr/local/bin, etc., which obviously doesn't work
3160 ;; on Guix System. Leave PATH unchanged so we refer to the
3161 ;; installed Coreutils, grep, etc.
3162 (substitute* "bin/singularity.in"
3164 (string-append "#" all "\n")))
3166 (substitute* (find-files "libexec/cli" "\\.exec$")
3167 (("\\$SINGULARITY_libexecdir/singularity/bin/([a-z]+)-suid"
3169 (string-append "/run/setuid-programs/singularity-"
3170 program "-helper")))
3172 (build-system gnu-build-system)
3174 `(#:configure-flags '("--localstatedir=/var")
3176 (modify-phases %standard-phases
3177 (add-after 'unpack 'patch-reference-to-squashfs-tools
3179 (substitute* "libexec/cli/build.exec"
3180 (("if ! singularity_which mksquashfs") "if 0")
3181 (("if ! mksquashfs")
3182 (string-append "if ! " (which "mksquashfs"))))
3185 `(("libarchive" ,libarchive)
3186 ("python" ,python-wrapper)
3189 ("squashfs-tools" ,squashfs-tools)))
3190 (home-page "https://singularity.lbl.gov/")
3191 (synopsis "Container platform")
3192 (description "Singularity is a container platform supporting a number of
3193 container image formats. It can build SquashFS container images or import
3194 existing Docker images. Singularity requires kernel support for container
3195 isolation or root privileges.")
3196 (license license:bsd-3)))
3198 (define-public hdparm
3204 (uri (string-append "mirror://sourceforge/hdparm/hdparm/"
3205 "hdparm-" version ".tar.gz"))
3208 "03z1qm8zbgpxagk3994lvp24yqsshjibkwg05v9p3q1w7y48xrws"))))
3209 (build-system gnu-build-system)
3211 `(#:make-flags (let ((out (assoc-ref %outputs "out")))
3212 (list (string-append "binprefix=" out)
3213 (string-append "manprefix=" out)
3216 (modify-phases %standard-phases
3217 (delete 'configure)) ; no configure script
3218 #:tests? #f)) ; no test suite
3219 (home-page "https://sourceforge.net/projects/hdparm/")
3220 (synopsis "View and tune ATA disk drive parameters")
3222 "@command{hdparm} is a command-line utility to control ATA controllers and
3223 disk drives. It can increase performance and/or reliability by careful tuning
3224 of hardware settings like power and acoustic management, DMA modes, and caching.
3225 It can also display detailed device information, or be used as a simple
3226 performance benchmarking tool.
3228 @command{hdparm} provides a command line interface to various Linux kernel
3229 interfaces provided by the SATA/ATA/SAS @code{libata} subsystem, and the older
3230 IDE driver subsystem. Many external USB drive enclosures with SCSI-ATA Command
3231 Translation (@dfn{SAT}) are also supported.")
3232 (license (license:non-copyleft "file://LICENSE.TXT"))))
3234 (define-public rfkill
3240 (uri (string-append "mirror://kernel.org/software/network/"
3241 name "/" name "-" version ".tar.xz"))
3244 "0snqj5h0y991lszbigbyyqb8swj0hxajc1vfqg2scfay44231bp0"))))
3245 (build-system gnu-build-system)
3247 `(#:make-flags (list "CC=gcc"
3248 (string-append "PREFIX=" %output))
3249 #:phases (modify-phases %standard-phases
3250 (delete 'configure))
3252 (home-page "https://wireless.wiki.kernel.org/en/users/Documentation/rfkill")
3253 (synopsis "Tool for enabling and disabling wireless devices")
3255 "rfkill is a simple tool for accessing the rfkill device interface,
3256 which is used to enable and disable wireless networking devices, typically
3257 WLAN, Bluetooth and mobile broadband.")
3258 (license (license:non-copyleft "file://COPYING"
3259 "See COPYING in the distribution."))
3260 ;; rfkill is part of util-linux as of 2.31.
3261 (properties `((superseded . ,util-linux)))))
3269 (uri (string-append "mirror://sourceforge/acpiclient/acpiclient/"
3270 version "/" name "-" version ".tar.gz"))
3273 "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp"))))
3274 (build-system gnu-build-system)
3275 (home-page "http://acpiclient.sourceforge.net")
3276 (synopsis "Display information on ACPI devices")
3277 (description "@code{acpi} attempts to replicate the functionality of the
3278 \"old\" @code{apm} command on ACPI systems, including battery and thermal
3279 information. It does not support ACPI suspending, only displays information
3280 about ACPI devices.")
3281 (license license:gpl2+)))
3283 (define-public acpid
3289 (uri (string-append "mirror://sourceforge/acpid2/acpid-"
3293 "1hrc0xm6q12knbgzhq0i8g2rfrkwcvh1asd7k9rs3nc5xmlwd7gw"))))
3294 (build-system gnu-build-system)
3295 (home-page "https://sourceforge.net/projects/acpid2/")
3296 (synopsis "Daemon for delivering ACPI events to user-space programs")
3298 "acpid is designed to notify user-space programs of Advanced
3299 Configuration and Power Interface (ACPI) events. acpid should be started
3300 during the system boot, and will run as a background process. When an ACPI
3301 event is received from the kernel, acpid will examine the list of rules
3302 specified in /etc/acpi/events and execute the rules that match the event.")
3303 (license license:gpl2+)))
3305 (define-public sysfsutils
3314 "mirror://sourceforge/linux-diag/sysfsutils/" version "/sysfsutils-"
3317 (base32 "12i0ip11xbfcjzxz4r10cvz7mbzgq1hfcdn97w6zz7sm3wndwrg8"))))
3318 (build-system gnu-build-system)
3319 (home-page "http://linux-diag.sourceforge.net/Sysfsutils.html")
3320 (synopsis "System utilities based on Linux sysfs")
3322 "These are a set of utilities built upon sysfs, a virtual file system in
3323 Linux kernel versions 2.5+ that exposes a system's device tree. The package
3324 also contains the libsysfs library.")
3325 ;; The library is under lgpl2.1+ (all files say "or any later version").
3326 ;; The rest is mostly gpl2, with a few files indicating gpl2+.
3327 (license (list license:gpl2 license:gpl2+ license:lgpl2.1+))))
3329 (define-public sysfsutils-1
3331 (inherit sysfsutils)
3338 "mirror://sourceforge/linux-diag/sysfsutils/sysfsutils-" version
3339 "/sysfsutils-" version ".tar.gz"))
3341 (base32 "0kdhs07fm8263pxwd5blwn2x211cg4fk63fyf9ijcdkvzmwxrqq3"))
3342 (modules '((guix build utils)))
3345 (substitute* "Makefile.in"
3346 (("includedir = /usr/include/sysfs")
3347 "includedir = @includedir@"))
3348 (substitute* "configure"
3349 (("includedir='(\\$\\{prefix\\}/include)'" all orig)
3350 (string-append "includedir='" orig "/sysfs'")))
3352 (synopsis "System utilities based on Linux sysfs (version 1.x)")))
3354 (define-public cpufrequtils
3356 (name "cpufrequtils")
3361 (uri (string-append "mirror://kernel.org/linux/utils/kernel/cpufreq/"
3362 "cpufrequtils-" version ".tar.gz"))
3364 (base32 "0qfqv7nqmjfr3p0bwrdlxkiqwqr7vmx053cadaa548ybqbghxmvm"))
3365 (patches (search-patches "cpufrequtils-fix-aclocal.patch"))))
3366 (build-system gnu-build-system)
3368 `(("sysfsutils" ,sysfsutils-1)))
3370 '(#:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="
3371 (assoc-ref %outputs "out") "/lib"))))
3372 (home-page "https://www.kernel.org/pub/linux/utils/kernel/cpufreq/")
3373 (synopsis "Utilities to get and set CPU frequency on Linux")
3375 "The cpufrequtils suite contains utilities to retrieve CPU frequency
3376 information, and set the CPU frequency if supported, using the cpufreq
3377 capabilities of the Linux kernel.")
3378 (license license:gpl2)))
3380 (define-public libraw1394
3387 "mirror://kernel.org/linux/libs/ieee1394/"
3388 name "-" version ".tar.xz"))
3391 "0pm5b415j1qdzyw38wdv8h7ff4yx20831z1727mpsb6jc6bwdk03"))))
3392 (build-system gnu-build-system)
3393 (home-page "https://ieee1394.wiki.kernel.org/index.php/Main_Page")
3394 (synopsis "Interface library for the Linux IEEE1394 drivers")
3396 "Libraw1394 is the only supported interface to the kernel side raw1394 of
3397 the Linux IEEE-1394 subsystem, which provides direct access to the connected
3398 1394 buses to user space. Through libraw1394/raw1394, applications can directly
3399 send to and receive from other nodes without requiring a kernel driver for the
3400 protocol in question.")
3401 (license license:lgpl2.1+)))
3403 (define-public libavc1394
3409 (uri (string-append "mirror://sourceforge/libavc1394/libavc1394/"
3410 name "-" version ".tar.gz"))
3413 "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw"))))
3414 (build-system gnu-build-system)
3416 `(("pkg-config" ,pkg-config)))
3418 `(("libraw1394" ,libraw1394))) ; required by libavc1394.pc
3419 (home-page "https://sourceforge.net/projects/libavc1394/")
3420 (synopsis "AV/C protocol library for IEEE 1394")
3422 "Libavc1394 is a programming interface to the AV/C specification from
3423 the 1394 Trade Association. AV/C stands for Audio/Video Control.")
3424 (license license:lgpl2.1+)))
3426 (define-public libiec61883
3428 (name "libiec61883")
3433 "mirror://kernel.org/linux/libs/ieee1394/"
3434 name "-" version ".tar.xz"))
3437 "17ph458zya2l8dr2xwqnzy195qd9swrir31g78qkgb3g4xz2rq6i"))))
3438 (build-system gnu-build-system)
3440 `(("pkg-config" ,pkg-config)))
3442 `(("libraw1394" ,libraw1394))) ; required by libiec61883.pc
3443 (home-page "https://ieee1394.wiki.kernel.org/index.php/Main_Page")
3444 (synopsis "Isochronous streaming media library for IEEE 1394")
3446 "The libiec61883 library provides a higher level API for streaming DV,
3447 MPEG-2 and audio over Linux IEEE 1394.")
3448 (license license:lgpl2.1+)))
3450 (define-public mdadm
3457 "mirror://kernel.org/linux/utils/raid/mdadm/mdadm-"
3461 "0jjgjgqijpdp7ijh8slzzjjw690kydb1jjadf0x5ilq85628hxmb"))))
3462 (build-system gnu-build-system)
3466 `(#:make-flags (let ((out (assoc-ref %outputs "out")))
3470 ;; TODO: tell it where to find 'sendmail'
3471 ;; (string-append "MAILCMD=" <???> "/sbin/sendmail")
3472 (string-append "BINDIR=" out "/sbin")
3473 (string-append "MANDIR=" out "/share/man")
3474 (string-append "UDEVDIR=" out "/lib/udev")))
3476 (modify-phases %standard-phases
3477 (add-before 'build 'patch-program-paths
3478 (lambda* (#:key inputs #:allow-other-keys)
3479 (let ((coreutils (assoc-ref inputs "coreutils")))
3480 (substitute* "udev-md-raid-arrays.rules"
3481 (("/usr/bin/(readlink|basename)" all program)
3482 (string-append coreutils "/bin/" program))))
3484 (add-before 'build 'remove-W-error
3486 ;; We cannot build with -Werror on i686 due to a
3487 ;; 'sign-compare' warning in util.c.
3488 (substitute* "Makefile"
3491 (delete 'configure))
3492 ;;tests must be done as root
3494 (home-page "http://neil.brown.name/blog/mdadm")
3495 (synopsis "Tool for managing Linux Software RAID arrays")
3497 "mdadm is a tool for managing Linux Software RAID arrays. It can create,
3498 assemble, report on, and monitor arrays. It can also move spares between raid
3499 arrays when needed.")
3500 (license license:gpl2+)))
3502 (define-public mdadm-static
3505 (name "mdadm-static")
3507 (substitute-keyword-arguments (package-arguments mdadm)
3508 ((#:make-flags flags)
3509 `(cons "LDFLAGS = -static" ,flags))
3511 `(modify-phases ,phases
3512 (add-after 'install 'remove-cruft
3513 (lambda* (#:key outputs #:allow-other-keys)
3514 (let* ((out (assoc-ref outputs "out"))
3515 (precious? (lambda (file)
3516 (member file '("." ".." "sbin"))))
3517 (directories (scandir out (negate precious?))))
3518 (with-directory-excursion out
3519 (for-each delete-file-recursively directories)
3520 (remove-store-references "sbin/mdadm")
3521 (delete-file "sbin/mdmon")
3523 ((#:modules modules %gnu-build-system-modules)
3524 `((ice-9 ftw) ,@modules))
3525 ((#:strip-flags _ '())
3526 ''("--strip-all")) ;strip a few extra KiB
3527 ((#:allowed-references _ '("out"))
3528 '("out")))) ;refer only self
3529 (synopsis "Statically-linked 'mdadm' command for use in an initrd")))
3531 (define-public multipath-tools
3533 (name "multipath-tools")
3537 (uri (string-append "https://git.opensvc.com/?p=multipath-tools/"
3538 ".git;a=snapshot;h=" version ";sf=tgz"))
3539 (file-name (string-append name "-" version ".tar.gz"))
3542 "0kb4mhzwyygdbikikmby6hj39pb3nrzv05v526c75wnycwnpxg31"))
3543 (modules '((guix build utils)))
3546 ;; Drop bundled valgrind headers.
3547 (delete-file-recursively "third-party")
3548 (substitute* '("multipathd/main.c"
3549 "libmultipath/debug.c")
3550 (("#include \"../third-party/")
3553 (build-system gnu-build-system)
3555 '(#:tests? #f ; no tests
3556 #:make-flags (list "CC=gcc"
3557 (string-append "DESTDIR="
3558 (assoc-ref %outputs "out"))
3560 (string-append "LDFLAGS=-Wl,-rpath="
3561 (assoc-ref %outputs "out")
3564 (modify-phases %standard-phases
3565 (add-after 'unpack 'patch-source
3566 (lambda* (#:key inputs #:allow-other-keys)
3567 (let ((lvm2 (assoc-ref inputs "lvm2"))
3568 (udev (assoc-ref inputs "udev")))
3569 (substitute* "Makefile.inc"
3570 (("\\$\\(prefix\\)/usr") "$(prefix)")
3571 ;; Do not save timestamp to avoid gzip "timestamp
3572 ;; out-of-range" warnings.
3573 (("gzip -9") "gzip -9n"))
3574 (substitute* '("kpartx/Makefile" "libmultipath/Makefile")
3575 (("/usr/include/libdevmapper.h")
3576 (string-append lvm2 "/include/libdevmapper.h"))
3577 (("/usr/include/libudev.h")
3578 (string-append udev "/include/libudev.h")))
3580 (delete 'configure)))) ; no configure script
3583 ("pkg-config" ,pkg-config)
3584 ("valgrind" ,valgrind)))
3586 `(("json-c" ,json-c)
3588 ("liburcu" ,liburcu)
3590 ("readline" ,readline)
3592 (home-page "http://christophe.varoqui.free.fr/")
3593 (synopsis "Access block devices through multiple paths")
3595 "This package provides the following binaries to drive the
3596 Linux Device Mapper multipathing driver:
3598 @item @command{multipath} - Device mapper target autoconfig.
3599 @item @command{multipathd} - Multipath daemon.
3600 @item @command{mpathpersist} - Manages SCSI persistent reservations on
3601 @code{dm} multipath devices.
3602 @item @command{kpartx} - Create device maps from partition tables.
3604 (license (list license:gpl2+ ; main distribution
3605 license:lgpl2.0+)))) ; libmpathcmd/mpath_cmd.h
3607 (define-public libaio
3614 (string-append "https://releases.pagure.org/libaio/"
3615 name "-" version ".tar.gz")))
3618 "0ajhzbqjwsmz51gwccfyw6w9k4j4gmxcl2ph30sfn2gxv0d8gkv2"))))
3619 (build-system gnu-build-system)
3622 (list "CC=gcc" (string-append "prefix=" %output))
3623 #:test-target "partcheck" ; need root for a full 'check'
3625 (modify-phases %standard-phases (delete 'configure)))) ; no configure script
3626 (home-page "https://pagure.io/libaio")
3627 (synopsis "Linux-native asynchronous I/O access library")
3629 "This library enables userspace to use Linux kernel asynchronous I/O
3630 system calls, important for the performance of databases and other advanced
3632 (license license:lgpl2.1+)))
3640 (uri (string-append "mirror://kernel.org/linux/bluetooth/sbc-"
3644 "1jal98pnrjkzxlkiqy0ykh4qmgnydz9bmsp1jn581p5kddpg92si"))))
3645 (build-system gnu-build-system)
3647 `(("libsndfile" ,libsndfile)))
3649 `(("pkg-config" ,pkg-config)))
3650 (home-page "https://www.kernel.org/pub/linux/bluetooth/")
3651 (synopsis "Bluetooth subband audio codec")
3653 "The SBC is a digital audio encoder and decoder used to transfer data to
3654 Bluetooth audio output devices like headphones or loudspeakers.")
3655 (license license:gpl2+)))
3657 (define-public bluez
3664 "mirror://kernel.org/linux/bluetooth/bluez-"
3668 "048r91vx9gs5nwwbah2s0xig04nwk14c5s0vb7qmaqdvighsmz2z"))))
3669 (build-system gnu-build-system)
3672 (let ((out (assoc-ref %outputs "out")))
3673 (list "--sysconfdir=/etc"
3674 "--localstatedir=/var"
3677 ;; Install dbus/udev files to the correct location.
3678 (string-append "--with-dbusconfdir=" out "/etc")
3679 (string-append "--with-udevdir=" out "/lib/udev")))
3681 (modify-phases %standard-phases
3682 ;; Test unit/test-gatt fails unpredictably. Seems to be a timing
3683 ;; issue (discussion on upstream mailing list:
3684 ;; https://marc.info/?t=149578476300002&r=1&w=2)
3685 (add-before 'check 'skip-wonky-test
3687 (substitute* "unit/test-gatt.c"
3688 (("tester_init\\(&argc, &argv\\);") "return 77;"))
3690 (add-after 'install 'post-install
3691 (lambda* (#:key inputs outputs #:allow-other-keys)
3692 (let* ((out (assoc-ref outputs "out"))
3693 (servicedir (string-append out "/share/dbus-1/services"))
3694 (service "obexd/src/org.bluez.obex.service")
3695 (rule (string-append
3696 out "/lib/udev/rules.d/97-hid2hci.rules")))
3697 ;; Install the obex dbus service file.
3698 (substitute* service
3700 (string-append out "/libexec/bluetooth/obexd")))
3701 (install-file service servicedir)
3702 ;; Fix paths in the udev rule.
3704 (("hid2hci --method")
3705 (string-append out "/lib/udev/hid2hci --method"))
3707 (string-append (assoc-ref inputs "eudev") "/bin/udevadm")))
3710 `(("pkg-config" ,pkg-config)
3711 ("gettext" ,gettext-minimal)))
3716 ("libical" ,libical)
3717 ("readline" ,readline)))
3718 (home-page "http://www.bluez.org/")
3719 (synopsis "Linux Bluetooth protocol stack")
3721 "BlueZ provides support for the core Bluetooth layers and protocols. It
3722 is flexible, efficient and uses a modular implementation.")
3723 (license license:gpl2+)))
3725 (define-public fuse-exfat
3732 "https://github.com/relan/exfat/releases/download/v"
3733 version "/" name "-" version ".tar.gz"))
3736 "1lz00q8g4590mrdqmf13ba1s9zrqq645ymgm5p9y99ad0qv22r87"))))
3737 (build-system gnu-build-system)
3739 `(("pkg-config" ,pkg-config)))
3742 (home-page "https://github.com/relan/exfat")
3743 (synopsis "Mount exFAT file systems")
3745 "This package provides a FUSE-based file system that provides read and
3746 write access to exFAT devices.")
3747 (license license:gpl2+)))
3749 (define-public fuseiso
3752 (version "20070708")
3755 (uri (string-append "mirror://sourceforge/fuseiso/fuseiso/"
3756 version "/fuseiso-" version ".tar.bz2"))
3759 "127xql52dcdhmh7s5m9xc6q39jdlj3zhbjar1j821kb6gl3jw94b"))))
3760 (build-system gnu-build-system)
3762 `(("pkg-config" ,pkg-config)))
3767 (home-page "https://sourceforge.net/projects/fuseiso/")
3768 (synopsis "Mount ISO file system images")
3770 "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,
3771 .bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock
3772 Ridge, Joliet, and zisofs.")
3773 (license license:gpl2)))
3782 "http://www.nico.schottelius.org/software/gpm/archives/gpm-"
3783 version ".tar.bz2"))
3784 (patches (search-patches "gpm-glibc-2.26.patch"))
3787 "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh"))))
3788 (build-system gnu-build-system)
3790 '(#:phases (modify-phases %standard-phases
3793 ;; The tarball was not generated with 'make dist' so we
3794 ;; need to bootstrap things ourselves.
3795 (substitute* "autogen.sh"
3796 (("/bin/sh") (which "sh")))
3797 (invoke "./autogen.sh")
3798 (patch-makefile-SHELL "Makefile.include.in")
3801 ;; Make sure programs find libgpm.so.
3802 #:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
3803 (assoc-ref %outputs "out")
3806 `(("texinfo" ,texinfo)
3809 ("autoconf" ,autoconf)
3810 ("automake" ,automake)
3811 ("libtool" ,libtool)))
3812 (home-page "http://www.nico.schottelius.org/software/gpm/")
3813 (synopsis "Mouse support for the Linux console")
3815 "The GPM (general-purpose mouse) daemon is a mouse server for
3816 applications running on the Linux console. It allows users to select items
3817 and copy/paste text in the console and in xterm.")
3818 (license license:gpl2+)))
3820 (define-public btrfs-progs
3822 (name "btrfs-progs")
3826 (uri (string-append "mirror://kernel.org/linux/kernel/"
3827 "people/kdave/btrfs-progs/"
3828 "btrfs-progs-v" version ".tar.xz"))
3831 "06xybs7rglxjqkbzl2409acb3rgmnc5zc0xhyaxsc2p1x5yipfcw"))))
3832 (build-system gnu-build-system)
3834 "static")) ; static versions of the binaries in "out"
3836 '(#:phases (modify-phases %standard-phases
3837 (add-after 'build 'build-static
3838 (lambda _ (invoke "make" "static")))
3839 (add-after 'install 'install-bash-completion
3840 (lambda* (#:key outputs #:allow-other-keys)
3841 (let* ((out (assoc-ref outputs "out"))
3842 (bashcomp (string-append out "/etc/bash_completion.d")))
3844 (copy-file "btrfs-completion"
3845 (string-append bashcomp "/btrfs"))
3847 (add-after 'install 'install-static
3848 (let ((staticbin (string-append (assoc-ref %outputs "static")
3852 (string-append "bindir=" staticbin)
3853 "install-static")))))
3854 #:tests? #f ; XXX: require the 'btrfs' kernel module.
3855 #:test-target "test"
3856 #:parallel-tests? #f)) ; tests fail when run in parallel
3857 (inputs `(("e2fsprogs" ,e2fsprogs)
3858 ("libblkid" ,util-linux)
3859 ("libblkid:static" ,util-linux "static")
3860 ("libuuid" ,util-linux)
3861 ("libuuid:static" ,util-linux "static")
3864 ("zlib:static" ,zlib "static")
3866 (native-inputs `(("pkg-config" ,pkg-config)
3867 ("asciidoc" ,asciidoc)
3870 ;; For building documentation.
3871 ("libxml2" ,libxml2)
3872 ("docbook-xsl" ,docbook-xsl)
3876 ;; The tests need 'grep' with perl regexp support.
3878 (home-page "https://btrfs.wiki.kernel.org/index.php/Main_Page")
3879 (synopsis "Create and manage btrfs copy-on-write file systems")
3880 (description "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux
3881 aimed at implementing advanced features while focusing on fault tolerance,
3882 repair and easy administration.")
3883 ;; GPL2+: crc32.c, radix-tree.c, raid6.c, rbtree.c.
3884 ;; GPL2: Everything else.
3885 (license (list license:gpl2 license:gpl2+))))
3887 (define-public btrfs-progs/static
3889 (name "btrfs-progs-static")
3890 (version (package-version btrfs-progs))
3892 (build-system trivial-build-system)
3894 `(("btrfs-progs:static" ,btrfs-progs "static")))
3896 `(#:modules ((guix build utils))
3899 (use-modules (guix build utils)
3903 (let* ((btrfs (assoc-ref %build-inputs "btrfs-progs:static"))
3904 (out (assoc-ref %outputs "out"))
3905 (source (string-append btrfs "/bin/btrfs.static"))
3906 (target (string-append out "/bin/btrfs")))
3907 (mkdir-p (dirname target))
3908 (copy-file source target)
3909 (remove-store-references target)
3910 (chmod target #o555)
3912 (home-page (package-home-page btrfs-progs))
3913 (synopsis "Statically-linked btrfs command from btrfs-progs")
3914 (description "This package provides the statically-linked @command{btrfs}
3915 from the btrfs-progs package. It is meant to be used in initrds.")
3916 (license (package-license btrfs-progs))))
3918 (define-public f2fs-tools-1.7
3925 "https://git.kernel.org/cgit/linux/kernel/git/jaegeuk"
3926 "/f2fs-tools.git/snapshot/f2fs-tools-" version ".tar.gz"))
3929 "1m6bn1ibq0p53m0n97il91xqgjgn2pzlz74lb5bfzassx7159m1k"))))
3931 (build-system gnu-build-system)
3934 (modify-phases %standard-phases
3935 (add-after 'install 'install-headers
3936 (lambda* (#:key outputs #:allow-other-keys)
3937 (let* ((out (assoc-ref outputs "out"))
3938 (out-include (string-append out "/include")))
3939 (install-file "include/f2fs_fs.h" out-include)
3940 (install-file "mkfs/f2fs_format_utils.h" out-include)
3943 `(("autoconf" ,autoconf)
3944 ("automake" ,automake)
3945 ("libtool" ,libtool)
3946 ("pkg-config" ,pkg-config)))
3948 `(("libuuid" ,util-linux)
3949 ("libselinux" ,libselinux)))
3950 (home-page "https://f2fs.wiki.kernel.org/")
3951 (synopsis "Userland tools for f2fs")
3953 "F2FS, the Flash-Friendly File System, is a modern file system
3954 designed to be fast and durable on flash devices such as solid-state
3955 disks and SD cards. This package provides the userland utilities.")
3956 ;; The formatting utility, libf2fs and include/f2fs_fs.h is dual
3957 ;; GPL2/LGPL2.1, everything else is GPL2 only. See 'COPYING'.
3958 (license (list license:gpl2 license:lgpl2.1))))
3960 (define-public f2fs-tools
3962 (inherit f2fs-tools-1.7)
3968 "https://git.kernel.org/cgit/linux/kernel/git/jaegeuk"
3969 "/f2fs-tools.git/snapshot/f2fs-tools-" version ".tar.gz"))
3972 "15pn2fm9knn7p1vzfzy6msnrdl14p6y1gn4m2ka6ba5bzx6lw4p2"))))
3974 `(("libuuid" ,util-linux)))))
3976 (define-public freefall
3979 (version (package-version linux-libre))
3980 (source (package-source linux-libre))
3981 (build-system gnu-build-system)
3983 '(#:phases (modify-phases %standard-phases
3984 (add-after 'unpack 'enter-subdirectory
3986 (chdir "tools/laptop/freefall")
3989 (add-before 'build 'increase-timeout
3991 ;; The default of 2 seconds is too low: it assumes an
3992 ;; open lid and AC power without actually checking.
3993 (substitute* "freefall.c"
3994 (("alarm\\(2\\)") "alarm(5)"))
3996 #:make-flags (list (string-append "PREFIX="
3997 (assoc-ref %outputs "out"))
3999 #:tests? #f)) ;no tests
4000 (home-page (package-home-page linux-libre))
4001 (synopsis "Free-fall protection for spinning laptop hard drives")
4003 "Prevents shock damage to the internal spinning hard drive(s) of some
4004 HP and Dell laptops. When sudden movement is detected, all input/output
4005 operations on the drive are suspended and its heads are parked on the ramp,
4006 where they are less likely to cause damage to the spinning disc. Requires a
4007 drive that supports the ATA/ATAPI-7 IDLE IMMEDIATE command with unload
4008 feature, and a laptop with an accelerometer. It has no effect on SSDs.")
4009 (license license:gpl2)))
4011 (define-public thinkfan
4019 (url "https://github.com/vmatare/thinkfan.git")
4021 (file-name (git-file-name name version))
4023 (base32 "107vw0962hrwva3wra9n3hxlbfzg82ldc10qssv3dspja88g8psr"))))
4024 (build-system cmake-build-system)
4026 `(#:modules ((guix build cmake-build-system)
4029 #:tests? #f ; no test target
4031 ;; Enable reading temperatures from hard disks via S.M.A.R.T.
4032 ;; Upstream ‘defaults to OFF because libatasmart seems to be horribly
4034 `("-DUSE_ATASMART:BOOL=ON")
4036 (modify-phases %standard-phases
4037 (add-after 'unpack 'create-init-scripts
4038 ;; CMakeLists.txt relies on build-time symptoms of OpenRC and
4039 ;; systemd to patch and install their service files. Fake their
4040 ;; presence rather than duplicating the build system below. Leave
4041 ;; things like ‘/bin/kill’ because they're not worth a dependency.
4042 ;; The sysvinit needs manual patching, but since upstream doesn't
4043 ;; even provide the option to install it: don't.
4044 (lambda* (#:key outputs #:allow-other-keys)
4045 (let* ((out (assoc-ref outputs "out"))
4046 (share (string-append out "/share/" ,name)))
4047 (substitute* "CMakeLists.txt"
4048 (("pkg_check_modules\\((OPENRC|SYSTEMD) .*" _ package)
4049 (format "option(~a_FOUND \"Faked\" ON)\n" package))
4050 ;; That was easy! Now we just need to fix the destinations.
4052 (string-append out directory)))
4055 `(("pkg-config" ,pkg-config)))
4057 `(("libatasmart" ,libatasmart)
4058 ("yaml-cpp" ,yaml-cpp)))
4059 (home-page "http://thinkfan.sourceforge.net/")
4060 (synopsis "Simple fan control program")
4062 "Thinkfan is a simple fan control program. It reads temperatures,
4063 checks them against configured limits and switches to appropriate (also
4064 pre-configured) fan level. It requires a working @code{thinkpad_acpi} or any
4065 other @code{hwmon} driver that enables temperature reading and fan control
4067 (license license:gpl3+)))
4069 (define-public tpacpi-bat
4077 (url "https://github.com/teleshoes/tpacpi-bat.git")
4078 (commit (string-append "v" version))))
4079 (file-name (git-file-name name version))
4081 (base32 "0wbaz34z99gqx721alh5vmpxpj2yxg3x9m8jqyivfi1wfpwc2nd5"))))
4082 (build-system gnu-build-system)
4084 `(#:tests? #f ; no test target
4086 (modify-phases %standard-phases
4087 (add-after 'unpack 'refer-to-inputs
4089 (substitute* "tpacpi-bat"
4091 (format "~a " (which "cat")))
4092 ;; tpacpi-bat modprobes the acpi_call kernel module if it's not
4093 ;; loaded. That's the administrator's prerogative; disable it.
4094 (("system \"(modprobe .*)\"" _ match)
4095 (format "die \"Please run ‘~a’ first.\\n\"" match)))
4097 (delete 'configure) ; nothing to configure
4098 (delete 'build) ; nothing to build
4100 (lambda* (#:key outputs #:allow-other-keys)
4101 (let* ((out (assoc-ref outputs "out"))
4102 (bin (string-append out "/bin"))
4103 (doc (string-append out "/share/doc/" ,name "-" ,version)))
4104 (install-file "tpacpi-bat" bin)
4106 ;; There's no man page. Install other forms of documentation.
4107 (for-each (lambda (file)
4108 (let ((target (string-append doc "/" file)))
4109 (mkdir-p (dirname target))
4110 (copy-recursively file target)))
4111 (list "battery_asl" "examples" "README.md"))
4115 (home-page "https://github.com/teleshoes/tpacpi-bat")
4116 (synopsis "ThinkPad battery charge controller")
4118 "Tpacpi-bat is a command-line interface to control battery charging on
4119 @uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo
4120 ThinkPad models released after 2011}, starting with the xx20 series. It can
4121 query and set the thresholds at which one or both batteries will start and stop
4122 charging, inhibit charging batteries for a set period of time, or force them to
4123 discharge when they otherwise would not.
4125 This tool merely exposes ACPI calls provided by the @code{acpi_call} Linux
4126 kernel module provided by the @code{acpi-call-linux-module} package, which must
4127 be installed and loaded separately. Only the original vendor firmware is
4129 (license license:gpl3+)))
4131 (define-public ntfs-3g
4134 (version "2017.3.23")
4137 (uri (string-append "https://tuxera.com/opensource/"
4138 "ntfs-3g_ntfsprogs-" version ".tgz"))
4139 (patches (search-patches "ntfs-3g-CVE-2019-9755.patch"))
4142 "1mb228p80hv97pgk3myyvgp975r9mxq56c6bdn1n24kngcfh4niy"))
4143 (modules '((guix build utils)))
4145 ;; Install under $prefix.
4146 (substitute* '("src/Makefile.in" "ntfsprogs/Makefile.in")
4150 (build-system gnu-build-system)
4151 (inputs `(("util-linux" ,util-linux)
4152 ("fuse" ,fuse))) ;libuuid
4153 (native-inputs `(("pkg-config" ,pkg-config)))
4155 '(#:configure-flags (list "--exec-prefix=${prefix}"
4156 "--with-fuse=external" ;use our own FUSE
4157 "--enable-mount-helper"
4158 "--enable-posix-acls"
4159 "--enable-xattr-mappings")
4161 (modify-phases %standard-phases
4162 ;; If users install ntfs-3g, they probably want to make it the
4163 ;; default driver as well, so we opt for sensible defaults and link
4164 ;; mount.ntfs to mount.ntfs-3g. (libmount tries to run mount.ntfs to
4165 ;; mount NTFS file systems.)
4166 (add-after 'install 'install-link
4167 (lambda* (#:key outputs #:allow-other-keys)
4168 (let* ((out (assoc-ref outputs "out"))
4169 (sbin (string-append out "/sbin")))
4170 (symlink "mount.ntfs-3g"
4171 (string-append sbin "/mount.ntfs")))
4173 (home-page "https://www.tuxera.com/community/open-source-ntfs-3g/")
4174 (synopsis "Read-write access to NTFS file systems")
4176 "NTFS-3G provides read-write access to NTFS file systems, which are
4177 commonly found on Microsoft Windows. It is implemented as a FUSE file system.
4178 The package provides additional NTFS tools.")
4179 (license license:gpl2+)))
4181 (define-public rdma-core
4187 (uri (string-append "https://github.com/linux-rdma/rdma-core"
4188 "/releases/download/v" version "/rdma-core-"
4192 "0w03zd49k96bmly44qc8l0s9l671sd26k4wrilsp13xaspy048kd"))))
4193 (build-system cmake-build-system)
4195 '(#:tests? #f ; no tests
4196 ;; Upstream uses the "ninja" build system and encourage distros
4197 ;; to do the same for consistency. They also recommend using the
4198 ;; "Release" build type.
4199 #:build-type "Release"
4200 #:configure-flags (list "-GNinja")
4202 (modify-phases %standard-phases
4206 "-j" (number->string (parallel-job-count)))))
4209 (invoke "ninja" "install"))))))
4212 ("pkg-config" ,pkg-config)
4213 ("python" ,python-wrapper)))
4217 (home-page "https://github.com/linux-rdma/rdma-core")
4218 (synopsis "Utilities and libraries for working with RDMA devices")
4220 "This package provides userspace components for the InfiniBand
4221 subsystem of the Linux kernel. Specifically it contains userspace
4222 libraries for the following device nodes:
4225 @item @file{/dev/infiniband/uverbsX} (@code{libibverbs})
4226 @item @file{/dev/infiniband/rdma_cm} (@code{librdmacm})
4227 @item @file{/dev/infiniband/umadX} (@code{libibumad})
4230 The following service daemons are also provided:
4232 @item @code{srp_daemon} (for the @code{ib_srp} kernel module)
4233 @item @code{iwpmd} (for iWARP kernel providers)
4234 @item @code{ibacm} (for InfiniBand communication management assistant)
4236 ;; All library code is dual licensed under GPL2 and a custom MIT
4237 ;; variant. The package also includes some components covered by
4238 ;; other licenses. Consult COPYING.md for full details.
4241 (license:x11-style "See COPYING.BSD_MIT in the distribution")
4242 license:bsd-2 ; Files referring to COPYING.BSD_FB
4243 license:cc0 ; most files in ccan/
4244 license:bsd-3)))) ; providers/hfi1verbs are dual GPL2/BSD-3
4246 (define-public perftest
4253 (uri (string-append "https://github.com/linux-rdma/perftest/releases/download/v"
4254 version "/perftest-" version ".g0927198.tar.gz"))
4256 (base32 "11ix4h0rrmqqyi84y55a9xnkvwsmwq0sywr46hvxzm4rqz4ma8vq"))))
4257 (build-system gnu-build-system)
4260 (modify-phases %standard-phases
4261 (add-after 'unpack 'patch-header-paths
4263 (substitute* '("src/raw_ethernet_fs_rate.c"
4264 "src/raw_ethernet_resources.c"
4265 "src/raw_ethernet_resources.h"
4266 "src/raw_ethernet_send_burst_lat.c"
4267 "src/raw_ethernet_send_bw.c"
4268 "src/raw_ethernet_send_lat.c")
4269 (("/usr/include/netinet/ip.h") "netinet/ip.h"))
4271 (inputs `(("rdma-core" ,rdma-core)))
4272 (home-page "https://github.com/linux-rdma/perftest/")
4273 (synopsis "Open Fabrics Enterprise Distribution (OFED) Performance Tests")
4274 (description "This is a collection of tests written over uverbs intended for
4275 use as a performance micro-benchmark. The tests may be used for hardware or
4276 software tuning as well as for functional testing.
4278 The collection contains a set of bandwidth and latency benchmark such as:
4280 @item Send - @code{ib_send_bw} and @code{ib_send_lat}
4281 @item RDMA Read - @code{ib_read_bw} and @code{ib_read_lat}
4282 @item RDMA Write - @code{ib_write_bw} and @code{ib_wriet_lat}
4283 @item RDMA Atomic - @code{ib_atomic_bw} and @code{ib_atomic_lat}
4284 @item Native Ethernet (when working with MOFED2) - @code{raw_ethernet_bw}, @code{raw_ethernet_lat}
4286 (license license:gpl2)))
4288 (define-public rng-tools
4291 (home-page "https://github.com/nhorman/rng-tools")
4295 (uri (git-reference (url home-page)
4296 (commit (string-append "v" version))))
4297 (file-name (git-file-name name version))
4300 "19f75m6mzg8h7b4snzg7d6ypvkz6nq32lrpi9ja95gqz4wsd18a5"))))
4301 (build-system gnu-build-system)
4303 `(;; Avoid using OpenSSL, curl, and libxml2, reducing the closure by 166 MiB.
4304 #:configure-flags '("--without-nistbeacon"
4305 "--without-pkcs11")))
4307 `(("autoconf" ,autoconf)
4308 ("automake" ,automake)
4309 ("pkg-config" ,pkg-config)))
4311 `(("libsysfs" ,sysfsutils)))
4312 (synopsis "Random number generator daemon")
4314 "Monitor a hardware random number generator, and supply entropy
4315 from that to the system kernel's @file{/dev/random} machinery.")
4316 ;; The source package is offered under the GPL2+, but the files
4317 ;; 'rngd_rdrand.c' and 'rdrand_asm.S' are only available under the GPL2.
4318 (license (list license:gpl2 license:gpl2+))))
4320 (define-public cpupower
4323 (version (package-version linux-libre))
4324 (source (package-source linux-libre))
4325 (build-system gnu-build-system)
4327 '(#:phases (modify-phases %standard-phases
4328 (add-after 'unpack 'enter-subdirectory
4330 (chdir "tools/power/cpupower")
4333 (add-before 'build 'fix-makefiles
4335 (substitute* "Makefile"
4337 (("/bin/(install|pwd)" _ command) command))
4338 (substitute* "bench/Makefile"
4339 (("\\$\\(CC\\) -o") "$(CC) $(LDFLAGS) -o"))
4341 #:make-flags (let ((out (assoc-ref %outputs "out")))
4342 (list (string-append "DESTDIR=" out)
4343 (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
4344 "docdir=/share/doc/cpupower"
4345 "confdir=$(docdir)/examples"
4346 ;; The Makefile recommends the following changes
4348 "PACKAGE_BUGREPORT=bug-guix@gnu.org"))
4349 #:tests? #f)) ;no tests
4350 (native-inputs `(("gettext" ,gettext-minimal)))
4351 (inputs `(("pciutils" ,pciutils)))
4352 (home-page (package-home-page linux-libre))
4353 (synopsis "CPU frequency and voltage scaling tools for Linux")
4355 "cpupower is a set of user-space tools that use the cpufreq feature of the
4356 Linux kernel to retrieve and control processor features related to power saving,
4357 such as frequency and voltage scaling.")
4358 (license license:gpl2)))
4360 (define-public x86-energy-perf-policy
4362 (name "x86-energy-perf-policy")
4363 (version (package-version linux-libre))
4364 (source (package-source linux-libre))
4365 (build-system gnu-build-system)
4369 (modify-phases %standard-phases
4370 (add-after 'unpack 'enter-subdirectory
4372 (chdir "tools/power/x86/x86_energy_perf_policy")
4375 (add-before 'build 'fix-makefile
4377 (substitute* "Makefile" (("/usr") ""))
4380 (let ((out (assoc-ref %outputs "out")))
4381 (list (string-append "DESTDIR=" out)
4382 (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")))))
4383 (supported-systems '("i686-linux" "x86_64-linux"))
4384 (home-page (package-home-page linux-libre))
4385 (synopsis "Display and update Intel-CPU energy-performance policy")
4387 "@command{x86_energy_perf_policy} displays and updates energy-performance
4388 policy settings specific to Intel Architecture Processors. Settings are
4389 accessed via Model Specific Register (MSR) updates, no matter if the Linux
4390 cpufreq sub-system is enabled or not.")
4391 (license license:gpl2)))
4393 (define-public haveged
4401 (url "https://github.com/jirka-h/haveged.git")
4403 (file-name (git-file-name name version))
4405 (base32 "1hrwzjd4byq4fdrg8svww3d8x449k80jxxrjy9v6jvzhfv19rvxr"))))
4406 (build-system gnu-build-system)
4407 (home-page "http://www.issihosts.com/haveged")
4408 (synopsis "Entropy source for the Linux random number generator")
4410 "haveged generates an unpredictable stream of random numbers for use by
4411 Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's
4412 standard mechanisms for filling the entropy pool may not be sufficient for
4413 systems with high needs or limited user interaction, such as headless servers.
4415 @command{haveged} runs as a privileged daemon, harvesting randomness from the
4416 indirect effects of hardware events on hidden processor state using the HArdware
4417 Volatile Entropy Gathering and Expansion (@dfn{HAVEGE}) algorithm. It tunes
4418 itself to its environment and provides the same built-in test suite for the
4419 output stream as used on certified hardware security devices.
4421 The quality of the randomness produced by this algorithm has not been proven.
4422 It is recommended to run it together with another entropy source like rngd, and
4423 not as a replacement for it.")
4424 (license (list (license:non-copyleft "file://nist/mconf.h")
4425 (license:non-copyleft "file://nist/packtest.c")
4426 license:public-domain ; nist/dfft.c
4427 license:gpl3+)))) ; everything else
4429 (define-public ecryptfs-utils
4431 (name "ecryptfs-utils")
4436 (uri (string-append "https://launchpad.net/ecryptfs/trunk/"
4437 version "/+download/ecryptfs-utils_"
4438 version ".orig.tar.gz"))
4441 "0zwq19siiwf09h7lwa7n7mgmrr8cxifp45lmwgcfr8c1gviv6b0i"))))
4442 (build-system gnu-build-system)
4444 `(#:configure-flags (list "--disable-pywrap")
4446 (modify-phases %standard-phases
4447 (add-after 'patch-source-shebangs 'patch-hardcoded-paths
4448 (lambda* (#:key inputs outputs #:allow-other-keys)
4449 (let ((out (assoc-ref outputs "out"))
4450 (utils-linux (assoc-ref inputs "utils-linux"))
4451 (cryptsetup (assoc-ref inputs "cryptsetup"))
4452 (linux-pam (assoc-ref inputs "linux-pam"))
4453 (lvm2 (assoc-ref inputs "lvm2")))
4454 (substitute* '("src/utils/ecryptfs-mount-private"
4455 "src/utils/ecryptfs-umount-private"
4456 "src/utils/ecryptfs-setup-private"
4457 "src/utils/ecryptfs-setup-swap"
4458 "src/utils/mount.ecryptfs.c"
4459 "src/utils/umount.ecryptfs.c"
4460 "src/pam_ecryptfs/pam_ecryptfs.c"
4461 "src/desktop/ecryptfs-mount-private.desktop.in"
4462 "src/desktop/ecryptfs-setup-private.desktop.in")
4464 (string-append utils-linux "/bin/mount"))
4466 (string-append utils-linux "/bin/umount"))
4467 (("/sbin/mount.ecryptfs_private")
4468 (string-append out "/sbin/mount.ecryptfs_private"))
4469 (("/sbin/umount.ecryptfs_private")
4470 (string-append out "/sbin/umount.ecryptfs_private"))
4471 (("/usr/bin/ecryptfs-mount-private")
4472 (string-append out "/bin/ecryptfs-mount-private"))
4473 (("/usr/bin/ecryptfs-rewrite-file")
4474 (string-append out "/bin/ecryptfs-rewrite-file"))
4475 (("/usr/bin/ecryptfs-setup-private")
4476 (string-append out "/bin/ecryptfs-setup-private"))
4477 (("/sbin/cryptsetup")
4478 (string-append cryptsetup "/sbin/cryptsetup"))
4479 (("/sbin/unix_chkpwd")
4480 (string-append linux-pam "/sbin/unix_chkpwd"))
4482 (string-append lvm2 "/sbin/dmsetup")))))))))
4484 `(("intltool" ,intltool)
4485 ("perl" ,perl) ; for pod2man
4486 ("pkg-config" ,pkg-config)))
4488 `(("keyutils" ,keyutils)
4489 ("linux-pam" ,linux-pam)
4490 ("utils-linux" ,util-linux)
4491 ("cryptsetup" ,cryptsetup)
4494 (home-page "http://ecryptfs.org/")
4495 (synopsis "eCryptfs cryptographic file system utilities")
4497 "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.
4498 Each file's cryptographic meta-data is stored inside the file itself, along
4499 with the encrypted contents. This allows individual encrypted files to be
4500 copied between hosts and still be decrypted with the proper key. eCryptfs is a
4501 native Linux file system, and has been part of the Linux kernel since version
4502 2.6.19. This package contains the userland utilities to manage it.")
4503 ;; The files src/key_mod/ecryptfs_key_mod_{openssl,pkcs11_helper,tspi}.c
4504 ;; grant additional permission to link with OpenSSL.
4505 (license license:gpl2+)))
4507 (define-public libnfsidmap
4509 (name "libnfsidmap")
4514 (uri (string-append "https://fedorapeople.org/~steved/"
4515 name "/" version "/" name "-" version ".tar.bz2"))
4517 (base32 "0bg2bcii424mf1bnp3fssr8jszbvhdxl7wvifm1yf6g596v8b8i5"))))
4518 (build-system gnu-build-system)
4520 `(#:configure-flags (list
4521 (string-append "--with-pluginpath="
4522 (assoc-ref %outputs "out")
4523 "/lib/libnfsidmap"))))
4525 `(("autoconf" ,autoconf))) ; 0.27 still needs autoheader
4527 "http://www.citi.umich.edu/projects/nfsv4/crossrealm/libnfsidmap_config.html")
4528 (synopsis "NFSv4 support library for name/ID mapping")
4529 (description "Libnfsidmap is a library holding mulitiple methods of
4530 mapping names to ids and visa versa, mainly for NFSv4. It provides an
4531 extensible array of mapping functions, currently consisting of two choices:
4532 the default @code{nsswitch} and the experimental @code{umich_ldap}.")
4533 (license (license:non-copyleft "file://COPYING"
4534 "See COPYING in the distribution."))))
4536 (define-public module-init-tools
4538 (name "module-init-tools")
4543 "mirror://kernel.org/linux/utils/kernel/module-init-tools/"
4544 "module-init-tools-" version ".tar.bz2"))
4547 "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"))
4548 (patches (search-patches "module-init-tools-moduledir.patch"))))
4549 (build-system gnu-build-system)
4551 ;; FIXME: The upstream tarball lacks man pages, and building them would
4552 ;; require DocBook & co. We used to use Gentoo's pre-built man pages,
4553 ;; but they vanished. In the meantime, fake it.
4555 (modify-phases %standard-phases
4556 (add-before 'configure 'fake-docbook
4558 (substitute* "Makefile.in"
4559 (("^DOCBOOKTOMAN.*$")
4560 "DOCBOOKTOMAN = true\n"))
4562 (home-page "https://www.kernel.org/pub/linux/utils/kernel/module-init-tools/")
4563 (synopsis "Tools for loading and managing Linux kernel modules")
4565 "Tools for loading and managing Linux kernel modules, such as
4566 @code{modprobe}, @code{insmod}, @code{lsmod}, and more.")
4567 (license license:gpl2+)))
4569 (define-public mcelog
4575 (uri (string-append "https://git.kernel.org/cgit/utils/cpu/mce/"
4576 "mcelog.git/snapshot/v" version ".tar.gz"))
4579 "07628cr05f50m7lsvw26wxlnb7qcl0x6rymdpp5spqzhz91l58p3"))
4580 (file-name (string-append name "-" version ".tar.gz"))
4581 (modules '((guix build utils)))
4584 ;; The snapshots lack a .git directory,
4585 ;; breaking ‘git describe’.
4586 (substitute* "Makefile"
4587 (("\"unknown\"") (string-append "\"v" ,version "\"")))
4589 (build-system gnu-build-system)
4591 `(#:phases (modify-phases %standard-phases
4592 (delete 'configure)) ; no configure script
4593 #:make-flags (let ((out (assoc-ref %outputs "out")))
4595 (string-append "prefix=" out)
4596 (string-append "DOCDIR=" out "/share/doc/mcelog")
4597 "etcprefix=$(DOCDIR)/examples"))
4598 ;; The tests will only run as root on certain supported CPU models.
4600 (supported-systems (list "i686-linux" "x86_64-linux"))
4601 (home-page "https://mcelog.org/")
4602 (synopsis "Machine check monitor for x86 Linux systems")
4604 "The mcelog daemon is required by the Linux kernel to log memory, I/O, CPU,
4605 and other hardware errors on x86 systems. It can also perform user-defined
4606 tasks, such as bringing bad pages off-line, when configurable error thresholds
4608 (license license:gpl2)))
4610 (define-public mtd-utils
4617 "ftp://ftp.infradead.org/pub/mtd-utils/"
4618 "mtd-utils-" version ".tar.bz2"))
4621 "1f30jszknc5v6ykmil8ajxgksmcg54q3rsp84jsancp9x0dycggv"))))
4623 '(#:configure-flags '("--enable-unit-tests")))
4625 `(("cmocka" ,cmocka)
4626 ("pkg-config" ,pkg-config)))
4628 `(("acl" ,acl) ; for XATTR
4629 ("libuuid" ,util-linux)
4632 (build-system gnu-build-system)
4633 (synopsis "MTD Flash Storage Utilities")
4634 (description "This package provides utilities for testing, partitioning, etc
4636 (home-page "http://www.linux-mtd.infradead.org/")
4638 (list license:gpl2 ; Almost everything is gpl2 or gpl2+
4639 license:mpl1.1 ; All ftl* files
4640 license:expat)))) ; libiniparser
4642 (define-public libseccomp
4648 (uri (string-append "https://github.com/seccomp/libseccomp/"
4649 "releases/download/v" version
4650 "/libseccomp-" version ".tar.gz"))
4653 "1s06h2cgk0xxwmhwj72z33bllafc1xqnxzk2yyra2rmg959778qw"))))
4654 (build-system gnu-build-system)
4656 `(("which" ,which)))
4657 (synopsis "Interface to Linux's seccomp syscall filtering mechanism")
4658 (description "The libseccomp library provides an easy to use, platform
4659 independent, interface to the Linux Kernel's syscall filtering mechanism. The
4660 libseccomp API is designed to abstract away the underlying BPF based syscall
4661 filter language and present a more conventional function-call based filtering
4662 interface that should be familiar to, and easily adopted by, application
4664 (home-page "https://github.com/seccomp/libseccomp")
4665 (license license:lgpl2.1)))
4667 (define-public radeontop
4675 (url "https://github.com/clbr/radeontop.git")
4676 (commit (string-append "v" version))))
4677 (file-name (git-file-name name version))
4679 (base32 "1b1m30r2nfwqkajqw6m01xmfhlq83z1qylyijxg7962mp9x2k0gw"))))
4680 (build-system gnu-build-system)
4682 `(#:phases (modify-phases %standard-phases
4683 ;; getver.sh uses ‘git --describe’, isn't worth an extra git
4684 ;; dependency, and doesn't even work on release(!) tarballs.
4685 (add-after 'unpack 'report-correct-version
4687 (substitute* "getver.sh"
4689 (string-append "ver=" ,version)))
4691 (delete 'configure)) ; no configure script
4692 #:make-flags (list "CC=gcc"
4693 (string-append "PREFIX=" %output))
4694 #:tests? #f)) ; no tests
4696 `(("gettext" ,gettext-minimal)
4697 ("pkg-config" ,pkg-config)))
4699 `(("libdrm" ,libdrm)
4700 ("libpciaccess" ,libpciaccess)
4702 ("ncurses" ,ncurses)))
4703 (home-page "https://github.com/clbr/radeontop/")
4704 (synopsis "Usage monitor for AMD Radeon graphics")
4705 (description "RadeonTop monitors resource consumption on supported AMD
4706 Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on
4707 a terminal or saved to a file for further processing. It measures both the
4708 activity of the GPU as a whole, which is also accurate during OpenCL
4709 computations, as well as separate component statistics that are only meaningful
4710 under OpenGL graphics workloads.")
4711 (license license:gpl3)))
4713 (define-public efivar
4719 (uri (string-append "https://github.com/rhboot/" name
4720 "/releases/download/" version "/" name
4721 "-" version ".tar.bz2"))
4724 "17vvfivhsrszh7q39b6npjsrhrhsjf1cmmcpp3xrh6wh7ywzwrrw"))))
4725 (build-system gnu-build-system)
4727 `(;; Tests require a UEFI system and is not detected in the chroot.
4729 #:make-flags (list (string-append "prefix=" %output)
4730 (string-append "libdir=" %output "/lib")
4732 (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
4734 (modify-phases %standard-phases
4735 (delete 'configure))))
4737 `(("pkg-config" ,pkg-config)))
4740 (home-page "https://github.com/rhboot/efivar")
4741 (synopsis "Tool and library to manipulate EFI variables")
4742 (description "This package provides a library and a command line
4743 interface to the variable facility of UEFI boot firmware.")
4744 (license license:lgpl2.1+)))
4746 (define-public efibootmgr
4752 (uri (string-append "https://github.com/rhinstaller/efibootmgr"
4753 "/releases/download/" version "/efibootmgr"
4754 "-" version ".tar.bz2"))
4757 "0pzn67vxxaf7jna4cd0i4kqm60h04kb21hckksv9z82q9gxra1wm"))))
4758 (build-system gnu-build-system)
4760 `(#:tests? #f ;no tests
4761 #:make-flags (list (string-append "prefix=" %output)
4762 (string-append "libdir=" %output "/lib")
4763 ;; EFIDIR denotes a subdirectory relative to the
4764 ;; EFI System Partition where the loader will be
4765 ;; installed (known as OS_VENDOR in the code).
4766 ;; GRUB overrides this, as such it's only used if
4767 ;; nothing else is specified on the command line.
4769 #:phases (modify-phases %standard-phases (delete 'configure))))
4771 `(("pkg-config" ,pkg-config)))
4773 `(("efivar" ,efivar)
4775 (home-page "https://github.com/rhinstaller/efibootmgr")
4776 (synopsis "Modify the Extensible Firmware Interface (EFI) boot manager")
4778 "@code{efibootmgr} is a user-space application to modify the Intel
4779 Extensible Firmware Interface (EFI) Boot Manager. This application can
4780 create and destroy boot entries, change the boot order, change the next
4781 running boot option, and more.")
4782 (license license:gpl2+)))
4784 (define-public sysstat
4790 (uri (string-append "http://perso.orange.fr/sebastien.godard/"
4791 "sysstat-" version ".tar.xz"))
4794 "1ryf9myjzpa2279i3rvsh6fr5psm6qvr5r9kbm1sxyspapxcms82"))))
4795 (build-system gnu-build-system)
4797 `(#:tests? #f ; No test suite.
4798 ;; Without this flag, it tries to install the man pages with group 'root'
4799 ;; and fails because /etc/passwd lacks an entry for the root user.
4801 (list "--disable-file-attr"
4802 (string-append "conf_dir=" (assoc-ref %outputs "out") "/etc"))
4804 (modify-phases %standard-phases
4805 ;; The build process tries to create '/var/lib/sa', so we skip that
4807 (add-after 'build 'skip-touching-var
4809 (substitute* "Makefile"
4810 (("mkdir -p \\$\\(DESTDIR\\)\\$\\(SA_DIR\\)")
4813 (home-page "http://sebastien.godard.pagesperso-orange.fr/")
4814 (synopsis "Performance monitoring tools for Linux")
4815 (description "The sysstat utilities are a collection of performance
4816 monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
4817 @code{tapestat}, @code{cifsiostat}, @code{pidstat}, @code{sar}, @code{sadc},
4818 @code{sadf} and @code{sa}.")
4819 (license license:gpl2+)))
4821 (define-public light
4828 "https://github.com/haikarainen/light/archive/v"
4832 "1gfvsw7gh5pis733l7j54vzp272pvjyzbg8a0pvapfmg0s7mip97"))
4833 (file-name (string-append name "-" version ".tar.gz"))))
4834 (build-system gnu-build-system)
4836 `(("autoconf" ,autoconf)
4837 ("automake" ,automake)))
4838 (home-page "https://haikarainen.github.io/light/")
4839 (synopsis "GNU/Linux application to control backlights")
4841 "Light is a program to send commands to screen backlight controllers
4842 under GNU/Linux. Features include:
4845 @item It does not rely on X.
4846 @item Light can automatically figure out the best controller to use, making
4847 full use of underlying hardware.
4848 @item It is possible to set a minimum brightness value, as some controllers
4849 set the screen to be pitch black at a vaĺue of 0 (or higher).
4852 Light is the successor of lightscript.")
4853 (license license:gpl3+)))
4855 (define-public brightnessctl
4856 (let ((commit "6a791e7694aeeb5d027f71c6098e5182cf03371c"))
4858 (name "brightnessctl")
4859 (version (git-version "0.4" "0" commit))
4863 (url "https://github.com/Hummer12007/brightnessctl/")
4865 (file-name (git-file-name name version))
4868 "1n1gb8ldgqv3vs565yhk1w4jfvrviczp94r8wqlkv5q6ab43c8w9"))))
4869 (build-system gnu-build-system)
4871 '(#:tests? #f ; no tests
4872 #:make-flags (list "CC=gcc"
4873 (string-append "PREFIX=" %output)
4874 (string-append "UDEVDIR=" %output "/lib/udev/rules.d/"))
4876 (modify-phases %standard-phases
4878 (add-after 'unpack 'adjust-udev-rules
4880 (substitute* "90-brightnessctl.rules"
4881 (("/bin/") "/run/current-system/profile/bin/"))
4883 (home-page "https://github.com/Hummer12007/brightnessctl")
4884 (synopsis "Backlight and LED brightness control")
4886 "This program allows you read and control device brightness. Devices
4887 include backlight and LEDs. It can also preserve current brightness before
4888 applying the operation, such as on lid close.
4890 The appropriate permissions must be set on the backlight or LED control
4891 interface in sysfs, which can be accomplished with the included udev rules.")
4892 (license license:expat))))
4901 "https://github.com/linrunner/"
4902 (string-upcase name)
4903 "/archive/" version ".tar.gz"))
4904 (file-name (string-append name "-" version ".tar.gz"))
4907 "059kxrpxx580mm6p0z2a421nxngszyh4yqqhbgvn04b6a7dbsa2w"))))
4908 (inputs `(("bash" ,bash)
4910 ("ethtool" ,ethtool)
4914 ("inetutils" ,inetutils)
4917 ("pciutils" ,pciutils)
4921 ("usbutils" ,usbutils)
4922 ("util-linux" ,util-linux)
4923 ("wireless-tools" ,wireless-tools)
4924 ,@(if (let ((system (or (%current-target-system)
4925 (%current-system))))
4926 (or (string-prefix? "i686-" system)
4927 (string-prefix? "x86_64-" system)))
4928 `(("x86-energy-perf-policy" ,x86-energy-perf-policy))
4930 (build-system gnu-build-system)
4932 `(#:modules ((guix build gnu-build-system)
4936 (modify-phases %standard-phases
4937 (delete 'configure) ; no configure script
4938 (add-before 'build 'setenv
4939 (lambda* (#:key outputs #:allow-other-keys)
4940 (let ((out (assoc-ref outputs "out")))
4941 (setenv "TLP_WITH_SYSTEMD" "0")
4942 (setenv "TLP_NO_INIT" "1")
4943 (setenv "TLP_NO_PMUTILS" "1")
4944 (setenv "TLP_SBIN" (string-append out "/bin"))
4945 (setenv "TLP_BIN" (string-append out "/bin"))
4946 (setenv "TLP_TLIB" (string-append out "/share/tlp"))
4947 (setenv "TLP_FLIB" (string-append out "/share/tlp/func.d"))
4948 (setenv "TLP_ULIB" (string-append out "/lib/udev"))
4949 (setenv "TLP_CONF" "/etc/tlp")
4951 (string-append out "/lib/elogind/system-sleep"))
4953 (string-append out "/share/bash-completion/completions"))
4954 (setenv "TLP_MAN" (string-append out "/share/man"))
4955 (setenv "TLP_META" (string-append out "/share/metainfo"))
4957 (delete 'check) ; no tests
4958 (add-before 'install 'fix-installation
4960 ;; Stop the Makefile from trying to create system directories.
4961 (substitute* "Makefile"
4962 (("\\[ -f \\$\\(_CONF\\) \\]") "#")
4963 (("install -d -m 755 \\$\\(_VAR\\)") "#"))
4967 (invoke "make" "install-tlp" "install-man")))
4968 (add-after 'install 'wrap
4969 (lambda* (#:key inputs outputs #:allow-other-keys)
4970 (let* ((bin (string-append (assoc-ref outputs "out") "/bin"))
4971 (bin-files (find-files bin ".*")))
4972 (define (bin-directory input-name)
4973 (let ((p (assoc-ref inputs input-name)))
4974 (and p (string-append p "/bin"))))
4975 (define (sbin-directory input-name)
4976 (string-append (assoc-ref inputs input-name) "/sbin"))
4977 (for-each (lambda (program)
4978 (wrap-program program
4981 (filter-map bin-directory
4993 "x86-energy-perf-policy"))
4994 (filter-map sbin-directory
5000 "wireless-tools"))))))
5003 (home-page "http://linrunner.de/en/tlp/tlp.html")
5004 (synopsis "Power management tool for Linux")
5005 (description "TLP is a power management tool for Linux. It comes with
5006 a default configuration already optimized for battery life. Nevertheless,
5007 TLP is customizable to fulfil system requirements. TLP settings are applied
5008 every time the power supply source is changed.")
5009 ;; 'COPYING' is a custom version that says that one file is GPLv3+ and the
5011 (license (list license:gpl2+ license:gpl3+))))
5019 (uri (string-append "https://www.ezix.org/software/"
5020 "files/lshw-" version
5024 "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf"))))
5025 (build-system gnu-build-system)
5027 `(#:phases (modify-phases %standard-phases (delete 'configure))
5028 #:tests? #f ; no tests
5030 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
5031 (synopsis "List hardware information")
5033 "@command{lshw} (Hardware Lister) is a small tool to provide
5034 detailed information on the hardware configuration of the machine.
5035 It can report exact memory configuration, firmware version, mainboard
5036 configuration, CPU version and speed, cache configuration, bus speed,
5037 and more on DMI-capable x86 or EFI (IA-64) systems and on some PowerPC
5038 machines (PowerMac G4 is known to work).")
5039 (home-page "https://www.ezix.org/project/wiki/HardwareLiSter")
5040 (license license:gpl2+)))
5042 (define-public libmnl
5049 (uri (string-append "mirror://netfilter.org/libmnl/"
5050 "libmnl-" version ".tar.bz2"))
5053 "108zampspaalv44zn0ar9h386dlfixpd149bnxa5hsi8kxlqj7qp"))))
5054 (build-system gnu-build-system)
5055 (home-page "https://www.netfilter.org/projects/libmnl/")
5056 (synopsis "Netlink utility library")
5057 (description "Libmnl is a minimalistic user-space library oriented to
5058 Netlink developers. There are a lot of common tasks in parsing, validating,
5059 constructing of both the Netlink header and TLVs that are repetitive and easy to
5060 get wrong. This library aims to provide simple helpers that allows you to
5061 re-use code and to avoid re-inventing the wheel.")
5062 (license license:lgpl2.1+)))
5064 (define-public libnftnl
5071 (uri (string-append "mirror://netfilter.org/libnftnl/"
5072 "libnftnl-" version ".tar.bz2"))
5074 (base32 "03xszkcpqk3s1rqc6vh7g5j13kh3d3yjnvjhk5scds3an39rgp92"))))
5075 (build-system gnu-build-system)
5077 `(("pkg-config" ,pkg-config)))
5079 `(("libmnl" ,libmnl)))
5080 (home-page "https://www.netfilter.org/projects/libnftnl/index.html")
5081 (synopsis "Netlink programming interface to the Linux nf_tables subsystem")
5082 (description "Libnftnl is a userspace library providing a low-level netlink
5083 programming interface to the in-kernel nf_tables subsystem. The library
5084 libnftnl has been previously known as libnftables. This library is currently
5086 (license license:gpl2+)))
5088 (define-public nftables
5095 (uri (string-append "http://www.nftables.org/projects/nftables"
5096 "/files/nftables-" version ".tar.bz2"))
5099 "14bygs6vg2v448cw5r4pxqi8an29hw0m9vab8hpmgjmrzjsq30dd"))))
5100 (build-system gnu-build-system)
5101 (arguments `(#:configure-flags
5102 '("--disable-man-doc"))) ; FIXME: Needs docbook2x.
5103 (inputs `(("bison" ,bison)
5107 ("libnftnl" ,libnftnl)
5108 ("readline" ,readline)))
5109 (native-inputs `(("pkg-config" ,pkg-config)))
5110 (home-page "http://www.nftables.org")
5111 (synopsis "Userspace utility for Linux packet filtering")
5112 (description "nftables is the project that aims to replace the existing
5113 {ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet
5114 filtering framework, a new userspace utility and also a compatibility layer for
5115 {ip,ip6}tables. nftables is built upon the building blocks of the Netfilter
5116 infrastructure such as the existing hooks, the connection tracking system, the
5117 userspace queueing component and the logging subsystem.")
5118 (license license:gpl2)))
5120 (define-public proot
5128 (url "https://github.com/proot-me/PRoot.git")
5129 (commit (string-append "v" version))))
5130 (file-name (git-file-name name version))
5132 (base32 "0azsqis99gxldmbcg43girch85ysg4hwzf0h1b44bmapnsm89fbz"))
5133 (patches (search-patches "proot-test-fhs.patch"))))
5134 (build-system gnu-build-system)
5136 '(#:make-flags '("-C" "src")
5138 #:phases (modify-phases %standard-phases
5140 (add-before 'build 'set-shell-file-name
5141 (lambda* (#:key inputs #:allow-other-keys)
5142 (substitute* (find-files "src" "\\.[ch]$")
5145 (assoc-ref inputs "bash")
5148 (add-before 'check 'fix-fhs-assumptions-in-tests
5150 (substitute* "tests/test-c6b77b77.mk"
5151 (("/bin/bash") (which "bash"))
5152 (("/usr/bin/test") (which "test")))
5153 (substitute* '("tests/test-16573e73.c")
5154 (("/bin/([a-z-]+)" _ program)
5157 (substitute* (find-files "tests" "\\.sh$")
5158 ;; Some of the tests try to "bind-mount" /bin/true.
5160 (string-append "-b " (which "true") ":"))
5161 ;; Likewise for /bin.
5162 (("-b /bin:") "-b /gnu:")
5163 ;; Others try to run /bin/sh.
5164 (("/bin/sh") (which "sh"))
5165 ;; Others assume /etc/fstab exists.
5166 (("/etc/fstab") "/etc/passwd"))
5168 (substitute* "tests/GNUmakefile"
5169 (("-b /bin:") "-b /gnu:"))
5171 ;; XXX: This test fails in an obscure corner case, just
5173 (delete-file "tests/test-kkkkkkkk.c")
5178 (let ((n (parallel-job-count)))
5179 ;; For some reason we get lots of segfaults with
5180 ;; seccomp support (x86_64, Linux-libre 4.11.0).
5181 (setenv "PROOT_NO_SECCOMP" "1")
5183 ;; Most of the tests expect "/bin" to be in $PATH so
5184 ;; they can run things that live in $ROOTFS/bin.
5186 (string-append (getenv "PATH") ":/bin"))
5188 (invoke "make" "check" "-C" "tests"
5190 "-j" (number->string n)))))
5192 (lambda* (#:key outputs #:allow-other-keys)
5193 ;; The 'install' rule does nearly nothing.
5194 (let* ((out (assoc-ref outputs "out"))
5195 (man1 (string-append out "/share/man/man1")))
5196 ;; TODO: 'make install-care' (does not even
5197 ;; build currently.)
5198 (invoke "make" "-C" "src" "install"
5199 (string-append "PREFIX=" out))
5202 (copy-file "doc/proot/man.1"
5203 (string-append man1 "/proot.1"))
5205 (native-inputs `(("which" ,which)
5207 ;; For 'mcookie', used by some of the tests.
5208 ("util-linux" ,util-linux)))
5209 (inputs `(("talloc" ,talloc)))
5210 (home-page "https://github.com/proot-me/PRoot")
5211 (synopsis "Unprivileged chroot, bind mount, and binfmt_misc")
5213 "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},
5214 and @code{binfmt_misc}. This means that users don't need any privileges or
5215 setup to do things like using an arbitrary directory as the new root
5216 file system, making files accessible somewhere else in the file system
5217 hierarchy, or executing programs built for another CPU architecture
5218 transparently through QEMU user-mode. Also, developers can use PRoot as a
5219 generic process instrumentation engine thanks to its extension mechanism.
5220 Technically PRoot relies on @code{ptrace}, an unprivileged system-call
5221 available in the kernel Linux.")
5222 (license license:gpl2+)))
5224 (define-public proot-static
5227 (name "proot-static")
5229 "Unprivileged chroot, bind mount, and binfmt_misc (statically linked)")
5230 (inputs `(("talloc" ,talloc/static)))
5232 (substitute-keyword-arguments (package-arguments proot)
5233 ((#:make-flags flags)
5234 `(cons "LDFLAGS = -ltalloc -static -static-libgcc" ,flags))
5236 `(modify-phases ,phases
5237 (add-after 'strip 'remove-store-references
5238 (lambda* (#:key outputs #:allow-other-keys)
5239 (let* ((out (assoc-ref outputs "out")))
5240 (with-directory-excursion out
5241 (remove-store-references "bin/proot")
5243 ((#:allowed-references _ '("out"))
5246 (define-public cpuid
5249 (version "20180519")
5252 (uri (string-append "http://www.etallen.com/cpuid/cpuid-"
5253 version ".src.tar.gz"))
5256 "16pzwyifc9glpk1hm6bqb5d1a7cw0qnqiamh5sbvqg7j6sz26y4n"))))
5257 (build-system gnu-build-system)
5259 '(#:make-flags '("CC=gcc")
5260 #:tests? #f ; no tests
5261 #:phases (modify-phases %standard-phases
5262 (delete 'configure) ; no configure script
5263 (add-before 'install 'fix-makefile
5264 (lambda* (#:key outputs #:allow-other-keys)
5265 (substitute* "Makefile"
5266 (("\\$\\(BUILDROOT\\)/usr") (assoc-ref outputs "out")))
5267 ;; Make the compressed manpages writable so that the
5268 ;; reset-gzip-timestamps phase does not error out.
5269 (substitute* "Makefile"
5270 (("-m 444") "-m 644"))
5272 (inputs `(("perl" ,perl)))
5273 (supported-systems '("i686-linux" "x86_64-linux"))
5274 (home-page "http://www.etallen.com/cpuid.html")
5275 (synopsis "Linux tool to dump x86 CPUID information about the CPU(s)")
5276 (description "cpuid dumps detailed information about the CPU(s) gathered
5277 from the CPUID instruction, and also determines the exact model of CPU(s). It
5278 supports Intel, AMD, and VIA CPUs, as well as older Transmeta, Cyrix, UMC,
5279 NexGen, Rise, and SiS CPUs.")
5280 (license license:gpl2+)))
5282 (define-public jmtpfs
5289 (uri (string-append "https://github.com/JasonFerrara/jmtpfs/archive/v"
5291 (file-name (string-append name "-" version ".tar.gz"))
5294 "10v8d7mmx8b8123x5f9y9zaaa428ms6wkngwn2ra71n5a53wrjn0"))))
5295 (build-system gnu-build-system)
5299 ("libmtp" ,libmtp)))
5301 `(("pkg-config" ,pkg-config)))
5302 (home-page "https://github.com/JasonFerrara/jmtpfs")
5303 (synopsis "Use a FUSE file system to access data over MTP")
5304 (description "jmtpfs uses FUSE (file system in userspace) to provide access
5305 to data over the Media Transfer Protocol (MTP). Unprivileged users can mount
5306 the MTP device as a file system.")
5307 (license license:gpl3)))
5309 (define-public procenv
5316 (uri (string-append "https://github.com/jamesodhunt/procenv/archive/"
5318 (file-name (string-append name "-" version ".tar.gz"))
5320 (base32 "0dvscyf47i3j5ay0amncqmqw9kd916689r2pqdvpnsrhp6j46zp1"))))
5321 (build-system gnu-build-system)
5322 (arguments `(#:configure-flags '("--disable-silent-rules")))
5323 (native-inputs `(("pkg-config" ,pkg-config)))
5324 (inputs `(("expat" ,expat) ("libcap" ,libcap) ("check" ,check)
5325 ("groff" ,groff) ; for tests
5326 ("libselinux" ,libselinux)))
5327 (synopsis "Utility to show process environment")
5328 (description "Procenv is a command-line tool that displays as much detail about
5329 itself and its environment as possible. It can be used as a test
5330 tool, to understand the type of environment a process runs in, and for
5331 comparing system environments.")
5332 (home-page "http://github.com/jamesodhunt/procenv/")
5333 (license license:gpl3+)))
5335 (define-public libfabric
5343 (string-append "https://github.com/ofiwg/libfabric/releases/download/v"
5344 version "/libfabric-" version ".tar.bz2"))
5346 (base32 "19l2m1frna1l765z4j7wl8hp4rb9wrh0hy5496685hd183hmy5pv"))))
5347 (build-system gnu-build-system)
5348 (inputs `(("rdma-core" ,rdma-core)
5349 ,@(match (%current-system)
5350 ((member (package-supported-systems psm))
5354 (home-page "https://ofiwg.github.io/libfabric/")
5355 (synopsis "Open Fabric Interfaces")
5357 "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric
5358 communication services to applications. OFI is best described as a collection
5359 of libraries and applications used to export fabric services. The key
5360 components of OFI are: application interfaces, provider libraries, kernel
5361 services, daemons, and test applications.
5363 Libfabric is a core component of OFI. It is the library that defines and
5364 exports the user-space API of OFI, and is typically the only software that
5365 applications deal with directly. It works in conjunction with provider
5366 libraries, which are often integrated directly into libfabric.")
5367 (license (list license:bsd-2 license:gpl2)))) ;dual
5372 (version "3.3.20170428")
5373 (home-page "https://github.com/intel/psm")
5377 (uri (git-reference (url home-page)
5378 (commit "604758e76dc31e68d1de736ccf5ddf16cb22355b")))
5379 (file-name (string-append "psm-" version ".tar.gz"))
5381 (base32 "0nsb325dmhn5ia3d2cnksqr0gdvrrx2hmvlylfgvmaqdpq76zm85"))
5382 (patches (search-patches
5383 "psm-arch.patch" ; uname -p returns "unknown" on Debian 9
5384 "psm-ldflags.patch" ; build shared lib with LDFLAGS
5385 "psm-repro.patch")))) ; reproducibility
5386 (build-system gnu-build-system)
5387 (inputs `(("libuuid" ,util-linux)))
5389 '(#:make-flags `("PSM_USE_SYS_UUID=1" "CC=gcc" "WERROR="
5390 ,(string-append "INSTALL_PREFIX=" %output)
5391 ,(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
5393 #:phases (modify-phases %standard-phases
5395 (add-after 'unpack 'patch-/usr/include
5397 (substitute* "Makefile"
5398 (("\\$\\{DESTDIR}/usr/include")
5399 (string-append %output "/include")))
5400 (substitute* "Makefile"
5401 (("/lib64") "/lib"))
5403 (add-after 'unpack 'patch-sysmacros
5405 (substitute* "ipath/ipath_proto.c"
5406 (("#include <sys/poll.h>" m)
5407 (string-append m "\n"
5408 "#include <sys/sysmacros.h>")))
5410 (synopsis "Intel Performance Scaled Messaging (PSM) Libraries")
5412 "The PSM Messaging API, or PSM API, is Intel's low-level user-level
5413 communications interface for the True Scale family of products. PSM users are
5414 enabled with mechanisms necessary to implement higher level communications
5415 interfaces in parallel environments.")
5416 ;; Only Intel-compatable processors are supported.
5417 (supported-systems '("i686-linux" "x86_64-linux"))
5418 (license (list license:bsd-2 license:gpl2)))) ;dual
5420 (define-public snapscreenshot
5422 (name "snapscreenshot")
5423 (version "1.0.14.3")
5427 (uri (string-append "http://bisqwit.iki.fi/src/arch/"
5428 name "-" version ".tar.bz2"))
5430 (base32 "0gzvqsbf6a2sbd1mqvj1lbm57i2bm5k0cr6ncr821d1f32gw03mk"))))
5431 (build-system gnu-build-system)
5434 (let ((out (assoc-ref %outputs "out")))
5435 (list (string-append "BINDIR=" out "/bin")
5436 (string-append "MANDIR=" out "/share/man")))
5437 #:tests? #f ; no test suite
5439 (modify-phases %standard-phases
5440 (delete 'configure) ; ./configure is a snarky no-op
5441 (add-before 'install 'fix-ownership
5442 ;; Install binaries owned by ‘root’ instead of the nonexistent ‘bin’.
5444 (substitute* "depfun.mak"
5445 ((" -o bin -g bin ") " "))
5447 (add-before 'install 'create-output-directories
5448 (lambda* (#:key outputs #:allow-other-keys)
5449 (let ((out (assoc-ref outputs "out")))
5450 (mkdir-p (string-append out "/share/man/man1"))
5452 (home-page "https://bisqwit.iki.fi/source/snapscreenshot.html")
5453 (synopsis "Take screenshots of one or more Linux text consoles")
5455 "snapscreenshot saves a screenshot of one or more Linux text consoles as a
5456 Targa (@dfn{.tga}) image. It can be used by anyone with read access to the
5457 relevant @file{/dev/vcs*} file(s).")
5458 (license license:gpl2)))
5460 (define-public fbcat
5467 (uri (string-append "https://github.com/jwilk/fbcat/releases/download/"
5468 version "/" name "-" version ".tar.gz"))
5470 (base32 "0pj9hxmwhbz6kmd7847yx2jh1scl9l25zgndyi8s9vlzdkq2q8d7"))))
5471 (build-system gnu-build-system)
5473 ;; The ‘fbgrab’ wrapper can use one of several PPM-to-PNG converters. We
5474 ;; choose netpbm simply because it's the smallest. It still adds ~94 MiB
5475 ;; to an otherwise tiny package, so we put ‘fbgrab’ in its own output.
5476 `(("pnmtopng" ,netpbm)))
5477 (outputs (list "out" "fbgrab"))
5481 (string-append "PREFIX=" (assoc-ref %outputs "out")))
5482 #:tests? #f ; no tests
5484 (modify-phases %standard-phases
5485 (delete 'configure) ; no configure script
5486 (add-after 'build 'qualify-references
5487 (lambda* (#:key inputs outputs #:allow-other-keys)
5488 (let* ((pnmtopng (assoc-ref inputs "pnmtopng"))
5489 (out (assoc-ref outputs "out")))
5490 (substitute* "fbgrab"
5492 (string-append out "/bin/" all))
5494 (string-append pnmtopng "/bin/" all)))
5496 (add-after 'install 'split-fbgrab-output
5497 (lambda* (#:key outputs #:allow-other-keys)
5498 (let* ((out (assoc-ref outputs "out"))
5499 (out:fbgrab (assoc-ref outputs "fbgrab")))
5500 (for-each (lambda (file)
5501 (let ((old (string-append out "/" file))
5502 (new (string-append out:fbgrab "/" file)))
5503 (mkdir-p (dirname new))
5504 (rename-file old new)))
5506 "share/man/man1/fbgrab.1"))
5508 (home-page "https://jwilk.net/software/fbcat")
5509 (synopsis "Take a screenshot of the contents of the Linux framebuffer")
5511 "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or
5512 a dump therof. It supports a wide range of drivers and pixel formats.
5513 @command{fbcat} can take screenshots of virtually any application that can be
5514 made to write its output to the framebuffer, including (but not limited to)
5515 text-mode or graphical applications that don't use a display server.
5517 Also included is @command{fbgrab}, a wrapper around @command{fbcat} that
5518 emulates the behaviour of Gunnar Monell's older fbgrab utility.")
5519 (license license:gpl2)))
5521 (define-public libcgroup
5529 "mirror://sourceforge/libcg/" name "/"
5530 version "/" name "-" version ".tar.bz2"))
5532 (base32 "0lgvyq37gq84sk30sg18admxaj0j0p5dq3bl6g74a1ppgvf8pqz4"))))
5533 (build-system gnu-build-system)
5540 `(("linux-pam" ,linux-pam)))
5541 (home-page "https://sourceforge.net/projects/libcg/")
5542 (synopsis "Control groups management tools")
5543 (description "Control groups is Linux kernel method for process resource
5544 restriction, permission handling and more. This package provides userspace
5545 interface to this kernel feature.")
5546 (license license:lgpl2.1)))
5548 (define-public mbpfan
5556 (url "https://github.com/dgraziotin/mbpfan.git")
5557 (commit (string-append "v" version))))
5558 (file-name (git-file-name name version))
5560 (base32 "0aijyxrqh01x0s80yr4cgxgd001iiqqph65pxvby7f0wz8lnxnqj"))))
5561 (build-system gnu-build-system)
5563 '(#:tests? #f ; tests ask to be run as root
5564 #:make-flags (let ((out (assoc-ref %outputs "out")))
5565 (list (string-append "DESTDIR=" out)
5568 (modify-phases %standard-phases
5569 (add-after 'unpack 'patch-paths
5571 (substitute* "Makefile"
5574 (delete 'configure)))) ; there's no configure phase
5575 (home-page "https://github.com/dgraziotin/mbpfan")
5576 (synopsis "Control fan speed on Macbooks")
5578 "mbpfan is a fan control daemon for Apple Macbooks. It uses input from
5579 the @code{coretemp} module and sets the fan speed using the @code{applesmc}
5580 module. It can be executed as a daemon or in the foreground with root
5582 (license license:gpl3+)))
5591 (url "https://github.com/intel/opa-psm2.git")
5592 (commit (string-append "PSM2_" version))))
5593 (file-name (git-file-name name version))
5596 "0wadphv4rl5p38x6a3dgpbijlzqdvcn02cfafnp72nh9faz0zvlx"))))
5597 (build-system gnu-build-system)
5600 `(,(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
5602 #:phases (modify-phases %standard-phases
5604 (add-after 'unpack 'patch-Makefiles
5606 (substitute* "Makefile"
5609 (substitute* "compat/Makefile"
5615 (setenv "DESTDIR" %output)
5616 (invoke "make" "install")
5619 `(("rdma-core" ,rdma-core)
5620 ("numactl" ,numactl)))
5621 (synopsis "Intel Performance Scaled Messaging 2 (PSM2) library")
5623 "This package is low-level user-level Intel's communications interface.
5624 The PSM2 API is a high-performance vendor-specific protocol that provides a
5625 low-level communications interface for the Intel Omni-Path family of
5626 high-speed networking devices.")
5627 (home-page "https://github.com/intel/opa-psm2")
5628 ;; Only the x86_64 architecure is supported.
5629 (supported-systems '("x86_64-linux"))
5630 (license (list license:bsd-3 license:gpl2)))) ; dual
5632 (define-public libpfm4
5638 (uri (string-append "mirror://sourceforge/perfmon2/"
5639 name "/libpfm-" version ".tar.gz"))
5642 "1qp4g4n6dw42p2w5rkwzdb7ynk8h7g5vg01ybpmvxncgwa7bw3yv"))))
5643 (build-system gnu-build-system)
5645 '(#:modules ((guix build utils)
5646 (guix build gnu-build-system))
5647 #:phases (modify-phases %standard-phases
5651 (lambda* (#:key inputs outputs #:allow-other-keys)
5652 (let* ((out (assoc-ref outputs "out")))
5657 (lambda* (#:key outputs #:allow-other-keys)
5658 (let* ((out (assoc-ref outputs "out")))
5660 (string-append "PREFIX=" out)
5663 (synopsis "Performance event monitoring library")
5665 "This package provides a library called libpfm4, which is used to develop
5666 monitoring tools exploiting the performance monitoring events such as those
5667 provided by the Performance Monitoring Unit (PMU) of modern processors.
5669 Libpfm4 helps convert from an event name, expressed as a string, to the event
5670 encoding that is either the raw event as documented by the hardware vendor or
5671 the OS-specific encoding. In the latter case, the library is able to prepare
5672 the OS-specific data structures needed by the kernel to setup the event.
5674 libpfm4 provides support for the @code{perf_events} interface, which was
5675 introduced in Linux 2.6.31.")
5676 (home-page "http://perfmon2.sourceforge.net/")
5677 (license license:expat)))
5679 (define-public libnfnetlink
5681 (name "libnfnetlink")
5686 "https://www.netfilter.org/projects/libnfnetlink/files/"
5687 "libnfnetlink-" version ".tar.bz2"))
5690 "06mm2x4b01k3m7wnrxblk9j0mybyr4pfz28ml7944xhjx6fy2w7j"))))
5691 (build-system gnu-build-system)
5692 (home-page "https://www.netfilter.org/projects/libnfnetlink/")
5693 (synopsis "Low-level netfilter netlink communication library")
5695 "@code{libnfnetlink} is the low-level library for netfilter related
5696 kernel/userspace communication. It provides a generic messaging
5697 infrastructure for in-kernel netfilter subsystems (such as nfnetlink_log,
5698 nfnetlink_queue, nfnetlink_conntrack) and their respective users and/or
5699 management tools in userspace.")
5700 (license license:gpl2)))
5702 (define-public go-netlink
5709 (url "https://github.com/vishvananda/netlink.git")
5710 (commit (string-append "v" version))))
5711 (file-name (git-file-name name version))
5714 "0hpzghf1a4cwawzhkiwdzin80h6hd09fskl77d5ppgc084yvj8x0"))))
5715 (build-system go-build-system)
5717 `(#:import-path "github.com/vishvananda/netlink"))
5719 `(("go-golang-org-x-sys-unix" ,go-golang-org-x-sys-unix)
5720 ("go-netns" ,go-netns)))
5721 (home-page "https://github.com/vishvananda/netlink")
5722 (synopsis "Simple netlink library for Go")
5723 (description "The netlink package provides a simple netlink library for
5724 Go. Netlink is the interface a user-space program in Linux uses to
5725 communicate with the kernel. It can be used to add and remove interfaces, set
5726 IP addresses and routes, and configure IPsec.")
5727 (license license:asl2.0)))
5729 (define-public xfsprogs
5736 "mirror://kernel.org/linux/utils/fs/xfs/xfsprogs/"
5737 "xfsprogs-" version ".tar.gz"))
5740 "0ss0r6jlxxinf9fhpc0fgf7b89n9mzirpa85xxjmi1ix9l6cls6x"))))
5741 (build-system gnu-build-system)
5743 `(#:tests? #f ;kernel/user integration tests are in package "xfstests"
5744 #:phases (modify-phases %standard-phases
5745 (add-after 'install 'install-headers
5747 (invoke "make" "install-dev"))))))
5749 `(("gettext" ,gettext-minimal)
5750 ("util-linux" ,util-linux)))
5751 (home-page "https://xfs.wiki.kernel.org/")
5752 (synopsis "XFS file system tools")
5753 (description "This package provides commands to create and check XFS
5755 ;; The library "libhandle" and the headers in "xfslibs-dev" are
5756 ;; licensed under lgpl2.1. the other stuff is licensed under gpl2.
5757 (license (list license:gpl2 license:lgpl2.1))))
5759 (define-public genext2fs
5766 (url "https://github.com/jeremie-koenig/genext2fs.git")
5767 ;; 1.4.1-3 had a VCS tag but 1.4.1-4 doesn't.
5768 (commit "9ee43894634998b0b2b309d636f25c64314c9421")))
5769 (file-name (git-file-name name version))
5771 (base32 "0ib5icn78ciz00zhc1bgdlrwaxvsdz7wnplwblng0jirwi9ml7sq"))))
5772 (build-system gnu-build-system)
5775 (modify-phases %standard-phases
5776 (add-after 'unpack 'apply-debian-patches
5777 ;; Debian changes (the revision after ‘-’ in VERSION) are
5778 ;; maintained as separate patches. Apply those relevant to us.
5782 (invoke "patch" "-p1" "-i"
5783 (string-append "debian/patches/" file-name)))
5784 (list "blocksize+creator.diff" ; add -B/-o options
5785 "byteswap_fix.diff"))
5788 `(("autoconf" ,autoconf)
5789 ("automake" ,automake)))
5790 (home-page "https://github.com/jeremie-koenig/genext2fs")
5791 (synopsis "Generate ext2 file system as a normal user")
5792 (description "This package provides a program to generate an ext2
5793 file system as a normal (non-root) user. It does not require you to mount
5794 the image file to copy files on it, nor does it require that you become
5795 the superuser to make device nodes.")
5796 (license license:gpl2)))
5798 (define-public fakeroot
5804 (uri (string-append "http://ftp.debian.org/debian/pool/main/f/"
5805 "fakeroot/fakeroot_" version ".orig.tar.xz"))
5806 (file-name (string-append name "-" version ".tar.gz"))
5809 "1xpl0s2yjyjwlf832b6kbkaa5921liybaar13k7n45ckd9lxd700"))))
5810 (build-system gnu-build-system)
5813 (modify-phases %standard-phases
5814 (add-after 'configure 'patch-Makefile
5816 ;; Note: The root of the problem is already in "Makefile.am".
5817 (substitute* "Makefile"
5818 (("/bin/sh") (which "sh")))
5820 (add-after 'unpack 'patch-getopt
5821 (lambda* (#:key inputs #:allow-other-keys)
5822 (substitute* "scripts/fakeroot.in"
5824 (string-append (assoc-ref inputs "util-linux")
5827 (add-before 'configure 'setenv
5829 (setenv "LIBS" "-lacl")
5831 (add-before 'check 'prepare-check
5833 (setenv "SHELL" (which "bash"))
5834 (setenv "VERBOSE" "1")
5835 (substitute* "test/t.touchinstall"
5836 ;; We don't have the name of the root user, so use ID=0.
5837 (("grep root") "grep \"\\<0\\>\""))
5838 (substitute* "test/tartest"
5839 ;; We don't have the name of the root group, so use ID=0.
5840 (("ROOTGROUP=root") "ROOTGROUP=0")
5841 ;; We don't have the name of the daemon user, so use IDs.
5842 (("daemon:sys") "1:3")
5844 ;; We don't have an /etc/passwd entry for "root" - use numeric IDs.
5845 (substitute* "test/compare-tar"
5846 (("tar -tvf") "tar --numeric-owner -tvf"))
5850 ("sharutils" ,sharutils) ; for the tests
5851 ("xz" ,xz))) ; for the tests
5853 `(("libcap" ,libcap)
5854 ("util-linux" ,util-linux)))
5855 (synopsis "Provides a fake root environment")
5856 (description "@command{fakeroot} runs a command in an environment where
5857 it appears to have root privileges for file manipulation. This is useful
5858 for allowing users to create archives (tar, ar, .deb etc.) with files in
5859 them with root permissions/ownership. Without fakeroot one would have to
5860 have root privileges to create the constituent files of the archives with
5861 the correct permissions and ownership, and then pack them up, or one would
5862 have to construct the archives directly, without using the archiver.")
5863 (home-page "http://freshmeat.sourceforge.net/projects/fakeroot")
5864 (license license:gpl3+)))
5866 (define-public inputattach
5868 (name "inputattach")
5873 (url "https://github.com/linuxwacom/input-wacom.git")
5874 (commit (string-append "input-wacom-" version))))
5875 (file-name (git-file-name name version))
5877 (base32 "04lnn7v0rm4ppbya140im5d4igcl6c1nrqpgbsr0i8wkral0nv7j"))))
5878 (build-system gnu-build-system)
5881 (modify-phases %standard-phases
5885 (lambda* (#:key inputs #:allow-other-keys)
5886 (with-directory-excursion "inputattach"
5887 (invoke (string-append (assoc-ref inputs "gcc")
5889 "-O2" "-o" "inputattach" "inputattach.c"))
5893 (lambda* (#:key outputs #:allow-other-keys)
5894 (let ((target-dir (string-append
5895 (assoc-ref outputs "out")
5897 (mkdir-p target-dir)
5898 (copy-file "inputattach/inputattach"
5899 (string-append target-dir
5902 (home-page "https://linuxwacom.github.io/")
5903 (synopsis "Dispatch input peripherals events to a device file")
5904 (description "inputattach dispatches input events from several device
5905 types and interfaces and translates so that the X server can use them.")
5906 (license license:gpl2+)))