gnu: Remove more packages deprecated for over almost a year.
[jackhill/guix/guix.git] / gnu / packages / linux.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 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, 2020 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, 2020 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, 2020 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, 2020 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, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
37 ;;; Copyright © 2019 Stefan Stefanović <stefanx2ovic@gmail.com>
38 ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
39 ;;; Copyright © 2019, 2020 Brice Waegeneire <brice@waegenei.re>
40 ;;; Copyright © 2019 Kei Kebreau <kkebreau@posteo.net>
41 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
42 ;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
43 ;;; Copyright © 2020 Chris Marusich <cmmarusich@gmail.com>
44 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
45 ;;;
46 ;;; This file is part of GNU Guix.
47 ;;;
48 ;;; GNU Guix is free software; you can redistribute it and/or modify it
49 ;;; under the terms of the GNU General Public License as published by
50 ;;; the Free Software Foundation; either version 3 of the License, or (at
51 ;;; your option) any later version.
52 ;;;
53 ;;; GNU Guix is distributed in the hope that it will be useful, but
54 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
55 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56 ;;; GNU General Public License for more details.
57 ;;;
58 ;;; You should have received a copy of the GNU General Public License
59 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
60
61 (define-module (gnu packages linux)
62 #:use-module (gnu packages)
63 #:use-module (gnu packages acl)
64 #:use-module (gnu packages admin)
65 #:use-module (gnu packages algebra)
66 #:use-module (gnu packages attr)
67 #:use-module (gnu packages audio)
68 #:use-module (gnu packages autotools)
69 #:use-module (gnu packages backup)
70 #:use-module (gnu packages base)
71 #:use-module (gnu packages bash)
72 #:use-module (gnu packages bison)
73 #:use-module (gnu packages calendar)
74 #:use-module (gnu packages check)
75 #:use-module (gnu packages crypto)
76 #:use-module (gnu packages cryptsetup)
77 #:use-module (gnu packages compression)
78 #:use-module (gnu packages dbm)
79 #:use-module (gnu packages datastructures)
80 #:use-module (gnu packages docbook)
81 #:use-module (gnu packages documentation)
82 #:use-module (gnu packages elf)
83 #:use-module (gnu packages flex)
84 #:use-module (gnu packages file)
85 #:use-module (gnu packages freedesktop)
86 #:use-module (gnu packages gcc)
87 #:use-module (gnu packages gettext)
88 #:use-module (gnu packages glib)
89 #:use-module (gnu packages golang)
90 #:use-module (gnu packages gperf)
91 #:use-module (gnu packages gstreamer)
92 #:use-module (gnu packages gtk)
93 #:use-module (gnu packages haskell-apps)
94 #:use-module (gnu packages haskell-xyz)
95 #:use-module (gnu packages libunwind)
96 #:use-module (gnu packages libusb)
97 #:use-module (gnu packages man)
98 #:use-module (gnu packages maths)
99 #:use-module (gnu packages multiprecision)
100 #:use-module (gnu packages ncurses)
101 #:use-module (gnu packages netpbm)
102 #:use-module (gnu packages networking)
103 #:use-module (gnu packages ninja)
104 #:use-module (gnu packages nss)
105 #:use-module (gnu packages perl)
106 #:use-module (gnu packages pciutils)
107 #:use-module (gnu packages pkg-config)
108 #:use-module (gnu packages popt)
109 #:use-module (gnu packages pulseaudio)
110 #:use-module (gnu packages python)
111 #:use-module (gnu packages python-xyz)
112 #:use-module (gnu packages readline)
113 #:use-module (gnu packages rrdtool)
114 #:use-module (gnu packages samba)
115 #:use-module (gnu packages sdl)
116 #:use-module (gnu packages serialization)
117 #:use-module (gnu packages slang)
118 #:use-module (gnu packages texinfo)
119 #:use-module (gnu packages tls)
120 #:use-module (gnu packages valgrind)
121 #:use-module (gnu packages video)
122 #:use-module (gnu packages web)
123 #:use-module (gnu packages xiph)
124 #:use-module (gnu packages xml)
125 #:use-module (gnu packages xdisorg)
126 #:use-module (gnu packages xorg)
127 #:use-module (gnu packages groff)
128 #:use-module (gnu packages rsync)
129 #:use-module (gnu packages selinux)
130 #:use-module (gnu packages swig)
131 #:use-module (guix build-system cmake)
132 #:use-module (guix build-system gnu)
133 #:use-module (guix build-system go)
134 #:use-module (guix build-system meson)
135 #:use-module (guix build-system python)
136 #:use-module (guix build-system trivial)
137 #:use-module (guix build-system linux-module)
138 #:use-module (guix download)
139 #:use-module (guix git-download)
140 #:use-module ((guix licenses) #:prefix license:)
141 #:use-module (guix packages)
142 #:use-module (guix gexp)
143 #:use-module (guix store)
144 #:use-module (guix monads)
145 #:use-module (guix utils)
146 #:use-module (srfi srfi-1)
147 #:use-module (srfi srfi-2)
148 #:use-module (srfi srfi-26)
149 #:use-module (ice-9 match))
150
151 (define-public (system->linux-architecture arch)
152 "Return the Linux architecture name for ARCH, a Guix system name such as
153 \"x86_64-linux\" or a target triplet such as \"arm-linux-gnueabihf\"."
154 (let ((arch (car (string-split arch #\-))))
155 (cond ((string=? arch "i686") "i386")
156 ((string-prefix? "mips" arch) "mips")
157 ((string-prefix? "arm" arch) "arm")
158 ((string-prefix? "aarch64" arch) "arm64")
159 ((string-prefix? "alpha" arch) "alpha")
160 ((string-prefix? "powerpc" arch) "powerpc") ;including "powerpc64le"
161 ((string-prefix? "s390" arch) "s390")
162 ((string-prefix? "riscv" arch) "riscv")
163 (else arch))))
164
165 (define-public (system->defconfig system)
166 "Some systems (notably powerpc-linux) require a special target for kernel
167 defconfig. Return the appropriate make target if applicable, otherwise return
168 \"defconfig\"."
169 (cond ((string-prefix? "powerpc-" system) "pmac32_defconfig")
170 ((string-prefix? "powerpc64le-" system) "ppc64_defconfig")
171 (else "defconfig")))
172
173 \f
174 ;;;
175 ;;; Kernel source code deblobbing.
176 ;;;
177
178 (define (linux-libre-deblob-scripts version
179 deblob-hash
180 deblob-check-hash)
181 (list (version-major+minor version)
182 (origin
183 (method url-fetch)
184 (uri (string-append "https://linux-libre.fsfla.org"
185 "/pub/linux-libre/releases/" version "-gnu/"
186 "deblob-" (version-major+minor version)))
187 (sha256 deblob-hash))
188 (origin
189 (method url-fetch)
190 (uri (string-append "https://linux-libre.fsfla.org"
191 "/pub/linux-libre/releases/" version "-gnu/"
192 "deblob-check"))
193 (sha256 deblob-check-hash))))
194
195 (define deblob-scripts-5.4
196 (linux-libre-deblob-scripts
197 "5.4.28"
198 (base32 "0ckxn7k5zgcqk30dq943bnamr6a6zjbw2aqjl3x30f4kvh5f6k25")
199 (base32 "08ls4gx5vanyiq9rn0869nfq4piw4lx1dl8hh9w9xgkr4ypc1j4k")))
200
201 (define deblob-scripts-4.19
202 (linux-libre-deblob-scripts
203 "4.19.103"
204 (base32 "02zs405awaxydbapka4nz8h6lmnc0dahgczqsrs5s2bmzjyyqkcy")
205 (base32 "1w2wgxblpq09i33qmqgw5v3r5rm9vkkygr6m0sgv4zgczk9s29wr")))
206
207 (define deblob-scripts-4.14
208 (linux-libre-deblob-scripts
209 "4.14.170"
210 (base32 "091jk9jkn9jf39bxpc7395bhcb7p96nkg3a8047380ki06lnfxh6")
211 (base32 "1qij18inijj6c3ma8hv98yjagnzxdxyn134da9fd23ky8q6hbvky")))
212
213 (define deblob-scripts-4.9
214 (linux-libre-deblob-scripts
215 "4.9.213"
216 (base32 "1wvldzlv7q2xdbadas87dh593nxr4a8p5n0f8zpm72lja6w18hmg")
217 (base32 "0fxajshb75siq39lj5h8xvhdj8lcmddkslwlyj65rhlwk6g2r4b2")))
218
219 (define deblob-scripts-4.4
220 (linux-libre-deblob-scripts
221 "4.4.213"
222 (base32 "0x2j1i88am54ih2mk7gyl79g25l9zz4r08xhl482l3fvjj2irwbw")
223 (base32 "0hhin1jpfkd6nwrb6xqxjzl3hdxy4pn8a15hy2d3d83yw6pflbsf")))
224
225 (define* (computed-origin-method gexp-promise hash-algo hash
226 #:optional (name "source")
227 #:key (system (%current-system))
228 (guile (default-guile)))
229 "Return a derivation that executes the G-expression that results
230 from forcing GEXP-PROMISE."
231 (mlet %store-monad ((guile (package->derivation guile system)))
232 (gexp->derivation (or name "computed-origin")
233 (force gexp-promise)
234 #:graft? #f ;nothing to graft
235 #:system system
236 #:guile-for-build guile)))
237
238 (define (make-linux-libre-source version
239 upstream-source
240 deblob-scripts)
241 "Return a 'computed' origin that generates a Linux-libre tarball from the
242 corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
243 (match deblob-scripts
244 ((deblob-version (? origin? deblob) (? origin? deblob-check))
245 (unless (string=? deblob-version (version-major+minor version))
246 ;; The deblob script cannot be expected to work properly on a
247 ;; different version (major+minor) of Linux, even if no errors
248 ;; are signaled during execution.
249 (error "deblob major+minor version mismatch"))
250 (origin
251 (method computed-origin-method)
252 (file-name (string-append "linux-libre-" version "-guix.tar.xz"))
253 (sha256 #f)
254 (uri
255 (delay
256 (with-imported-modules '((guix build utils))
257 #~(begin
258 (use-modules (guix build utils)
259 (srfi srfi-1)
260 (ice-9 match)
261 (ice-9 ftw))
262 (let ((dir (string-append "linux-" #$version)))
263
264 (mkdir "/tmp/bin")
265 (set-path-environment-variable
266 "PATH" '("bin")
267 (list "/tmp"
268 #+(canonical-package bash)
269 #+(canonical-package coreutils)
270 #+(canonical-package diffutils)
271 #+(canonical-package findutils)
272 #+(canonical-package patch)
273 #+(canonical-package xz)
274 #+(canonical-package sed)
275 #+(canonical-package grep)
276 #+(canonical-package bzip2)
277 #+(canonical-package gzip)
278 #+(canonical-package tar)
279 ;; The comments in the 'deblob-check' script
280 ;; claim that it supports Python 2 and 3, but
281 ;; in fact it fails when run in Python 3 as
282 ;; of version 5.1.3.
283 #+python-2))
284
285 (with-directory-excursion "/tmp/bin"
286
287 (copy-file #+deblob "deblob")
288 (chmod "deblob" #o755)
289 (substitute* "deblob"
290 (("/bin/sh") (which "sh")))
291
292 (copy-file #+deblob-check "deblob-check")
293 (chmod "deblob-check" #o755)
294 (substitute* "deblob-check"
295 (("/bin/sh") (which "sh"))
296 (("/bin/sed") (which "sed"))
297 (("/usr/bin/python") (which "python"))))
298
299 (if (file-is-directory? #+upstream-source)
300 (begin
301 (format #t "Copying upstream linux source...~%")
302 (force-output)
303 (invoke "cp" "--archive" #+upstream-source dir)
304 (invoke "chmod" "--recursive" "u+w" dir))
305 (begin
306 (format #t "Unpacking upstream linux tarball...~%")
307 (force-output)
308 (invoke "tar" "xf" #$upstream-source)
309 (match (scandir "."
310 (lambda (name)
311 (and (not (member name '("." "..")))
312 (file-is-directory? name))))
313 ((unpacked-dir)
314 (unless (string=? dir unpacked-dir)
315 (rename-file unpacked-dir dir)))
316 (dirs
317 (error "multiple directories found" dirs)))))
318
319 (with-directory-excursion dir
320 (setenv "PYTHON" (which "python"))
321 (format #t "Running deblob script...~%")
322 (force-output)
323 (invoke "/tmp/bin/deblob"))
324
325 (format #t "~%Packing new Linux-libre tarball...~%")
326 (force-output)
327 (invoke "tar" "cvfa" #$output
328 ;; Avoid non-determinism in the archive.
329 "--mtime=@0"
330 "--owner=root:0"
331 "--group=root:0"
332 "--sort=name"
333 "--hard-dereference"
334 dir))))))))))
335
336 \f
337 ;;;
338 ;;; Kernel sources.
339 ;;;
340
341 (define (linux-libre-urls version)
342 "Return a list of URLs for Linux-Libre VERSION."
343 (list (string-append
344 "https://linux-libre.fsfla.org/pub/linux-libre/releases/"
345 version "-gnu/linux-libre-" version "-gnu.tar.xz")
346
347 ;; XXX: Work around <http://bugs.gnu.org/14851>.
348 (string-append
349 "ftp://alpha.gnu.org/gnu/guix/mirror/linux-libre-"
350 version "-gnu.tar.xz")
351
352 ;; Maybe this URL will become valid eventually.
353 (string-append
354 "mirror://gnu/linux-libre/" version "-gnu/linux-libre-"
355 version "-gnu.tar.xz")))
356
357 (define (%upstream-linux-source version hash)
358 (origin
359 (method url-fetch)
360 (uri (string-append "mirror://kernel.org"
361 "/linux/kernel/v" (version-major version) ".x/"
362 "linux-" version ".tar.xz"))
363 (sha256 hash)))
364
365 (define-public linux-libre-5.4-version "5.4.28")
366 (define-public linux-libre-5.4-pristine-source
367 (let ((version linux-libre-5.4-version)
368 (hash (base32 "197p7rjmbs229ncj1y8s80f7n4bm8g9w0jrv1109m3rl8q9wqqy8")))
369 (make-linux-libre-source version
370 (%upstream-linux-source version hash)
371 deblob-scripts-5.4)))
372
373 (define-public linux-libre-4.19-version "4.19.113")
374 (define-public linux-libre-4.19-pristine-source
375 (let ((version linux-libre-4.19-version)
376 (hash (base32 "1rf0jz7r1f4rb4k0g3glssfa1hm2ka6vlbwjlkmsx1bybxnmg85m")))
377 (make-linux-libre-source version
378 (%upstream-linux-source version hash)
379 deblob-scripts-4.19)))
380
381 (define-public linux-libre-4.14-version "4.14.174")
382 (define-public linux-libre-4.14-pristine-source
383 (let ((version linux-libre-4.14-version)
384 (hash (base32 "12ai2lc2ny38s93d0m5ngrv030vwv1h2hhzp0fs6fhjxasikq8jc")))
385 (make-linux-libre-source version
386 (%upstream-linux-source version hash)
387 deblob-scripts-4.14)))
388
389 (define-public linux-libre-4.9-version "4.9.217")
390 (define-public linux-libre-4.9-pristine-source
391 (let ((version linux-libre-4.9-version)
392 (hash (base32 "06b8av9f9pk2yp95nzv4322k0d5wsg40sxd9kfim1xzb093abckg")))
393 (make-linux-libre-source version
394 (%upstream-linux-source version hash)
395 deblob-scripts-4.9)))
396
397 (define-public linux-libre-4.4-version "4.4.217")
398 (define-public linux-libre-4.4-pristine-source
399 (let ((version linux-libre-4.4-version)
400 (hash (base32 "0vsjchywznmjn01flgvm9vsja5zqni319rfwgy997afcbz0c9spx")))
401 (make-linux-libre-source version
402 (%upstream-linux-source version hash)
403 deblob-scripts-4.4)))
404
405 (define %boot-logo-patch
406 ;; Linux-Libre boot logo featuring Freedo and a gnu.
407 (origin
408 (method url-fetch)
409 (uri (string-append "http://www.fsfla.org/svn/fsfla/software/linux-libre/"
410 "lemote/gnewsense/branches/3.16/100gnu+freedo.patch"))
411 (sha256
412 (base32
413 "1hk9swxxc80bmn2zd2qr5ccrjrk28xkypwhl4z0qx4hbivj7qm06"))))
414
415 (define %linux-libre-arm-export-__sync_icache_dcache-patch
416 (origin
417 (method url-fetch)
418 (uri (string-append
419 "https://salsa.debian.org/kernel-team/linux"
420 "/raw/34a7d9011fcfcfa38b68282fd2b1a8797e6834f0"
421 "/debian/patches/bugfix/arm/"
422 "arm-mm-export-__sync_icache_dcache-for-xen-privcmd.patch"))
423 (file-name "linux-libre-arm-export-__sync_icache_dcache.patch")
424 (sha256
425 (base32 "1ifnfhpakzffn4b8n7x7w5cps9mzjxlkcfz9zqak2vaw8nzvl39f"))))
426
427 (define (source-with-patches source patches)
428 (origin
429 (inherit source)
430 (patches (append (origin-patches source)
431 patches))))
432
433 (define-public linux-libre-5.4-source
434 (source-with-patches linux-libre-5.4-pristine-source
435 (list %boot-logo-patch
436 %linux-libre-arm-export-__sync_icache_dcache-patch
437 ;; Pinebook Pro patch from linux-next,
438 ;; can be dropped for linux-libre 5.7
439 (search-patch
440 "linux-libre-support-for-Pinebook-Pro.patch"))))
441
442 (define-public linux-libre-4.19-source
443 (source-with-patches linux-libre-4.19-pristine-source
444 (list %boot-logo-patch
445 %linux-libre-arm-export-__sync_icache_dcache-patch)))
446
447 (define-public linux-libre-4.14-source
448 (source-with-patches linux-libre-4.14-pristine-source
449 (list %boot-logo-patch)))
450
451 (define-public linux-libre-4.9-source
452 (source-with-patches linux-libre-4.9-pristine-source
453 (list %boot-logo-patch)))
454
455 (define-public linux-libre-4.4-source
456 (source-with-patches linux-libre-4.4-pristine-source
457 (list %boot-logo-patch)))
458
459 \f
460 ;;;
461 ;;; Kernel headers.
462 ;;;
463
464 (define (make-linux-libre-headers version hash-string)
465 (make-linux-libre-headers* version
466 (origin
467 (method url-fetch)
468 (uri (linux-libre-urls version))
469 (sha256 (base32 hash-string)))))
470
471 (define (make-linux-libre-headers* version source)
472 (package
473 (name "linux-libre-headers")
474 (version version)
475 (source source)
476 (build-system gnu-build-system)
477 (native-inputs `(("perl" ,perl)
478 ,@(if (version>=? version "4.16")
479 `(("flex" ,flex)
480 ("bison" ,bison))
481 '())
482 ,@(if (version>=? version "5.3")
483 `(("rsync" ,rsync))
484 '())))
485 (arguments
486 `(#:modules ((guix build gnu-build-system)
487 (guix build utils)
488 (srfi srfi-1))
489 #:phases
490 (modify-phases %standard-phases
491 (delete 'configure)
492 (replace 'build
493 (lambda _
494 (let ((arch ,(system->linux-architecture
495 (or (%current-target-system)
496 (%current-system))))
497 (defconfig ,(system->defconfig
498 (or (%current-target-system)
499 (%current-system)))))
500 (setenv "ARCH" arch)
501 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
502 (invoke "make" defconfig)
503 (invoke "make" "mrproper" "headers_check"))))
504 (replace 'install
505 (lambda* (#:key outputs #:allow-other-keys)
506 (let ((out (assoc-ref outputs "out")))
507 (invoke "make"
508 (string-append "INSTALL_HDR_PATH=" out)
509 "headers_install")
510
511 (mkdir (string-append out "/include/config"))
512 (call-with-output-file
513 (string-append out
514 "/include/config/kernel.release")
515 (lambda (p)
516 (format p "~a-default~%" ,version)))
517
518 ;; Remove the '.install' and '..install.cmd' files; the
519 ;; latter contains store paths, which pulls in bootstrap
520 ;; binaries in the build environment, and prevents bit
521 ;; reproducibility for the bootstrap binaries.
522 (for-each delete-file (find-files out "\\.install"))
523
524 #t))))
525 #:allowed-references ()
526 #:tests? #f))
527 (home-page "https://www.gnu.org/software/linux-libre/")
528 (synopsis "GNU Linux-Libre kernel headers")
529 (description "Headers of the Linux-Libre kernel.")
530 (license license:gpl2)))
531
532 (define-public linux-libre-headers-5.4
533 (make-linux-libre-headers* linux-libre-5.4-version
534 linux-libre-5.4-source))
535
536 (define-public linux-libre-headers-4.19
537 (make-linux-libre-headers* linux-libre-4.19-version
538 linux-libre-4.19-source))
539
540 (define-public linux-libre-headers-4.14
541 (make-linux-libre-headers* linux-libre-4.14-version
542 linux-libre-4.14-source))
543
544 (define-public linux-libre-headers-4.9
545 (make-linux-libre-headers* linux-libre-4.9-version
546 linux-libre-4.9-source))
547
548 (define-public linux-libre-headers-4.4
549 (make-linux-libre-headers* linux-libre-4.4-version
550 linux-libre-4.4-source))
551
552 ;; The following package is used in the early bootstrap, and thus must be kept
553 ;; stable and with minimal build requirements.
554 (define-public linux-libre-headers-4.19.56
555 (make-linux-libre-headers "4.19.56"
556 "1zqiic55viy065lhnkmhn33sz3bbbr2ykbm5f92yzd8lpc9zl7yx"))
557
558 (define-public linux-libre-headers linux-libre-headers-4.19.56)
559
560 \f
561 ;;;
562 ;;; Kernel configurations.
563 ;;;
564
565 (define* (kernel-config arch #:key variant)
566 "Return the absolute file name of the Linux-Libre build configuration file
567 for ARCH and optionally VARIANT, or #f if there is no such configuration."
568 (let* ((name (string-append (if variant (string-append variant "-") "")
569 (if (string=? "i386" arch) "i686" arch) ".conf"))
570 (file (string-append "linux-libre/" name)))
571 (search-auxiliary-file file)))
572
573 (define %default-extra-linux-options
574 `(;; Some very mild hardening.
575 ("CONFIG_SECURITY_DMESG_RESTRICT" . #t)
576 ;; All kernels should have NAMESPACES options enabled
577 ("CONFIG_NAMESPACES" . #t)
578 ("CONFIG_UTS_NS" . #t)
579 ("CONFIG_IPC_NS" . #t)
580 ("CONFIG_USER_NS" . #t)
581 ("CONFIG_PID_NS" . #t)
582 ("CONFIG_NET_NS" . #t)
583 ;; Modules required for initrd:
584 ("CONFIG_NET_9P" . m)
585 ("CONFIG_NET_9P_VIRTIO" . m)
586 ("CONFIG_VIRTIO_BLK" . m)
587 ("CONFIG_VIRTIO_NET" . m)
588 ("CONFIG_VIRTIO_PCI" . m)
589 ("CONFIG_VIRTIO_BALLOON" . m)
590 ("CONFIG_VIRTIO_MMIO" . m)
591 ("CONFIG_FUSE_FS" . m)
592 ("CONFIG_CIFS" . m)
593 ("CONFIG_9P_FS" . m)))
594
595 (define (config->string options)
596 (string-join (map (match-lambda
597 ((option . 'm)
598 (string-append option "=m"))
599 ((option . #t)
600 (string-append option "=y"))
601 ((option . #f)
602 (string-append option "=n")))
603 options)
604 "\n"))
605
606 \f
607 ;;;
608 ;;; Kernel package utilities.
609 ;;;
610
611 (define* (make-linux-libre version hash-string supported-systems
612 #:key
613 ;; A function that takes an arch and a variant.
614 ;; See kernel-config for an example.
615 (extra-version #f)
616 (configuration-file #f)
617 (defconfig "defconfig")
618 (extra-options %default-extra-linux-options)
619 (patches (list %boot-logo-patch)))
620 (make-linux-libre* version
621 (origin
622 (method url-fetch)
623 (uri (linux-libre-urls version))
624 (sha256 (base32 hash-string))
625 (patches patches))
626 supported-systems
627 #:extra-version extra-version
628 #:configuration-file configuration-file
629 #:defconfig defconfig
630 #:extra-options extra-options))
631
632 (define* (make-linux-libre* version source supported-systems
633 #:key
634 ;; A function that takes an arch and a variant.
635 ;; See kernel-config for an example.
636 (extra-version #f)
637 (configuration-file #f)
638 (defconfig "defconfig")
639 (extra-options %default-extra-linux-options))
640 (package
641 (name (if extra-version
642 (string-append "linux-libre-" extra-version)
643 "linux-libre"))
644 (version version)
645 (source source)
646 (supported-systems supported-systems)
647 (build-system gnu-build-system)
648 (native-inputs
649 `(("perl" ,perl)
650 ("bc" ,bc)
651 ("openssl" ,openssl)
652 ("elfutils" ,elfutils) ; Needed to enable CONFIG_STACK_VALIDATION
653 ("flex" ,flex)
654 ("bison" ,bison)
655
656 ;; These are needed to compile the GCC plugins.
657 ("gmp" ,gmp)
658 ("mpfr" ,mpfr)
659 ("mpc" ,mpc)
660
661 ,@(match (and configuration-file
662 (configuration-file
663 (system->linux-architecture
664 (or (%current-target-system) (%current-system)))
665 #:variant (version-major+minor version)))
666 (#f ;no config for this platform
667 '())
668 ((? string? config)
669 `(("kconfig" ,config))))))
670 (arguments
671 `(#:modules ((guix build gnu-build-system)
672 (guix build utils)
673 (srfi srfi-1)
674 (srfi srfi-26)
675 (ice-9 ftw)
676 (ice-9 match))
677 #:phases
678 (modify-phases %standard-phases
679 (add-after 'unpack 'patch-/bin/pwd
680 (lambda _
681 (substitute* (find-files "." "^Makefile(\\.include)?$")
682 (("/bin/pwd") "pwd"))
683 #t))
684 (replace 'configure
685 (lambda* (#:key inputs native-inputs target #:allow-other-keys)
686 ;; On AArch64 (at least), we need to remove glibc headers from
687 ;; CPATH (they are still available as "system headers"), so that
688 ;; the kernel can override uint64_t. See
689 ;; <https://bugs.gnu.org/37593>. This is also true when
690 ;; cross-compiling, except in that case, cross-libc must be
691 ;; removed from CROSS_CPATH.
692 (let ((var ,(if (%current-target-system)
693 "CROSS_CPATH"
694 "CPATH"))
695 (libc ,(if (%current-target-system)
696 "cross-libc"
697 "libc")))
698 (setenv var
699 (string-join
700 (remove
701 (cut string-prefix? (assoc-ref inputs libc) <>)
702 (string-split (getenv var) #\:))
703 ":"))
704 (format #t "environment variable `~a' changed to `~a'~%"
705 var (getenv var)))
706
707 ;; Avoid introducing timestamps
708 (setenv "KCONFIG_NOTIMESTAMP" "1")
709 (setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH"))
710
711 ;; Set ARCH and CROSS_COMPILE
712 (let ((arch ,(system->linux-architecture
713 (or (%current-target-system)
714 (%current-system)))))
715 (setenv "ARCH" arch)
716 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
717
718 (when target
719 (setenv "CROSS_COMPILE" (string-append target "-"))
720 (format #t "`CROSS_COMPILE' set to `~a'~%"
721 (getenv "CROSS_COMPILE"))))
722
723 (setenv "EXTRA_VERSION" ,extra-version)
724
725 (let ((build (assoc-ref %standard-phases 'build))
726 (config (assoc-ref (or native-inputs inputs) "kconfig")))
727
728 ;; Use a custom kernel configuration file or a default
729 ;; configuration file.
730 (if config
731 (begin
732 (copy-file config ".config")
733 (chmod ".config" #o666))
734 (invoke "make" ,defconfig))
735
736 ;; Appending works even when the option wasn't in the
737 ;; file. The last one prevails if duplicated.
738 (let ((port (open-file ".config" "a"))
739 (extra-configuration ,(config->string extra-options)))
740 (display extra-configuration port)
741 (close-port port))
742
743 (invoke "make" "oldconfig"))))
744 (replace 'install
745 (lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
746 (let* ((out (assoc-ref outputs "out"))
747 (moddir (string-append out "/lib/modules"))
748 (dtbdir (string-append out "/lib/dtbs")))
749 ;; Install kernel image, kernel configuration and link map.
750 (for-each (lambda (file) (install-file file out))
751 (find-files "." "^(\\.config|bzImage|zImage|Image|vmlinuz|System\\.map|Module\\.symvers)$"))
752 ;; Install device tree files
753 (unless (null? (find-files "." "\\.dtb$"))
754 (mkdir-p dtbdir)
755 (invoke "make" (string-append "INSTALL_DTBS_PATH=" dtbdir)
756 "dtbs_install"))
757 ;; Install kernel modules
758 (mkdir-p moddir)
759 (invoke "make"
760 ;; Disable depmod because the Guix system's module directory
761 ;; is an union of potentially multiple packages. It is not
762 ;; possible to use depmod to usefully calculate a dependency
763 ;; graph while building only one of those packages.
764 "DEPMOD=true"
765 (string-append "MODULE_DIR=" moddir)
766 (string-append "INSTALL_PATH=" out)
767 (string-append "INSTALL_MOD_PATH=" out)
768 "INSTALL_MOD_STRIP=1"
769 "modules_install")
770 (let* ((versions (filter (lambda (name)
771 (not (string-prefix? "." name)))
772 (scandir moddir)))
773 (version (match versions
774 ((x) x))))
775 ;; There are symlinks to the build and source directory,
776 ;; both of which will point to target /tmp/guix-build*
777 ;; and thus not be useful in a profile. Delete the symlinks.
778 (false-if-file-not-found
779 (delete-file (string-append moddir "/" version "/build")))
780 (false-if-file-not-found
781 (delete-file (string-append moddir "/" version "/source"))))
782 #t))))
783 #:tests? #f))
784 (home-page "https://www.gnu.org/software/linux-libre/")
785 (synopsis "100% free redistribution of a cleaned Linux kernel")
786 (description
787 "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.
788 It has been modified to remove all non-free binary blobs.")
789 (license license:gpl2)))
790
791 \f
792 ;;;
793 ;;; Generic kernel packages.
794 ;;;
795
796 (define-public linux-libre-5.4
797 (make-linux-libre* linux-libre-5.4-version
798 linux-libre-5.4-source
799 '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux")
800 #:configuration-file kernel-config))
801
802 (define-public linux-libre-version linux-libre-5.4-version)
803 (define-public linux-libre-pristine-source linux-libre-5.4-pristine-source)
804 (define-public linux-libre-source linux-libre-5.4-source)
805 (define-public linux-libre linux-libre-5.4)
806
807 (define-public linux-libre-4.19
808 (make-linux-libre* linux-libre-4.19-version
809 linux-libre-4.19-source
810 '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux")
811 #:configuration-file kernel-config))
812
813 (define-public linux-libre-4.14
814 (make-linux-libre* linux-libre-4.14-version
815 linux-libre-4.14-source
816 '("x86_64-linux" "i686-linux" "armhf-linux")
817 #:configuration-file kernel-config))
818
819 (define-public linux-libre-4.9
820 (make-linux-libre* linux-libre-4.9-version
821 linux-libre-4.9-source
822 '("x86_64-linux" "i686-linux")
823 #:configuration-file kernel-config))
824
825 (define-public linux-libre-4.4
826 (make-linux-libre* linux-libre-4.4-version
827 linux-libre-4.4-source
828 '("x86_64-linux" "i686-linux")
829 #:configuration-file kernel-config
830 #:extra-options
831 (append
832 `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html
833 ;; This option was removed upstream in version 4.7.
834 ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t))
835 %default-extra-linux-options)))
836
837 \f
838 ;;;
839 ;;; Specialized kernel variants.
840 ;;;
841
842 (define-public linux-libre-arm-generic
843 (make-linux-libre* linux-libre-version
844 linux-libre-source
845 '("armhf-linux")
846 #:defconfig "multi_v7_defconfig"
847 #:extra-version "arm-generic"))
848
849 (define-public linux-libre-arm-veyron
850 (deprecated-package "linux-libre-arm-veyron" linux-libre-arm-generic))
851
852 (define-public linux-libre-arm-generic-4.19
853 (make-linux-libre* linux-libre-4.19-version
854 linux-libre-4.19-source
855 '("armhf-linux")
856 #:defconfig "multi_v7_defconfig"
857 #:extra-version "arm-generic"))
858
859 (define-public linux-libre-arm-generic-4.14
860 (make-linux-libre* linux-libre-4.14-version
861 linux-libre-4.14-source
862 '("armhf-linux")
863 #:defconfig "multi_v7_defconfig"
864 #:extra-version "arm-generic"))
865
866 (define-public linux-libre-arm-omap2plus
867 (make-linux-libre* linux-libre-version
868 linux-libre-source
869 '("armhf-linux")
870 #:defconfig "omap2plus_defconfig"
871 #:extra-version "arm-omap2plus"))
872
873 (define-public linux-libre-arm-omap2plus-4.19
874 (make-linux-libre* linux-libre-4.19-version
875 linux-libre-4.19-source
876 '("armhf-linux")
877 #:defconfig "omap2plus_defconfig"
878 #:extra-version "arm-omap2plus"))
879
880 (define-public linux-libre-arm-omap2plus-4.14
881 (make-linux-libre* linux-libre-4.14-version
882 linux-libre-4.14-source
883 '("armhf-linux")
884 #:defconfig "omap2plus_defconfig"
885 #:extra-version "arm-omap2plus"))
886
887 (define-public linux-libre-arm64-generic
888 (make-linux-libre* linux-libre-version
889 linux-libre-source
890 '("aarch64-linux")
891 #:defconfig "defconfig"
892 #:extra-version "arm64-generic"))
893
894 (define-public linux-libre-riscv64-generic
895 (make-linux-libre* linux-libre-version
896 linux-libre-source
897 '("riscv64-linux")
898 #:extra-version "riscv64-generic"))
899
900 \f
901 ;;;
902 ;;; Linux kernel modules.
903 ;;;
904
905 (define-public acpi-call-linux-module
906 (package
907 (name "acpi-call-linux-module")
908 (version "3.17")
909 (source
910 (origin
911 (method git-fetch)
912 (uri (git-reference
913 (url "https://github.com/teleshoes/acpi_call.git")
914 (commit version)))
915 (file-name (git-file-name name version))
916 (sha256
917 (base32 "04mbv4lasm3vv1j4ndxhnz4hvp5wg8f5fc9q6qxv0nhvwjynmsl3"))))
918 (build-system linux-module-build-system)
919 (arguments
920 `(#:tests? #f ; no tests
921 #:phases
922 (modify-phases %standard-phases
923 (add-after 'unpack 'fix-for-linux-4.12
924 (lambda _
925 (substitute* "acpi_call.c"
926 (("asm/uaccess\\.h")
927 "linux/uaccess.h"))
928 #t))
929 (add-after 'install 'install-documentation
930 (lambda* (#:key outputs #:allow-other-keys)
931 (let* ((out (assoc-ref outputs "out"))
932 (doc (string-append out "/share/doc/" ,name "-" ,version)))
933 (for-each (lambda (file)
934 (let ((target (string-append doc "/" file)))
935 (mkdir-p (dirname target))
936 (copy-recursively file target)))
937 (list "README.md" "examples"))
938 #t))))))
939 (home-page "https://github.com/teleshoes/acpi_call")
940 (synopsis "Linux kernel module to perform ACPI method calls")
941 (description
942 "This simple Linux kernel module allows calls from user space to any
943 @acronym{ACPI, Advanced Configuration and Power Interface} method provided by
944 your computer's firmware, by writing to @file{/proc/acpi/call}. You can pass
945 any number of parameters of types @code{ACPI_INTEGER}, @code{ACPI_STRING},
946 and @code{ACPI_BUFFER}.
947
948 It grants direct and undocumented access to your hardware that may cause damage
949 and should be used with caution, especially on untested models.")
950 (license license:gpl3+))) ; see README.md (no licence headers)
951
952 (define-public rtl8812au-aircrack-ng-linux-module
953 (let ((commit "945d6ed6505c32f0993b1dba576388e92e78101b")
954 (revision "0"))
955 (package
956 (name "rtl8812au-aircrack-ng-linux-module")
957 (version (git-version "5.6.4.2" revision commit))
958 (source
959 (origin
960 (method git-fetch)
961 (uri (git-reference
962 (url "https://github.com/aircrack-ng/rtl8812au.git")
963 (commit commit)))
964 (file-name (git-file-name name version))
965 (sha256
966 (base32 "1pjws7qb5l4z9k80vgz4zdxmqhbwxjjrmkpf0hijf821byyddvi7"))
967 (modules '((guix build utils)))
968 (snippet
969 '(begin
970 ;; Remove bundled tarballs, APKs, word lists, speadsheets,
971 ;; and other unnecessary unlicenced things.
972 (for-each delete-file-recursively (list "android"
973 "docs"
974 "tools"))
975 #t))))
976 (build-system linux-module-build-system)
977 (arguments
978 `(#:phases
979 (modify-phases %standard-phases
980 (replace 'build
981 (lambda* (#:key inputs make-flags #:allow-other-keys)
982 (apply invoke "make"
983 (string-append "KSRC="
984 (assoc-ref inputs "linux-module-builder")
985 "/lib/modules/build")
986 (or make-flags '())))))
987 #:tests? #f)) ; no test suite
988 (supported-systems '("x86_64-linux" "i686-linux"))
989 (home-page "https://github.com/aircrack-ng/rtl8812au")
990 (synopsis "Linux driver for Realtek USB wireless network adapters")
991 (description
992 "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless
993 network adapters, modified by the aircrack-ng project to support monitor mode
994 and frame injection. It provides a @code{88XXau} kernel module that supports
995 RTL8812AU, RTL8821AU, and RTL8814AU chips.")
996 (license license:gpl2+))))
997
998 (define-public vhba-module
999 (package
1000 (name "vhba-module")
1001 (version "20200106")
1002 (source (origin
1003 (method url-fetch)
1004 (uri (string-append
1005 "http://downloads.sourceforge.net/cdemu/vhba-module/vhba-module-"
1006 version ".tar.bz2"))
1007 (sha256
1008 (base32
1009 "10rlvsfj0fw6n0qmwcnvhimqnsnhi7n55lyl7fq1pkwggf5218sr"))))
1010 (build-system linux-module-build-system)
1011 (arguments
1012 ;; TODO: No tests?
1013 `(#:tests? #f))
1014 (home-page "https://cdemu.sourceforge.io/")
1015 (synopsis "Kernel module that emulates SCSI devices")
1016 (description "VHBA module provides a Virtual (SCSI) HBA, which is the link
1017 between the CDemu userspace daemon and linux kernel.")
1018 (license license:gpl2+)))
1019
1020 (define-public ddcci-driver-linux
1021 (package
1022 (name "ddcci-driver-linux")
1023 (version "0.3.3")
1024 (source
1025 (origin
1026 (method git-fetch)
1027 (uri
1028 (git-reference
1029 (url "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux.git")
1030 (commit (string-append "v" version))))
1031 (file-name (git-file-name name version))
1032 (sha256
1033 (base32
1034 "0vkkja3ykjil783zjpwp0vz7jy2fp9ccazzi3afd4fjk8gldin7f"))))
1035 (build-system linux-module-build-system)
1036 (arguments
1037 `(#:tests? #f ; no tests
1038 #:phases
1039 (modify-phases %standard-phases
1040 (replace 'build
1041 (lambda args
1042 (for-each
1043 (lambda (module)
1044 (with-directory-excursion module
1045 (apply (assoc-ref %standard-phases 'build) args)))
1046 '("ddcci" "ddcci-backlight"))
1047 #t))
1048 (replace 'install
1049 (lambda args
1050 (for-each
1051 (lambda (module)
1052 (with-directory-excursion module
1053 (apply (assoc-ref %standard-phases 'install) args)))
1054 '("ddcci" "ddcci-backlight"))
1055 #t)))))
1056 (home-page "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux")
1057 (synopsis "Pair of Linux kernel drivers for DDC/CI monitors")
1058 (description "This package provides two Linux kernel drivers, ddcci and
1059 ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs
1060 interface. The ddcci module creates a character device for each DDC/CI
1061 monitors in @file{/dev/bus/ddcci/[I²C busnumber]}. While the ddcci-backlight
1062 module allows the control of the backlight level or luminance property when
1063 supported under @file{/sys/class/backlight/}.")
1064 (license license:gpl2+)))
1065
1066 \f
1067 ;;;
1068 ;;; Pluggable authentication modules (PAM).
1069 ;;;
1070
1071 (define-public linux-pam
1072 (package
1073 (name "linux-pam")
1074 (version "1.3.1")
1075 (source
1076 (origin
1077 (method url-fetch)
1078 (uri (string-append
1079 "https://github.com/linux-pam/linux-pam/releases/download/v"
1080 version "/Linux-PAM-" version ".tar.xz"))
1081 (sha256
1082 (base32
1083 "1nyh9kdi3knhxcbv5v4snya0g3gff0m671lnvqcbygw3rm77mx7g"))
1084 (patches (search-patches "linux-pam-no-setfsuid.patch"))))
1085
1086 (build-system gnu-build-system)
1087 (native-inputs
1088 `(("flex" ,flex)
1089
1090 ;; TODO: optional dependencies
1091 ;; ("libxcrypt" ,libxcrypt)
1092 ;; ("cracklib" ,cracklib)
1093 ))
1094 (arguments
1095 `(;; Most users, such as `shadow', expect the headers to be under
1096 ;; `security'.
1097 #:configure-flags (list (string-append "--includedir="
1098 (assoc-ref %outputs "out")
1099 "/include/security")
1100
1101 ;; XXX: <rpc/rpc.h> is missing from glibc when
1102 ;; cross-compiling, so we have to disable NIS
1103 ;; support altogether.
1104 ,@(if (%current-target-system)
1105 '("--disable-nis")
1106 '()))
1107
1108 ;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
1109 ;; isn't available.
1110 #:tests? #f))
1111 (home-page "http://www.linux-pam.org/")
1112 (synopsis "Pluggable authentication modules for Linux")
1113 (description
1114 "A *Free* project to implement OSF's RFC 86.0.
1115 Pluggable authentication modules are small shared object files that can
1116 be used through the PAM API to perform tasks, like authenticating a user
1117 at login. Local and dynamic reconfiguration are its key features.")
1118 (license license:bsd-3)))
1119
1120 (define-public linux-pam-1.2
1121 (package
1122 (inherit linux-pam)
1123 (version "1.2.1")
1124 (source
1125 (origin
1126 (method url-fetch)
1127 (uri (string-append
1128 "http://www.linux-pam.org/library/"
1129 "Linux-PAM-" version ".tar.bz2"))
1130 (sha256
1131 (base32
1132 "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl"))
1133 (patches (search-patches "linux-pam-no-setfsuid.patch"))))))
1134
1135
1136 ;;;
1137 ;;; Miscellaneous.
1138 ;;;
1139
1140 (define-public psmisc
1141 (package
1142 (name "psmisc")
1143 (version "23.3")
1144 (source
1145 (origin
1146 (method url-fetch)
1147 (uri (string-append "mirror://sourceforge/psmisc/psmisc/psmisc-"
1148 version ".tar.xz"))
1149 (sha256
1150 (base32 "16i7qzjmm6g0lzha8yzpfrlcxnvkgh95hkq9gdjd4zmzb8d0wxa1"))))
1151 (build-system gnu-build-system)
1152 (arguments
1153 `(,@(if (%current-target-system)
1154 '(#:configure-flags
1155 (list
1156 "ac_cv_func_malloc_0_nonnull=yes"
1157 "ac_cv_func_realloc_0_nonnull=yes"))
1158 '())))
1159 (inputs `(("ncurses" ,ncurses)))
1160 (home-page "https://gitlab.com/psmisc/psmisc")
1161 (synopsis "Small utilities that use the proc file system")
1162 (description
1163 "This PSmisc package is a set of some small useful utilities that
1164 use the proc file system. We're not about changing the world, but
1165 providing the system administrator with some help in common tasks.")
1166 (license license:gpl2+)))
1167
1168 (define-public util-linux
1169 (package
1170 (name "util-linux")
1171 (version "2.34")
1172 (source (origin
1173 (method url-fetch)
1174 (uri (string-append "mirror://kernel.org/linux/utils/"
1175 "util-linux/v" (version-major+minor version) "/"
1176 "util-linux-" version ".tar.xz"))
1177 (sha256
1178 (base32
1179 "1db2kydkwjmvgd1glkcba3adhidxw0f1x735dcjdpdjjf869sgvl"))
1180 (patches (search-patches "util-linux-tests.patch"))
1181 (modules '((guix build utils)))
1182 (snippet
1183 ;; We take 'nologin' from Shadow, the 'logger' program from
1184 ;; GNU Inetutils and 'kill' from GNU Coreutils.
1185 '(begin
1186 (substitute* "configure"
1187 (("build_nologin=yes") "build_nologin=no")
1188 (("build_logger=yes") "build_logger=no")
1189 (("build_kill=yes") "build_kill=no"))
1190 #t))))
1191 (build-system gnu-build-system)
1192 (outputs '("out"
1193 "static")) ;>2 MiB of static .a libraries
1194 (arguments
1195 `(#:configure-flags (list "--disable-use-tty-group"
1196 "--enable-fs-paths-default=/run/current-system/profile/sbin"
1197 ;; Don't try to chown root:root mount and umount
1198 "--disable-makeinstall-chown"
1199 ;; Install completions where our
1200 ;; bash-completion package expects them.
1201 (string-append "--with-bashcompletiondir="
1202 (assoc-ref %outputs "out")
1203 "/etc/bash_completion.d"))
1204 #:phases (modify-phases %standard-phases
1205 (add-before 'build 'set-umount-file-name
1206 (lambda* (#:key outputs #:allow-other-keys)
1207 ;; Tell 'eject' the right file name of 'umount'.
1208 (let ((out (assoc-ref outputs "out")))
1209 (substitute* "sys-utils/eject.c"
1210 (("\"/bin/umount\"")
1211 (string-append "\"" out "/bin/umount\"")))
1212 #t)))
1213 (add-before 'check 'pre-check
1214 (lambda* (#:key inputs outputs #:allow-other-keys)
1215 (let ((out (assoc-ref outputs "out"))
1216 (net (assoc-ref inputs "net-base")))
1217 ;; Change the test to refer to the right file.
1218 (substitute* "tests/ts/misc/mcookie"
1219 (("/etc/services")
1220 (string-append net "/etc/services")))
1221 #t)))
1222 (add-after 'install 'move-static-libraries
1223 (lambda* (#:key outputs #:allow-other-keys)
1224 (let ((out (assoc-ref outputs "out"))
1225 (static (assoc-ref outputs "static")))
1226 (mkdir-p (string-append static "/lib"))
1227 (with-directory-excursion out
1228 (for-each (lambda (file)
1229 (rename-file file
1230 (string-append static "/"
1231 file)))
1232 (find-files "lib" "\\.a$"))
1233
1234 ;; Remove references to the static library from the '.la'
1235 ;; files so that Libtool does the right thing when both
1236 ;; the shared and static library is available.
1237 (substitute* (find-files "lib" "\\.la$")
1238 (("old_library=.*") "old_library=''\n")))
1239
1240 #t))))))
1241 (inputs `(("zlib" ,zlib)
1242 ("ncurses" ,ncurses)
1243
1244 ;; XXX: This is so that the 'pre-check' phase can find it.
1245 ,@(if (%current-target-system)
1246 `(("net-base" ,net-base))
1247 '())))
1248 (native-inputs
1249 `(("perl" ,perl)
1250 ("net-base" ,net-base))) ;for tests
1251 (home-page "https://www.kernel.org/pub/linux/utils/util-linux/")
1252 (synopsis "Collection of utilities for the Linux kernel")
1253 (description "Util-linux is a diverse collection of Linux kernel
1254 utilities. It provides dmesg and includes tools for working with file systems,
1255 block devices, UUIDs, TTYs, and many other tools.")
1256
1257 ;; Note that util-linux doesn't use the same license for all the
1258 ;; code. GPLv2+ is the default license for a code without an
1259 ;; explicitly defined license.
1260 (license (list license:gpl3+ license:gpl2+ license:gpl2 license:lgpl2.0+
1261 license:bsd-4 license:public-domain))))
1262
1263 ;; util-linux optionally supports udev, which allows lsblk to read file system
1264 ;; metadata without special privileges. Add it as a separate package to avoid
1265 ;; a circular dependency, and to keep the size small.
1266 (define-public util-linux+udev
1267 (package/inherit
1268 util-linux
1269 (name "util-linux-with-udev")
1270 (inputs
1271 `(("udev" ,eudev)
1272 ,@(package-inputs util-linux)))))
1273
1274 (define-public ddate
1275 (package
1276 (name "ddate")
1277 (version "0.2.2")
1278 (source (origin
1279 (method url-fetch)
1280 (uri (string-append "https://github.com/bo0ts/ddate/archive/v"
1281 version ".tar.gz"))
1282 (file-name (string-append name "-" version ".tar.gz"))
1283 (sha256
1284 (base32 "1bbqqq8mswj4bp9083gxjaky5ysfznax4cynsqwmy125z053yg6m"))))
1285 (build-system cmake-build-system)
1286 (arguments '(#:tests? #f))
1287 (home-page "https://github.com/bo0ts/ddate")
1288 (synopsis "PERPETUAL DATE CONVERTER FROM GREGORIAN TO POEE CALENDAR")
1289 (description
1290 "ddate displays the Discordian date and holidays of a given date.
1291 The Discordian calendar was made popular by the \"Illuminatus!\" trilogy
1292 by Robert Shea and Robert Anton Wilson.")
1293 (license license:public-domain)))
1294
1295 (define-public fbset
1296 (package
1297 (name "fbset")
1298 (version "2.1")
1299 (source
1300 (origin
1301 (method url-fetch)
1302 (uri (string-append "http://users.telenet.be/geertu/Linux/fbdev/fbset-"
1303 version ".tar.gz"))
1304 (sha256
1305 (base32 "080wnisi0jq7dp0jcwdp83rq8q8s3kw41vc712516xbv4jq4mzs0"))))
1306 (build-system gnu-build-system)
1307 (arguments
1308 '(#:modules ((guix build gnu-build-system)
1309 (guix build utils)
1310 (srfi srfi-26))
1311 #:phases
1312 (modify-phases %standard-phases
1313 (delete 'configure) ; no configure script
1314 (add-before 'install 'pre-install
1315 (lambda* (#:key outputs #:allow-other-keys)
1316 (let ((out (assoc-ref outputs "out")))
1317 (substitute* "Makefile"
1318 (("mknod ") "true ")
1319 ;; The Makefile doesn't honour PREFIX or similar.
1320 (("/usr") out))
1321 (mkdir out)
1322 (with-directory-excursion out
1323 (for-each mkdir-p (list "sbin"
1324 "man/man5"
1325 "man/man8")))
1326 #t)))
1327 (add-after 'install 'install-fb.modes
1328 (lambda* (#:key outputs #:allow-other-keys)
1329 (let* ((out (assoc-ref outputs "out"))
1330 (etc (string-append out "/etc")))
1331 (for-each (cut install-file <> etc)
1332 (find-files "etc" "^fb\\.modes"))
1333 (symlink "fb.modes.ATI"
1334 (string-append etc "/fb.modes"))
1335 #t))))
1336 ;; Parallel building races to create modes.tab.c.
1337 #:parallel-build? #f
1338 #:tests? #f)) ; no test suite
1339 (native-inputs
1340 `(("bison" ,bison)
1341 ("flex" ,flex)))
1342 (home-page "http://users.telenet.be/geertu/Linux/fbdev/")
1343 (synopsis "Show and modify Linux frame buffer settings")
1344 (description
1345 "The kernel Linux's @dfn{frame buffers} provide a simple interface to
1346 different kinds of graphic displays. The @command{fbset} utility can query and
1347 change various device settings such as depth, virtual resolution, and timing
1348 parameters.")
1349 (license license:gpl2)))
1350
1351 (define-public procps
1352 (package
1353 (name "procps")
1354 (version "3.3.16")
1355 (source (origin
1356 (method url-fetch)
1357 (uri (string-append "mirror://sourceforge/procps-ng/Production/"
1358 "procps-ng-" version ".tar.xz"))
1359 (sha256
1360 (base32
1361 "1br0g93ysqhlv13i1k4lfbimsgxnpy5rgs4lxfc9rkzdbpbaqplj"))))
1362 (build-system gnu-build-system)
1363 (arguments
1364 '(#:modules ((guix build utils)
1365 (guix build gnu-build-system)
1366 (srfi srfi-1)
1367 (srfi srfi-26))
1368 #:phases
1369 (modify-phases %standard-phases
1370 (add-after
1371 'install 'post-install
1372 ;; Remove commands and man pages redudant with
1373 ;; Coreutils.
1374 (lambda* (#:key outputs #:allow-other-keys)
1375 (let* ((out (assoc-ref outputs "out"))
1376 (dup (append-map (cut find-files out <>)
1377 '("^kill" "^uptime"))))
1378 (for-each delete-file dup)
1379 #t))))))
1380 (inputs `(("ncurses" ,ncurses)))
1381 (home-page "https://gitlab.com/procps-ng/procps/")
1382 (synopsis "Utilities that give information about processes")
1383 (description
1384 "Procps is the package that has a bunch of small useful utilities
1385 that give information about processes using the Linux /proc file system.
1386 The package includes the programs ps, top, vmstat, w, kill, free,
1387 slabtop, and skill.")
1388 (license license:gpl2)))
1389
1390 (define-public usbutils
1391 (package
1392 (name "usbutils")
1393 (version "012")
1394 (source
1395 (origin
1396 (method url-fetch)
1397 (uri (string-append "mirror://kernel.org/linux/utils/usb/usbutils/"
1398 "usbutils-" version ".tar.xz"))
1399 (sha256
1400 (base32 "0iiy0q7fzikavmdsjsb0sl9kp3gfh701qwyjjccvqh0qz4jlcqw8"))))
1401 (build-system gnu-build-system)
1402 (outputs (list "out" "python"))
1403 (arguments
1404 `(#:phases
1405 (modify-phases %standard-phases
1406 (add-before 'bootstrap 'patch-bootstrap-scripts
1407 (lambda _
1408 (substitute* "usbhid-dump/bootstrap"
1409 (("/bin/bash") (which "bash")))
1410
1411 ;; Don't let autogen.sh run configure with bogus options & CFLAGS.
1412 (substitute* "autogen.sh"
1413 (("^\\./configure.*") ""))
1414 #t))
1415 (add-after 'install 'separate-python-output
1416 ;; Separating one Python script shaves more than 106 MiB from :out.
1417 (lambda* (#:key outputs #:allow-other-keys)
1418 (let ((out (assoc-ref outputs "out"))
1419 (out:python (assoc-ref outputs "python")))
1420 (for-each (lambda (file)
1421 (let ((old (string-append out "/" file))
1422 (new (string-append out:python "/" file)))
1423 (mkdir-p (dirname new))
1424 (rename-file old new)))
1425 (list "bin/lsusb.py"))
1426 #t))))))
1427 (inputs
1428 `(("eudev" ,eudev)
1429 ("libusb" ,libusb)
1430 ("python" ,python)))
1431 (native-inputs
1432 `(("autoconf" ,autoconf)
1433 ("automake" ,automake)
1434 ("libtool" ,libtool)
1435 ("pkg-config" ,pkg-config)))
1436 (home-page "http://www.linux-usb.org/")
1437 (synopsis
1438 "Tools for working with USB devices, such as lsusb")
1439 (description
1440 "Tools for working with USB devices, such as lsusb.")
1441 (license license:gpl2+)))
1442
1443 (define-public e2fsprogs
1444 (package
1445 (name "e2fsprogs")
1446 (version "1.45.5")
1447 (source (origin
1448 (method url-fetch)
1449 (uri (string-append
1450 "mirror://kernel.org/linux/kernel/people/tytso/"
1451 name "/v" version "/"
1452 name "-" version ".tar.xz"))
1453 (sha256
1454 (base32
1455 "1pmf8inp736l587rqq7qsd8bv0mmg5cwrivxg5p5awqgv70crypr"))))
1456 (build-system gnu-build-system)
1457 (inputs `(("util-linux" ,util-linux)))
1458 (native-inputs `(("pkg-config" ,pkg-config)
1459 ("texinfo" ,texinfo) ;for the libext2fs Info manual
1460
1461 ;; For tests.
1462 ("perl" ,perl)
1463 ("procps" ,procps)))
1464 (arguments
1465 '(;; util-linux is the preferred source for some of the libraries and
1466 ;; commands, so disable them (see, e.g.,
1467 ;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b33633>.)
1468 #:configure-flags (list "--disable-libblkid"
1469 "--disable-libuuid" "--disable-uuidd"
1470 "--disable-fsck"
1471
1472 ;; Use symlinks instead of hard links for
1473 ;; 'fsck.extN' etc. This makes the resulting nar
1474 ;; smaller and is preserved across copies.
1475 "--enable-symlink-install"
1476
1477 (string-append "LDFLAGS=-Wl,-rpath="
1478 (assoc-ref %outputs "out")
1479 "/lib")
1480
1481 ;; Install libext2fs et al.
1482 "--enable-elf-shlibs")
1483
1484 #:phases
1485 (modify-phases %standard-phases
1486 (add-before 'configure 'patch-shells
1487 (lambda _
1488 (substitute* "configure"
1489 (("/bin/sh (.*)parse-types.sh" _ dir)
1490 (string-append (which "sh") " " dir
1491 "parse-types.sh")))
1492 (substitute* "MCONFIG.in"
1493 (("INSTALL_SYMLINK = /bin/sh")
1494 "INSTALL_SYMLINK = sh"))
1495 (substitute* (find-files "." "^Makefile.in$")
1496 (("#!/bin/sh")
1497 (string-append "#!" (which "sh"))))
1498 #t))
1499 (add-after 'install 'install-libs
1500 (lambda* (#:key outputs #:allow-other-keys)
1501 (let* ((out (assoc-ref outputs "out"))
1502 (lib (string-append out "/lib")))
1503 (invoke "make" "install-libs")
1504
1505 ;; Make the .a writable so that 'strip' works.
1506 ;; Failing to do that, due to debug symbols, we
1507 ;; retain a reference to the final
1508 ;; linux-libre-headers, which refer to the
1509 ;; bootstrap binaries.
1510 (let ((archives (find-files lib "\\.a$")))
1511 (for-each (lambda (file)
1512 (chmod file #o666))
1513 archives))
1514 #t))))))
1515 (home-page "http://e2fsprogs.sourceforge.net/")
1516 (synopsis "Creating and checking ext2/ext3/ext4 file systems")
1517 (description
1518 "This package provides tools for manipulating ext2/ext3/ext4 file systems.")
1519 (license (list license:gpl2 ;programs
1520 license:lgpl2.0 ;libext2fs
1521 license:x11)))) ;libuuid
1522
1523 (define e2fsprogs/static
1524 (static-package
1525 (package (inherit e2fsprogs)
1526 (arguments
1527 ;; Do not build shared libraries.
1528 (substitute-keyword-arguments (package-arguments e2fsprogs)
1529 ((#:configure-flags _)
1530 '(list "--disable-blkid"))
1531 ((#:make-flags _)
1532 '(list)))))))
1533
1534 (define-public e2fsck/static
1535 (package
1536 (name "e2fsck-static")
1537 (version (package-version e2fsprogs))
1538 (build-system trivial-build-system)
1539 (source #f)
1540 (inputs
1541 `(("e2fsprogs" ,e2fsprogs/static)))
1542 (arguments
1543 `(#:modules ((guix build utils))
1544 #:builder
1545 (begin
1546 (use-modules (guix build utils)
1547 (ice-9 ftw)
1548 (srfi srfi-26))
1549
1550 (let ((e2fsck (string-append (assoc-ref %build-inputs "e2fsprogs")
1551 "/sbin/e2fsck"))
1552 (bin (string-append (assoc-ref %outputs "out") "/sbin")))
1553 (mkdir-p bin)
1554 (with-directory-excursion bin
1555 (copy-file e2fsck "e2fsck")
1556 (remove-store-references "e2fsck")
1557 (chmod "e2fsck" #o555))
1558 #t))))
1559 (home-page (package-home-page e2fsprogs))
1560 (synopsis "Statically-linked e2fsck command from e2fsprogs")
1561 (description "This package provides statically-linked e2fsck command taken
1562 from the e2fsprogs package. It is meant to be used in initrds.")
1563 (license (package-license e2fsprogs))))
1564
1565 (define-public extundelete
1566 (package
1567 (name "extundelete")
1568 (version "0.2.4")
1569 (source
1570 (origin
1571 (method url-fetch)
1572 (uri (string-append "mirror://sourceforge/extundelete/"
1573 "extundelete/" version "/extundelete-"
1574 version ".tar.bz2"))
1575 (sha256
1576 (base32
1577 "1x0r7ylxlp9lbj3d7sqf6j2a222dwy2nfpff05jd6mkh4ihxvyd1"))
1578 (patches (search-patches "extundelete-e2fsprogs-1.44.patch"))))
1579 (build-system gnu-build-system)
1580 (inputs `(("e2fsprogs" ,e2fsprogs)))
1581 (home-page "http://extundelete.sourceforge.net/")
1582 (synopsis "Recover deleted files from ext2/3/4 partitions")
1583 (description
1584 "Extundelete is a set of tools that can recover deleted files from an
1585 ext3 or ext4 partition.")
1586 (license license:gpl2)))
1587
1588 (define-public zerofree
1589 (package
1590 (name "zerofree")
1591 (version "1.1.1")
1592 (home-page "https://frippery.org/uml/")
1593 (source (origin
1594 (method url-fetch)
1595 (uri (string-append home-page name "-" version
1596 ".tgz"))
1597 (sha256
1598 (base32
1599 "0rrqfa5z103ws89vi8kfvbks1cfs74ix6n1wb6vs582vnmhwhswm"))))
1600 (build-system gnu-build-system)
1601 (arguments
1602 '(#:phases
1603 (modify-phases %standard-phases
1604 (delete 'configure) ; no configure script
1605 (replace 'install
1606 ;; The Makefile lacks an ‘install’ target.
1607 (lambda* (#:key outputs #:allow-other-keys)
1608 (let* ((out (assoc-ref outputs "out"))
1609 (bin (string-append out "/bin")))
1610 (chmod "zerofree" #o555)
1611 (install-file "zerofree" bin)
1612 #t))))
1613 #:tests? #f)) ; no tests
1614 (inputs `(("libext2fs" ,e2fsprogs)))
1615 (synopsis "Zero non-allocated regions in ext2/ext3/ext4 file systems")
1616 (description
1617 "Zerofree finds the unallocated blocks with non-zero value content in an
1618 ext2, ext3, or ext4 file system and fills them with zeroes (or another value).
1619 This is a simple way to make disk images more compressible.
1620 Zerofree requires the file system to be unmounted or mounted read-only.")
1621 (license license:gpl2)))
1622
1623 (define-public strace
1624 (package
1625 (name "strace")
1626 (version "5.5")
1627 (home-page "https://strace.io")
1628 (source (origin
1629 (method url-fetch)
1630 (uri (string-append home-page "/files/" version
1631 "/strace-" version ".tar.xz"))
1632 (sha256
1633 (base32
1634 "1zrhpzjlgfwfl8dd53llswmmharm5rbi0zch7lln5sjris69an4z"))))
1635 (build-system gnu-build-system)
1636 (arguments
1637 '(#:phases
1638 (modify-phases %standard-phases
1639 (add-after 'unpack 'patch-/bin/sh
1640 (lambda _
1641 (substitute* "strace.c"
1642 (("/bin/sh") (which "sh")))
1643 #t)))
1644 ;; Don't fail if the architecture doesn't support different personalities.
1645 #:configure-flags '("--enable-mpers=check")
1646 ;; See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32459>.
1647 #:parallel-tests? #f)) ; undeterministic failures
1648 (native-inputs `(("perl" ,perl)))
1649 (synopsis "System call tracer for Linux")
1650 (description
1651 "strace is a system call tracer, i.e. a debugging tool which prints out a
1652 trace of all the system calls made by a another process/program.")
1653 (license license:lgpl2.1+)))
1654
1655 (define-public ltrace
1656 (package
1657 (name "ltrace")
1658 (version "0.7.3")
1659 (source (origin
1660 (method url-fetch)
1661 (uri (string-append "http://www.ltrace.org/ltrace_" version
1662 ".orig.tar.bz2"))
1663 (sha256
1664 (base32
1665 "00wmbdghqbz6x95m1mcdd3wd46l6hgcr4wggdp049dbifh3qqvqf"))))
1666 (build-system gnu-build-system)
1667 (inputs `(("libelf" ,libelf)))
1668 (arguments
1669 ;; Compilation uses -Werror by default, but it fails.
1670 '(#:configure-flags '("--disable-werror")))
1671 (home-page "https://www.ltrace.org/")
1672 (synopsis "Library call tracer for Linux")
1673 (description
1674 "ltrace intercepts and records dynamic library calls which are called by
1675 an executed process and the signals received by that process. It can also
1676 intercept and print the system calls executed by the program.")
1677 (license license:gpl2+)))
1678
1679 (define-public alsa-lib
1680 (package
1681 (name "alsa-lib")
1682 (version "1.2.2")
1683 (source (origin
1684 (method url-fetch)
1685 (uri (string-append
1686 "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-"
1687 version ".tar.bz2"))
1688 (sha256
1689 (base32
1690 "1v5kb8jyvrpkvvq7dq8hfbmcj68lml97i4s0prxpfx2mh3c57s6q"))))
1691 (build-system gnu-build-system)
1692 (arguments
1693 '(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
1694 (assoc-ref %outputs "out")
1695 "/lib"))))
1696 (home-page "https://www.alsa-project.org/")
1697 (synopsis "The Advanced Linux Sound Architecture libraries")
1698 (description
1699 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1700 MIDI functionality to the Linux-based operating system.")
1701 (license license:lgpl2.1+)))
1702
1703 (define-public alsa-utils
1704 (package
1705 (name "alsa-utils")
1706 (version "1.2.2")
1707 (source (origin
1708 (method url-fetch)
1709 (uri (string-append "ftp://ftp.alsa-project.org/pub/utils/"
1710 name "-" version ".tar.bz2"))
1711 (sha256
1712 (base32
1713 "1wz460by17rmxrcydn583rd4lhj6wlvqs6x1j5pdzxn5g3app024"))))
1714 (build-system gnu-build-system)
1715 (arguments
1716 ;; XXX: Disable man page creation until we have DocBook.
1717 '(#:configure-flags (list "--disable-xmlto"
1718
1719 ;; The udev rule is responsible for restoring
1720 ;; the volume.
1721 (string-append "--with-udev-rules-dir="
1722 (assoc-ref %outputs "out")
1723 "/lib/udev/rules.d"))
1724 #:phases
1725 (modify-phases %standard-phases
1726 (add-before 'check 'disable-broken-test
1727 (lambda _
1728 ;; XXX: The 1.1.8 release tarball is missing a header that's
1729 ;; required for this test to work. Fixed in 1.1.9.
1730 (substitute* "axfer/test/Makefile"
1731 ((".*container-test.*") ""))
1732 #t))
1733 (add-before
1734 'install 'pre-install
1735 (lambda _
1736 ;; Don't try to mkdir /var/lib/alsa.
1737 (substitute* "Makefile"
1738 (("\\$\\(MKDIR_P\\) .*ASOUND_STATE_DIR.*")
1739 "true\n"))
1740 #t)))))
1741 (inputs
1742 `(("libsamplerate" ,libsamplerate)
1743 ("ncurses" ,ncurses)
1744 ("alsa-lib" ,alsa-lib)
1745 ("xmlto" ,xmlto)
1746 ("gettext" ,gettext-minimal)))
1747 (home-page "http://www.alsa-project.org/")
1748 (synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)")
1749 (description
1750 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1751 MIDI functionality to the Linux-based operating system.")
1752
1753 ;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are
1754 ;; GPLv2-only.
1755 (license license:gpl2)))
1756
1757 (define-public alsa-plugins
1758 (package
1759 (name "alsa-plugins")
1760 (version "1.2.2")
1761 (source (origin
1762 (method url-fetch)
1763 (uri (string-append "ftp://ftp.alsa-project.org/pub/plugins/"
1764 name "-" version ".tar.bz2"))
1765 (sha256
1766 (base32
1767 "0z9k3ssbfk2ky2w13avgyf202j1drsz9sv3834bp33cj1i2hc3qw"))))
1768 (build-system gnu-build-system)
1769 ;; TODO: Split libavcodec and speex if possible. It looks like they can not
1770 ;; be split, there are references to both in files.
1771 ;; TODO: Remove OSS related plugins, they add support to run native
1772 ;; ALSA applications on OSS however we do not offer OSS and OSS is
1773 ;; obsolete.
1774 (outputs '("out" "pulseaudio" "jack"))
1775 (arguments
1776 `(#:configure-flags '(;; Do not install a "local" configuration targeted
1777 ;; for /etc/alsa. On Guix System plugins are loaded from
1778 ;; the ALSA service, and other distributions likely
1779 ;; won't use these files.
1780 "--with-alsalconfdir=/tmp/noop")
1781 #:phases
1782 (modify-phases %standard-phases
1783 (add-after 'install 'split
1784 (lambda* (#:key inputs outputs #:allow-other-keys)
1785 ;; Distribute the binaries to the various outputs.
1786 (let* ((out (assoc-ref outputs "out"))
1787 (jack (assoc-ref outputs "jack"))
1788 (jacklib (string-append jack "/lib/alsa-lib"))
1789 (pua (assoc-ref outputs "pulseaudio"))
1790 (pualib (string-append pua "/lib/alsa-lib")))
1791 ;; For jack.
1792 (mkdir-p jacklib)
1793 (for-each (lambda (file)
1794 (rename-file file (string-append jacklib "/" (basename file))))
1795 (find-files out ".*jack\\.(la|so)"))
1796 ;; For pulseaudio.
1797 (mkdir-p pualib)
1798 (for-each (lambda (file)
1799 (rename-file file (string-append pualib "/" (basename file))))
1800 (find-files out ".*pulse\\.(la|so)"))
1801 #t))))))
1802 (inputs
1803 `(("alsa-lib" ,alsa-lib)
1804 ("jack" ,jack-1)
1805 ("speex" ,speex) ; libspeexdsp resampling plugin
1806 ("libsamplerate" ,libsamplerate) ; libsamplerate resampling plugin
1807 ("ffmpeg" ,ffmpeg) ; libavcodec resampling plugin, a52 plugin
1808 ("pulseaudio" ,pulseaudio))) ; PulseAudio plugin
1809 (native-inputs
1810 `(("pkg-config" ,pkg-config)))
1811 (home-page "http://www.alsa-project.org/")
1812 (synopsis "Plugins for the Advanced Linux Sound Architecture (ALSA)")
1813 (description
1814 "The Advanced Linux Sound Architecture (ALSA) provides audio and
1815 MIDI functionality to the Linux-based operating system. This package enhances ALSA
1816 by providing additional plugins which include: upmixing, downmixing, jackd and
1817 pulseaudio support for native alsa applications, format conversion (s16 to a52), and
1818 external rate conversion.")
1819 (license (list license:gpl2+
1820 ;; `rate/rate_samplerate.c': LGPL v2.1 or later.
1821 license:lgpl2.1+))))
1822
1823 (define-public iptables
1824 (package
1825 (name "iptables")
1826 (version "1.8.4")
1827 (source (origin
1828 (method url-fetch)
1829 (uri (string-append
1830 "mirror://netfilter.org/iptables/iptables-"
1831 version ".tar.bz2"))
1832 (sha256
1833 (base32
1834 "0z0mgs1ghvn3slc868mgbf2g26njgrzcy5ggyb5w4i55j1a3lflr"))))
1835 (build-system gnu-build-system)
1836 (native-inputs
1837 `(("pkg-config" ,pkg-config)
1838 ("flex" ,flex)
1839 ("bison" ,bison)))
1840 (inputs
1841 `(("libmnl" ,libmnl)
1842 ("libnftnl" ,libnftnl)))
1843 (arguments
1844 '(#:tests? #f ; no test suite
1845 #:configure-flags ; add $libdir to the RUNPATH of executables
1846 (list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))))
1847 (home-page "https://www.netfilter.org/projects/iptables/index.html")
1848 (synopsis "Programs to configure Linux IP packet filtering rules")
1849 (description
1850 "@command{iptables} is the user-space command line program used to
1851 configure the Linux 2.4.x and later IPv4 packet filtering ruleset
1852 (@dfn{firewall}), including @dfn{NAT} (Network Address Translation).
1853
1854 This package also includes @command{ip6tables}, which is used to configure the
1855 IPv6 packet filter.
1856
1857 Both commands are targeted at system administrators.")
1858 (license license:gpl2+)))
1859
1860 (define-public lsscsi
1861 (package
1862 (name "lsscsi")
1863 (version "0.31")
1864 (source (origin
1865 (method url-fetch)
1866 (uri (string-append
1867 "http://sg.danny.cz/scsi/lsscsi-" version ".tar.xz"))
1868 (sha256
1869 (base32
1870 "1ry2y34xmpgxdbfbyvs8cjmbx0fn222yjdab87wj21q60nab5p75"))))
1871 (build-system gnu-build-system)
1872 (synopsis "Lists information about SCSI or NVMe devices in Linux")
1873 (home-page "http://sg.danny.cz/scsi/lsscsi.html")
1874 (description
1875 "@command{lsscsi} lists SCSI logical units or SCSI targets. It can
1876 also list NVMe namespaces or controllers and show the relationship between a
1877 device's primary node name, its SCSI generic (sg) node name and its kernel
1878 name.")
1879 (license license:gpl2)))
1880
1881 (define-public ebtables
1882 (package
1883 (name "ebtables")
1884 (version "2.0.11")
1885 (source (origin
1886 (method url-fetch)
1887 (uri (string-append
1888 "mirror://netfilter.org/ebtables/ebtables-"
1889 version ".tar.gz"))
1890 (sha256
1891 (base32
1892 "0apxgmkhsk3vxn9q3libxn3dgrdljrxyy4mli2gk49m7hi3na7xp"))))
1893 (build-system gnu-build-system)
1894 (inputs
1895 `(("perl" ,perl)
1896 ("iptables" ,iptables)))
1897 (synopsis "Ethernet bridge frame table administration")
1898 (home-page "https://ebtables.netfilter.org/")
1899 (description
1900 "ebtables is an application program used to set up and maintain the
1901 tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is
1902 analogous to the iptables application, but less complicated, due to the fact
1903 that the Ethernet protocol is much simpler than the IP protocol.")
1904 (license license:gpl2+)))
1905
1906 (define-public iproute
1907 (package
1908 (name "iproute2")
1909 (version "5.5.0")
1910 (source (origin
1911 (method url-fetch)
1912 (uri (string-append
1913 "mirror://kernel.org/linux/utils/net/iproute2/iproute2-"
1914 version ".tar.xz"))
1915 (sha256
1916 (base32
1917 "0ywg70f98wgfai35jl47xzpjp45a6n7crja4vc8ql85cbi1l7ids"))))
1918 (build-system gnu-build-system)
1919 (arguments
1920 `( ;; There is a test suite, but it wants network namespaces and sudo.
1921 #:tests? #f
1922 #:make-flags (let ((out (assoc-ref %outputs "out")))
1923 (list "DESTDIR="
1924 (string-append "BASH_COMPDIR=" out
1925 "/etc/bash_completion.d")
1926 (string-append "LIBDIR=" out "/lib")
1927 (string-append "HDRDIR=" out "/include")
1928 (string-append "SBINDIR=" out "/sbin")
1929 (string-append "CONFDIR=" out "/etc")
1930 (string-append "DOCDIR=" out "/share/doc/"
1931 ,name "-" ,version)
1932 (string-append "MANDIR=" out "/share/man")))
1933 #:phases (modify-phases %standard-phases
1934 (add-before 'install 'pre-install
1935 (lambda _
1936 ;; Don't attempt to create /var/lib/arpd.
1937 (substitute* "Makefile"
1938 (("^.*ARPDDIR.*$") ""))
1939 #t)))))
1940 (inputs
1941 `(("db4" ,bdb)
1942 ("iptables" ,iptables)
1943 ("libmnl" ,libmnl)))
1944 (native-inputs
1945 `(("bison" ,bison)
1946 ("flex" ,flex)
1947 ("pkg-config" ,pkg-config)))
1948 ;; For tests.
1949 ;; ("libmnl" ,libmnl)
1950 ;; ("util-linux" ,util-linux)
1951 (home-page
1952 "https://wiki.linuxfoundation.org/networking/iproute2")
1953 (synopsis
1954 "Utilities for controlling TCP/IP networking and traffic in Linux")
1955 (description
1956 "Iproute2 is a collection of utilities for controlling TCP/IP networking
1957 and traffic with the Linux kernel. The most important of these are
1958 @command{ip}, which configures IPv4 and IPv6, and @command{tc} for traffic
1959 control.
1960
1961 Most network configuration manuals still refer to ifconfig and route as the
1962 primary network configuration tools, but ifconfig is known to behave
1963 inadequately in modern network environments, and both should be deprecated.")
1964 (license license:gpl2+)))
1965
1966 (define-public net-tools
1967 ;; XXX: This package is basically unmaintained, but it provides a few
1968 ;; commands not yet provided by Inetutils, such as 'route', so we have to
1969 ;; live with it.
1970 (let ((commit "479bb4a7e11a4084e2935c0a576388f92469225b")
1971 (revision "0"))
1972 (package
1973 (name "net-tools")
1974 (version (string-append "1.60-" revision "." (string-take commit 7)))
1975 (source (origin
1976 (method url-fetch)
1977 (uri (string-append "https://sourceforge.net/code-snapshots/git/"
1978 "n/ne/net-tools/code.git/net-tools-code-"
1979 commit ".zip"))
1980 (file-name (string-append name "-" version ".zip"))
1981 (sha256
1982 (base32
1983 "0hz9fda9d78spp774b6rr5xaxav7cm4h0qcpxf70rvdbrf6qx7vy"))))
1984 (home-page "http://net-tools.sourceforge.net/")
1985 (build-system gnu-build-system)
1986 (arguments
1987 '(#:modules ((guix build gnu-build-system)
1988 (guix build utils)
1989 (srfi srfi-1)
1990 (srfi srfi-26))
1991 #:phases
1992 (modify-phases %standard-phases
1993 (replace 'configure
1994 (lambda* (#:key outputs #:allow-other-keys)
1995 (let ((out (assoc-ref outputs "out")))
1996 (mkdir-p (string-append out "/bin"))
1997 (mkdir-p (string-append out "/sbin"))
1998
1999 ;; Pretend we have everything...
2000 (system "yes | make config")
2001
2002 ;; ... except for the things we don't have.
2003 ;; HAVE_AFDECnet requires libdnet, which we don't have.
2004 ;; HAVE_HWSTRIP and HAVE_HWTR require kernel headers
2005 ;; that have been removed.
2006 ;; XXX SELINUX and AFBLUETOOTH are removed for now, but we should
2007 ;; think about adding them later.
2008 (substitute* '("config.make" "config.h")
2009 (("^.*HAVE_(AFDECnet|HWSTRIP|HWTR|SELINUX|AFBLUETOOTH)[ =]1.*$")
2010 ""))
2011 #t)))
2012 (add-after 'install 'remove-redundant-commands
2013 (lambda* (#:key outputs #:allow-other-keys)
2014 ;; Remove commands and man pages redundant with Inetutils.
2015 (let* ((out (assoc-ref outputs "out"))
2016 (dup (append-map (cut find-files out <>)
2017 '("^hostname"
2018 "^(yp|nis|dns)?domainname"))))
2019 (for-each delete-file dup)
2020 #t))))
2021 ;; Binaries that depend on libnet-tools.a don't declare that
2022 ;; dependency, making it parallel-unsafe.
2023 #:parallel-build? #f
2024
2025 #:tests? #f ; no test suite
2026 #:make-flags (let ((out (assoc-ref %outputs "out")))
2027 (list "CC=gcc"
2028 (string-append "BASEDIR=" out)
2029 (string-append "INSTALLNLSDIR=" out "/share/locale")
2030 (string-append "mandir=/share/man")))))
2031 (native-inputs `(("gettext" ,gettext-minimal)
2032 ("unzip" ,unzip)))
2033 (synopsis "Tools for controlling the network subsystem in Linux")
2034 (description
2035 "This package includes the important tools for controlling the network
2036 subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and
2037 route. Additionally, this package contains utilities relating to particular
2038 network hardware types (plipconfig, slattach) and advanced aspects of IP
2039 configuration (iptunnel, ipmaddr).")
2040 (license license:gpl2+))))
2041
2042 (define-public libcap
2043 (package
2044 (name "libcap")
2045 (version "2.27")
2046 (source (origin
2047 (method url-fetch)
2048 (uri (string-append
2049 "mirror://kernel.org/linux/libs/security/linux-privs/"
2050 "libcap2/libcap-" version ".tar.xz"))
2051 (sha256
2052 (base32
2053 "0sj8kidl7qgf2qwxcbw1vadnlb30y4zvjzxswsmfdghq04npkhfs"))))
2054 (build-system gnu-build-system)
2055 (arguments '(#:phases
2056 (modify-phases %standard-phases
2057 (replace 'configure
2058 ;; Add $libdir to the RUNPATH of executables.
2059 (lambda _
2060 (substitute* "Make.Rules"
2061 (("LDFLAGS := #-g")
2062 (string-append "LDFLAGS := -Wl,-rpath="
2063 %output "/lib")))
2064 #t)))
2065 #:tests? #f ; no 'check' target
2066 #:make-flags (list "lib=lib"
2067 (string-append "prefix="
2068 (assoc-ref %outputs "out"))
2069 "RAISE_SETFCAP=no")))
2070 (native-inputs `(("perl" ,perl)))
2071 (inputs `(("attr" ,attr)))
2072 (home-page "https://sites.google.com/site/fullycapable/")
2073 (synopsis "Library for working with POSIX capabilities")
2074 (description
2075 "Libcap2 provides a programming interface to POSIX capabilities on
2076 Linux-based operating systems.")
2077
2078 ;; License is BSD-3 or GPLv2, at the user's choice.
2079 (license license:gpl2)))
2080
2081 (define-public bridge-utils
2082 (package
2083 (name "bridge-utils")
2084 (version "1.6")
2085 (source
2086 (origin
2087 (method url-fetch)
2088 (uri (string-append "mirror://kernel.org/linux/utils/net/bridge-utils/"
2089 "bridge-utils-" version ".tar.xz"))
2090 (sha256
2091 (base32 "1j16kr44csyr4yqxly26l1yw2bh4nkiasgwvask2i2gvsnsyyryc"))))
2092 (build-system gnu-build-system)
2093
2094 ;; The tarball lacks all the generated files.
2095 (native-inputs `(("autoconf" ,autoconf)
2096 ("automake" ,automake)))
2097 (arguments
2098 '(#:phases
2099 (modify-phases %standard-phases
2100 (add-before 'bootstrap 'patch-stuff
2101 (lambda _
2102 ;; Fix "field ‘ip6’ has incomplete type" errors.
2103 (substitute* "libbridge/libbridge.h"
2104 (("#include <linux/if_bridge.h>")
2105 "#include <linux/in6.h>\n#include <linux/if_bridge.h>"))
2106
2107 ;; Ensure that the entire build fails if one of the
2108 ;; sub-Makefiles fails.
2109 (substitute* "Makefile.in"
2110 (("\\$\\(MAKE\\) \\$\\(MFLAGS\\) -C \\$\\$x ;")
2111 "$(MAKE) $(MFLAGS) -C $$x || exit 1;"))
2112
2113 #t)))
2114 #:tests? #f)) ; no 'check' target
2115
2116 (home-page "https://wiki.linuxfoundation.org/networking/bridge")
2117 (synopsis "Manipulate Ethernet bridges")
2118 (description
2119 "Utilities for Linux's Ethernet bridging facilities. A bridge is a way
2120 to connect two Ethernet segments together in a protocol independent way.
2121 Packets are forwarded based on Ethernet address, rather than IP address (like
2122 a router). Since forwarding is done at Layer 2, all protocols can go
2123 transparently through a bridge.")
2124 (license license:gpl2+)))
2125
2126 (define-public libnl
2127 (package
2128 (name "libnl")
2129 (version "3.5.0")
2130 (source (origin
2131 (method url-fetch)
2132 (uri (string-append
2133 "https://github.com/thom311/libnl/releases/download/"
2134 "libnl" (string-join (string-split version #\.) "_")
2135 "/libnl-" version ".tar.gz"))
2136 (sha256
2137 (base32
2138 "1yh5bqmkivd78x378x34gzb28lvykn6b9k3hgvvpdnj5jpn3689m"))))
2139 (build-system gnu-build-system)
2140 (native-inputs
2141 `(("bison" ,bison)
2142 ("flex" ,flex)
2143 ("pkg-config" ,pkg-config)
2144 ("swig" ,swig)
2145 ("libnl3-doc"
2146 ,(origin
2147 (method url-fetch)
2148 (uri (string-append
2149 "https://github.com/thom311/libnl/releases/download/libnl"
2150 (string-join (string-split version #\.) "_")
2151 "/libnl-doc-" version ".tar.gz"))
2152 (sha256
2153 (base32 "19p5y8q3cm5wqvamqc4s5syxnnkvzxy3gw8ivxk6fv9ybn8jm35h"))))))
2154 (inputs
2155 `(("python-2" ,python-2)
2156 ("python-3" ,python-3)))
2157 (outputs '("out" "doc" "python2" "python3"))
2158 (arguments
2159 `(#:modules ((guix build gnu-build-system)
2160 (guix build utils)
2161 (srfi srfi-1))
2162 #:phases
2163 (modify-phases %standard-phases
2164 (add-after 'install 'install-python
2165 (lambda* (#:key outputs #:allow-other-keys)
2166 (define (python-inst python)
2167 (invoke python "setup.py" "build")
2168 (invoke python "setup.py" "install"
2169 (string-append "--prefix="
2170 (assoc-ref %outputs python)))
2171 (invoke python "setup.py" "clean"))
2172 (setenv "LDFLAGS" (format #f "-Wl,-rpath=~a/lib"
2173 (assoc-ref %outputs "out")))
2174 (with-directory-excursion "./python"
2175 (for-each python-inst '("python2" "python3")))
2176 #t))
2177 (add-after 'install 'install-doc
2178 (lambda* (#:key inputs outputs #:allow-other-keys)
2179 (let ((dest (string-append (assoc-ref outputs "doc")
2180 "/share/doc/libnl")))
2181 (mkdir-p dest)
2182 (invoke "tar" "xf" (assoc-ref inputs "libnl3-doc")
2183 "--strip-components=1" "-C" dest)))))))
2184 (home-page "https://www.infradead.org/~tgr/libnl/")
2185 (synopsis "NetLink protocol library suite")
2186 (description
2187 "The libnl suite is a collection of libraries providing APIs to netlink
2188 protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily
2189 between the kernel and user space processes. It was designed to be a more
2190 flexible successor to ioctl to provide mainly networking related kernel
2191 configuration and monitoring interfaces.")
2192
2193 ;; Most files are LGPLv2.1-only, but some are GPLv2-only (like
2194 ;; 'nl-addr-add.c'), so the result is GPLv2-only.
2195 (license license:gpl2)))
2196
2197 (define-public iw
2198 (package
2199 (name "iw")
2200 (version "4.14")
2201 (source (origin
2202 (method url-fetch)
2203 (uri (string-append
2204 "mirror://kernel.org/software/network/iw/iw-"
2205 version ".tar.xz"))
2206 (sha256
2207 (base32
2208 "12ddd6vh6vs97135bnlyr0szv7hvpbnmfh48584frzab0z0725ph"))))
2209 (build-system gnu-build-system)
2210 (native-inputs `(("pkg-config" ,pkg-config)))
2211 (inputs `(("libnl" ,libnl)))
2212 (arguments
2213 `(#:make-flags
2214 (let* ((target ,(%current-target-system))
2215 (gcc (if target (string-append target "-gcc") "gcc"))
2216 (pkg-config (if target
2217 (string-append target "-pkg-config")
2218 "pkg-config")))
2219 (list
2220 (string-append "CC=" gcc)
2221 (string-append "PKG_CONFIG="
2222 (assoc-ref %build-inputs "pkg-config")
2223 "/bin/" pkg-config)
2224 (string-append "PREFIX=" (assoc-ref %outputs "out"))))
2225 #:phases (modify-phases %standard-phases (delete 'configure))))
2226 (home-page "https://wireless.wiki.kernel.org/")
2227 (synopsis "Tool for configuring wireless devices")
2228 (description
2229 "iw is a new nl80211 based CLI configuration utility for wireless
2230 devices. It replaces @code{iwconfig}, which is deprecated.")
2231 (license license:isc)))
2232
2233 (define-public powertop
2234 (package
2235 (name "powertop")
2236 (version "2.11")
2237 (source
2238 (origin
2239 (method url-fetch)
2240 (uri (string-append "https://01.org/sites/default/files/downloads/"
2241 "powertop-v" version "-1-g7ef7f79.tar_0.gz"))
2242 (sha256
2243 (base32 "0kynypj5cydfbma0ssblq1k4m1arixc1s2vf0ybv8y2gg09wjs5f"))))
2244 (build-system gnu-build-system)
2245 (arguments
2246 '(#:phases
2247 (modify-phases %standard-phases
2248 ;; TODO: Patch some hardcoded "wlan0" in calibrate/calibrate.cpp to
2249 ;; allow calibrating the network interface in Guix System.
2250 (add-after 'unpack 'patch-absolute-file-names
2251 (lambda* (#:key inputs #:allow-other-keys)
2252 (let ((kmod (assoc-ref inputs "kmod")))
2253 (substitute* (find-files "src" "\\.cpp$")
2254 ;; Give the right 'modprobe' file name so that essential
2255 ;; modules such as msr.ko can be loaded.
2256 (("/sbin/modprobe") (string-append kmod "/bin/modprobe"))
2257 ;; These programs are only needed to calibrate, so using
2258 ;; relative file names avoids adding extra inputs. When they
2259 ;; are missing powertop gracefully handles it.
2260 (("/usr/bin/hcitool") "hcitool")
2261 (("/usr/bin/xset") "xset")
2262 (("/usr/sbin/hciconfig") "hciconfig"))
2263 #t))))))
2264 (inputs
2265 `(("kmod" ,kmod)
2266 ("libnl" ,libnl)
2267 ("ncurses" ,ncurses)
2268 ("pciutils" ,pciutils)
2269 ("zlib" ,zlib)))
2270 (native-inputs
2271 `(("pkg-config" ,pkg-config)))
2272 (home-page "https://01.org/powertop/")
2273 (synopsis "Analyze power consumption on Intel-based laptops")
2274 (description
2275 "PowerTOP is a Linux tool to diagnose issues with power consumption and
2276 power management. In addition to being a diagnostic tool, PowerTOP also has
2277 an interactive mode where the user can experiment various power management
2278 settings for cases where the operating system has not enabled these
2279 settings.")
2280 (license license:gpl2)))
2281
2282 (define-public aumix
2283 (package
2284 (name "aumix")
2285 (version "2.9.1")
2286 (source (origin
2287 (method url-fetch)
2288 (uri (string-append
2289 "http://www.jpj.net/~trevor/aumix/releases/aumix-"
2290 version ".tar.bz2"))
2291 (sha256
2292 (base32
2293 "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj"))))
2294 (build-system gnu-build-system)
2295 (inputs `(("ncurses" ,ncurses)))
2296 (home-page "http://www.jpj.net/~trevor/aumix.html")
2297 (synopsis "Audio mixer for X and the console")
2298 (description
2299 "Aumix adjusts an audio mixer from X, the console, a terminal,
2300 the command line or a script.")
2301 (license license:gpl2+)))
2302
2303 (define-public iotop
2304 (package
2305 (name "iotop")
2306 (version "0.6")
2307 (source
2308 (origin
2309 (method url-fetch)
2310 (uri (string-append "http://guichaz.free.fr/iotop/files/iotop-"
2311 version ".tar.gz"))
2312 (sha256 (base32
2313 "1kp8mqg2pbxq4xzpianypadfxcsyfgwcaqgqia6h9fsq6zyh4z0s"))))
2314 (build-system python-build-system)
2315 (arguments
2316 '(#:phases
2317 (modify-phases %standard-phases
2318 (add-after 'unpack 'fix-build-with-python3
2319 (lambda _
2320 (substitute* "setup.py"
2321 (("itervalues") "values"))
2322 #t)))
2323 ;; There are currently no checks in the package.
2324 #:tests? #f))
2325 (native-inputs `(("python" ,python)))
2326 (home-page "http://guichaz.free.fr/iotop/")
2327 (synopsis
2328 "Displays the IO activity of running processes")
2329 (description
2330 "Iotop is a Python program with a top like user interface to show the
2331 processes currently causing I/O.")
2332 (license license:gpl2+)))
2333
2334 (define-public fuse
2335 (package
2336 (name "fuse")
2337 (version "2.9.9")
2338 (source (origin
2339 (method url-fetch)
2340 (uri (string-append "https://github.com/libfuse/libfuse/releases/"
2341 "download/fuse-" version
2342 "/fuse-" version ".tar.gz"))
2343 (sha256
2344 (base32
2345 "1ddlq6kzxilccgbvxjfx80jx6kamgw4sv49phks2zhlcc1frvrnh"))
2346 (patches (search-patches "fuse-overlapping-headers.patch"))))
2347 (build-system gnu-build-system)
2348 (inputs `(("util-linux" ,util-linux)))
2349 (arguments
2350 '(#:configure-flags (list (string-append "MOUNT_FUSE_PATH="
2351 (assoc-ref %outputs "out")
2352 "/sbin")
2353 (string-append "INIT_D_PATH="
2354 (assoc-ref %outputs "out")
2355 "/etc/init.d")
2356
2357 ;; The rule makes /dev/fuse 666.
2358 (string-append "UDEV_RULES_PATH="
2359 (assoc-ref %outputs "out")
2360 "/lib/udev/rules.d"))
2361 #:phases
2362 (modify-phases %standard-phases
2363 (add-before 'build 'set-file-names
2364 (lambda* (#:key inputs #:allow-other-keys)
2365 ;; libfuse calls out to mount(8) and umount(8). Make sure
2366 ;; it refers to the right ones.
2367 (substitute* '("lib/mount_util.c" "util/mount_util.c")
2368 (("/bin/(u?)mount" _ maybe-u)
2369 (string-append (assoc-ref inputs "util-linux")
2370 "/bin/" maybe-u "mount")))
2371 (substitute* '("util/mount.fuse.c")
2372 (("/bin/sh")
2373 (which "sh")))
2374
2375 ;; This hack leads libfuse to search for 'fusermount' in
2376 ;; $PATH, where it may find a setuid-root binary, instead of
2377 ;; trying solely $out/sbin/fusermount and failing because
2378 ;; it's not setuid.
2379 (substitute* "lib/Makefile"
2380 (("-DFUSERMOUNT_DIR=[[:graph:]]+")
2381 "-DFUSERMOUNT_DIR=\\\"/var/empty\\\""))
2382 #t)))))
2383 (home-page "https://github.com/libfuse/libfuse")
2384 (synopsis "Support file systems implemented in user space")
2385 (description
2386 "As a consequence of its monolithic design, file system code for Linux
2387 normally goes into the kernel itself---which is not only a robustness issue,
2388 but also an impediment to system extensibility. FUSE, for \"file systems in
2389 user space\", is a kernel module and user-space library that tries to address
2390 part of this problem by allowing users to run file system implementations as
2391 user-space processes.")
2392 (license (list license:lgpl2.1 ;library
2393 license:gpl2+)))) ;command-line utilities
2394
2395 (define-public unionfs-fuse
2396 (package
2397 (name "unionfs-fuse")
2398 (version "2.0")
2399 (source (origin
2400 (method url-fetch)
2401 (uri (string-append
2402 "https://github.com/rpodgorny/unionfs-fuse/archive/v"
2403 version ".tar.gz"))
2404 (file-name (string-append name "-" version ".tar.gz"))
2405 (sha256
2406 (base32
2407 "0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
2408 (build-system cmake-build-system)
2409 (native-inputs
2410 `(("python" ,python)))
2411 (inputs `(("fuse" ,fuse)))
2412 (arguments
2413 ;; The tests were never actually run ("collected 0 items"), but in recent
2414 ;; versions of pytest that causes an error.
2415 '(#:tests? #f))
2416 (home-page "https://github.com/rpodgorny/unionfs-fuse")
2417 (synopsis "User-space union file system")
2418 (description
2419 "UnionFS-FUSE is a flexible union file system implementation in user
2420 space, using the FUSE library. Mounting a union file system allows you to
2421 \"aggregate\" the contents of several directories into a single mount point.
2422 UnionFS-FUSE additionally supports copy-on-write.")
2423 (license license:bsd-3)))
2424
2425 (define fuse-static
2426 (package (inherit fuse)
2427 (name "fuse-static")
2428 (source (origin (inherit (package-source fuse))
2429 (modules '((guix build utils)))
2430 (snippet
2431 '(begin
2432 ;; Normally libfuse invokes mount(8) so that /etc/mtab is
2433 ;; updated. Change calls to 'mtab_needs_update' to 0 so
2434 ;; that it doesn't do that, allowing us to remove the
2435 ;; dependency on util-linux (something that is useful in
2436 ;; initrds.)
2437 (substitute* '("lib/mount_util.c"
2438 "util/mount_util.c")
2439 (("mtab_needs_update[[:blank:]]*\\([a-z_]+\\)")
2440 "0")
2441 (("/bin/")
2442 ""))
2443 #t))))))
2444
2445 (define-public unionfs-fuse/static
2446 (package (inherit unionfs-fuse)
2447 (synopsis "User-space union file system (statically linked)")
2448 (name (string-append (package-name unionfs-fuse) "-static"))
2449 (source (origin (inherit (package-source unionfs-fuse))
2450 (modules '((guix build utils)))
2451 (snippet
2452 '(begin
2453 ;; Add -ldl to the libraries, because libfuse.a needs that.
2454 (substitute* "src/CMakeLists.txt"
2455 (("target_link_libraries(.*)\\)" _ libs)
2456 (string-append "target_link_libraries"
2457 libs " dl)")))
2458 #t))))
2459 (arguments
2460 '(#:tests? #f
2461 #:configure-flags '("-DCMAKE_EXE_LINKER_FLAGS=-static")
2462 #:phases
2463 (modify-phases %standard-phases
2464 (add-after 'install 'post-install
2465 (lambda* (#:key outputs #:allow-other-keys)
2466 (let* ((out (assoc-ref outputs "out"))
2467 (exe (string-append out "/bin/unionfs")))
2468 ;; By default, 'unionfs' keeps references to
2469 ;; $glibc/share/locale and similar stuff. Remove them.
2470 (remove-store-references exe)
2471
2472 ;; 'unionfsctl' has references to glibc as well. Since
2473 ;; we don't need it, remove it.
2474 (delete-file (string-append out "/bin/unionfsctl"))
2475 #t))))))
2476 (inputs `(("fuse" ,fuse-static)))))
2477
2478 (define-public sshfs
2479 (package
2480 (name "sshfs")
2481 (version "2.10")
2482 (source (origin
2483 (method url-fetch)
2484 (uri (string-append "https://github.com/libfuse/sshfs/releases/"
2485 "download/sshfs-" version "/sshfs-" version
2486 ".tar.gz"))
2487 (sha256
2488 (base32
2489 "00fir2iykdx11g8nv5gijg0zjrp2g3ldypnv0yi6lq3h5pg5v13h"))))
2490 (build-system gnu-build-system)
2491 (inputs
2492 `(("fuse" ,fuse)
2493 ("glib" ,glib)))
2494 (native-inputs
2495 `(("pkg-config" ,pkg-config)))
2496 (home-page "https://github.com/libfuse/sshfs")
2497 (synopsis "Mount remote file systems over SSH")
2498 (description
2499 "This is a file system client based on the SSH File Transfer Protocol.
2500 Since most SSH servers already support this protocol it is very easy to set
2501 up: on the server side there's nothing to do; on the client side mounting the
2502 file system is as easy as logging into the server with an SSH client.")
2503 (license license:gpl2+)))
2504
2505 (define-public sshfs-fuse
2506 (package (inherit sshfs)
2507 (name "sshfs-fuse")
2508 (properties `((superseded . ,sshfs)))))
2509
2510 (define-public archivemount
2511 (package
2512 (name "archivemount")
2513 (version "0.8.12")
2514 (source
2515 (origin
2516 (method url-fetch)
2517 (uri (string-append "https://www.cybernoia.de/software/archivemount/"
2518 "archivemount-" version ".tar.gz"))
2519 (sha256
2520 (base32 "12fb8fcmd1zwvfgzx4pay47md5cr2kgxcgq82cm6skmq75alfzi4"))))
2521 (build-system gnu-build-system)
2522 (inputs `(("fuse" ,fuse)
2523 ("libarchive" ,libarchive)))
2524 (native-inputs `(("pkg-config" ,pkg-config)))
2525 (home-page "https://www.cybernoia.de/software/archivemount.html")
2526 (synopsis "Tool for mounting archive files with FUSE")
2527 (description "archivemount is a FUSE-based file system for Unix variants,
2528 including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a
2529 mount point where it can be read from or written to as with any other file
2530 system. This makes accessing the contents of the archive, which may be
2531 compressed, transparent to other programs, without decompressing them.")
2532 (license license:lgpl2.0+)))
2533
2534 (define-public numactl
2535 (package
2536 (name "numactl")
2537 (version "2.0.13")
2538 (source (origin
2539 (method url-fetch)
2540 (uri (string-append
2541 "https://github.com/numactl/numactl/releases/download/v"
2542 version "/numactl-" version ".tar.gz"))
2543 (sha256
2544 (base32
2545 "16lcypvcmx1ydkpi2s82kqhg13kak7qhpbnj8hd9bdbyhr5ja7lr"))))
2546 (build-system gnu-build-system)
2547 (arguments
2548 '(;; There's a 'test' target, but it requires NUMA support in the kernel
2549 ;; to run, which we can't assume to have.
2550 #:tests? #f))
2551
2552 ;; NUMA is apparently not supported on armhf, see
2553 ;; http://www.spinics.net/lists/linux-numa/msg01157.html
2554 (supported-systems (delete "armhf-linux" %supported-systems))
2555 (home-page "https://github.com/numactl/numactl")
2556 (synopsis "Tools for non-uniform memory access (NUMA) machines")
2557 (description
2558 "NUMA stands for Non-Uniform Memory Access, in other words a system whose
2559 memory is not all in one place. The @command{numactl} program allows you to
2560 run your application program on specific CPUs and memory nodes. It does this
2561 by supplying a NUMA memory policy to the operating system before running your
2562 program.
2563
2564 The package contains other commands, such as @command{numastat},
2565 @command{memhog}, and @command{numademo} which provides a quick overview of
2566 NUMA performance on your system.")
2567 (license (list license:gpl2 ;programs
2568 license:lgpl2.1)))) ;library
2569
2570 (define-public kbd-neo
2571 (package
2572 (name "kbd-neo")
2573 (version "2486")
2574 (source
2575 (origin
2576 (method url-fetch)
2577 (uri (string-append "https://svn.neo-layout.org/!svn/bc/"
2578 version "/linux/console/neo.map"))
2579 (file-name (string-append name "-" version ".map"))
2580 (sha256
2581 (base32
2582 "19mfrd31vzpsjiwc7pshxm0b0sz5dd17xrz6k079cy4im1vf0r4g"))))
2583 (build-system trivial-build-system)
2584 (arguments
2585 `(#:modules ((guix build utils))
2586 #:builder (begin
2587 (use-modules (guix build utils))
2588 (let ((out (string-append %output "/share/keymaps"))
2589 (source (assoc-ref %build-inputs "source")))
2590 (mkdir-p out)
2591 (copy-file source (string-append out "/neo.map"))
2592 #t))))
2593 (home-page "https://neo-layout.org")
2594 (synopsis "Neo2 console layout")
2595 (description
2596 "Kbd-neo provides the Neo2 keyboard layout for use with
2597 @command{loadkeys(1)} from @code{kbd(4)}.")
2598 ;; The file is located in an svn directory, the entire content of
2599 ;; the directory is licensed as GPL3.
2600 (license license:gpl3+)))
2601
2602 (define-public kbd
2603 (package
2604 (name "kbd")
2605 (version "2.0.4")
2606 (source (origin
2607 (method url-fetch)
2608 (uri (string-append "mirror://kernel.org/linux/utils/kbd/kbd-"
2609 version ".tar.xz"))
2610 (sha256
2611 (base32
2612 "124swm93dm4ca0pifgkrand3r9gvj3019d4zkfxsj9djpvv0mnaz"))
2613 (modules '((guix build utils)))
2614 (snippet
2615 '(begin
2616 (substitute* "tests/Makefile.in"
2617 ;; The '%: %.in' rule incorrectly uses @VERSION@.
2618 (("@VERSION@")
2619 "[@]VERSION[@]"))
2620 (substitute* '("src/unicode_start" "src/unicode_stop")
2621 ;; Assume the Coreutils are in $PATH.
2622 (("/usr/bin/tty")
2623 "tty"))
2624 #t))))
2625 (build-system gnu-build-system)
2626 (arguments
2627 '(#:phases
2628 (modify-phases %standard-phases
2629 (add-before 'build 'pre-build
2630 (lambda* (#:key inputs #:allow-other-keys)
2631 (let ((gzip (assoc-ref %build-inputs "gzip"))
2632 (bzip2 (assoc-ref %build-inputs "bzip2")))
2633 (substitute* "src/libkeymap/findfile.c"
2634 (("gzip")
2635 (string-append gzip "/bin/gzip"))
2636 (("bzip2")
2637 (string-append bzip2 "/bin/bzip2")))
2638 #t)))
2639 (add-after 'install 'post-install
2640 (lambda* (#:key outputs #:allow-other-keys)
2641 ;; Make sure these programs find their comrades.
2642 (let* ((out (assoc-ref outputs "out"))
2643 (bin (string-append out "/bin")))
2644 (for-each (lambda (prog)
2645 (wrap-program (string-append bin "/" prog)
2646 `("PATH" ":" prefix (,bin))))
2647 '("unicode_start" "unicode_stop"))
2648 #t))))))
2649 (inputs `(("check" ,check)
2650 ("gzip" ,gzip)
2651 ("bzip2" ,bzip2)
2652 ("pam" ,linux-pam)))
2653 (native-search-paths
2654 (list (search-path-specification
2655 (variable "LOADKEYS_KEYMAP_PATH")
2656 ;; Append ‘/**’ to recursively search all directories. One can then
2657 ;; run (for example) ‘loadkeys en-latin9’ instead of having to find
2658 ;; and type ‘i386/colemak/en-latin9’ on a mislabelled keyboard.
2659 (files (list "share/keymaps/**")))))
2660 (native-inputs `(("pkg-config" ,pkg-config)))
2661 (home-page "http://kbd-project.org/")
2662 (synopsis "Linux keyboard utilities and keyboard maps")
2663 (description
2664 "This package contains keytable files and keyboard utilities compatible
2665 for systems using the Linux kernel. This includes commands such as
2666 @code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}.")
2667 (license license:gpl2+)))
2668
2669 (define-public loadkeys-static
2670 (package
2671 (inherit kbd)
2672 (name "loadkeys-static")
2673 (arguments
2674 (substitute-keyword-arguments (package-arguments kbd)
2675 ((#:configure-flags flags ''())
2676 `(append '("LDFLAGS=-static" "--disable-shared" "--disable-nls"
2677 "--disable-vlock" ;so we don't need libpam
2678 "--disable-libkeymap")
2679 ,flags))
2680 ((#:make-flags flags ''())
2681 `(cons "LDFLAGS=-all-static" ,flags))
2682 ((#:phases phases '%standard-phases)
2683 `(modify-phases ,phases
2684 (replace 'install
2685 (lambda* (#:key outputs #:allow-other-keys)
2686 (let ((out (assoc-ref outputs "out")))
2687 ;; The binary keeps references to gzip, among other things,
2688 ;; which we don't need in the initrd, so strip references.
2689 (remove-store-references "src/loadkeys")
2690
2691 (install-file "src/loadkeys"
2692 (string-append out "/bin"))
2693 #t)))
2694 (delete 'post-install)))
2695 ((#:strip-flags _ '())
2696 ''("--strip-all"))
2697 ((#:allowed-references _ '())
2698 '())))
2699
2700 (synopsis "Statically-linked @command{loadkeys} program")
2701
2702 ;; This package is meant to be used internally in the initrd so don't
2703 ;; expose it.
2704 (properties '((hidden? . #t)))))
2705
2706 (define-public inotify-tools
2707 (package
2708 (name "inotify-tools")
2709 (version "3.20.1")
2710 (source (origin
2711 (method git-fetch)
2712 (uri (git-reference
2713 (url "https://github.com/rvoicilas/inotify-tools.git")
2714 (commit version)))
2715 (file-name (git-file-name name version))
2716 (sha256
2717 (base32
2718 "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq"))))
2719 (build-system gnu-build-system)
2720 (native-inputs
2721 `(("autoconf" ,autoconf)
2722 ("automake" ,automake)
2723 ("libtool" ,libtool)))
2724 (home-page "https://github.com/rvoicilas/inotify-tools/wiki")
2725 (synopsis "Monitor file accesses")
2726 (description
2727 "The inotify-tools packages provides a C library and command-line tools
2728 to use Linux' inotify mechanism, which allows file accesses to be monitored.")
2729 (license license:gpl2+)))
2730
2731 (define-public kmod
2732 (package
2733 (name "kmod")
2734 (version "26")
2735 (source (origin
2736 (method url-fetch)
2737 (uri
2738 (string-append "mirror://kernel.org/linux/utils/kernel/kmod/"
2739 "kmod-" version ".tar.xz"))
2740 (sha256
2741 (base32
2742 "17dvrls70nr3b3x1wm8pwbqy4r8a5c20m0dhys8mjhsnpg425fsp"))
2743 (patches (search-patches "kmod-module-directory.patch"))))
2744 (build-system gnu-build-system)
2745 (native-inputs
2746 `(("pkg-config" ,pkg-config)))
2747 (inputs
2748 `(("xz" ,xz)
2749 ("zlib" ,zlib)))
2750 (arguments
2751 `(#:tests? #f ; FIXME: Investigate test failures
2752 #:configure-flags '("--with-xz" "--with-zlib")
2753 #:phases
2754 (modify-phases %standard-phases
2755 (add-after 'install 'install-modprobe&co
2756 (lambda* (#:key outputs #:allow-other-keys)
2757 (let* ((out (assoc-ref outputs "out"))
2758 (bin (string-append out "/bin")))
2759 (for-each (lambda (tool)
2760 (symlink "kmod"
2761 (string-append bin "/" tool)))
2762 '("insmod" "rmmod" "lsmod" "modprobe"
2763 "modinfo" "depmod"))
2764 #t))))))
2765 (home-page "https://www.kernel.org/")
2766 (synopsis "Kernel module tools")
2767 (description "Kmod is a set of tools to handle common tasks with Linux
2768 kernel modules like insert, remove, list, check properties, resolve
2769 dependencies and aliases.
2770
2771 These tools are designed on top of libkmod, a library that is shipped with
2772 kmod. The aim is to be compatible with tools, configurations and indices
2773 from the module-init-tools project.")
2774 (license license:gpl2+))) ; library under lgpl2.1+
2775
2776 (define-public earlyoom
2777 (package
2778 (name "earlyoom")
2779 (version "1.3.1")
2780 (source (origin
2781 (method git-fetch)
2782 (uri (git-reference
2783 (url "https://github.com/rfjakob/earlyoom.git")
2784 (commit (string-append "v" version))))
2785 (file-name (git-file-name name version))
2786 (sha256
2787 (base32
2788 "06sd3jpkdrwqbphsf8jrgs5rxfi7j3xjmygjjvj4xjk4gncz7r2i"))))
2789 (build-system gnu-build-system)
2790 (arguments
2791 `(#:phases (modify-phases %standard-phases
2792 (delete 'configure)
2793 (add-before 'check 'set-home
2794 (lambda _
2795 (setenv "HOME" (getcwd))
2796 #t))
2797 (add-after 'build 'install-contribs
2798 ;; Install what seems useful from the contrib directory.
2799 (lambda* (#:key outputs #:allow-other-keys)
2800 (let* ((out (assoc-ref outputs "out"))
2801 (contrib (string-append
2802 out "/share/earlyoom/contrib")))
2803 (install-file "contrib/notify_all_users.py" contrib)
2804 #t))))
2805 #:make-flags (let* ((prefix (assoc-ref %outputs "out")))
2806 (list "CC=gcc"
2807 (string-append "VERSION=v" ,version)
2808 (string-append "PREFIX=" prefix)
2809 (string-append "SYSCONFDIR=" prefix "/etc")))
2810 #:test-target "test"))
2811 (native-inputs `(("go" ,go) ;for the test suite
2812 ("pandoc" ,ghc-pandoc))) ;to generate the manpage
2813 (home-page "https://github.com/rfjakob/earlyoom")
2814 (synopsis "Simple out of memory (OOM) daemon for the Linux kernel")
2815 (description "Early OOM is a minimalist out of memory (OOM) daemon that
2816 runs in user space and provides a more responsive and configurable alternative
2817 to the in-kernel OOM killer.")
2818 (license license:expat)))
2819
2820 (define-public eudev
2821 ;; The post-systemd fork, maintained by Gentoo.
2822 (package
2823 (name "eudev")
2824 (version "3.2.9")
2825 (source (origin
2826 (method git-fetch)
2827 (uri (git-reference (url "https://github.com/gentoo/eudev")
2828 (commit (string-append "v" version))))
2829 (file-name (git-file-name name version))
2830 (sha256
2831 (base32
2832 "1g9z3d33m0i3hmbhm0wxpvkzf6ac7xj1drwcfrhzlfhhi63sg9h7"))
2833 (patches (search-patches "eudev-rules-directory.patch"))))
2834 (build-system gnu-build-system)
2835 (arguments
2836 '(#:phases
2837 (modify-phases %standard-phases
2838 (add-after 'unpack 'make-source-writable
2839 (lambda _
2840 ;; XXX: Git checkouts are read-only, but this package needs to
2841 ;; modify some of its files.
2842 (for-each make-file-writable (find-files "."))
2843 #t))
2844 (add-before 'bootstrap 'patch-file-names
2845 (lambda* (#:key inputs #:allow-other-keys)
2846 (substitute* "man/make.sh"
2847 (("/usr/bin/xsltproc")
2848 (string-append (assoc-ref inputs "xsltproc")
2849 "/bin/xsltproc")))
2850 #t))
2851 (add-after 'install 'move-static-library
2852 (lambda* (#:key outputs #:allow-other-keys)
2853 (let* ((out (assoc-ref outputs "out"))
2854 (static (assoc-ref outputs "static"))
2855 (source (string-append out "/lib/libudev.a"))
2856 (target (string-append static "/lib/libudev.a")))
2857 (mkdir-p (dirname target))
2858 (link source target)
2859 (delete-file source)
2860 ;; Remove reference to the static library from the .la file
2861 ;; such that Libtool looks for it in the usual places.
2862 (substitute* (string-append out "/lib/libudev.la")
2863 (("old_library=.*")
2864 "old_library=''\n"))
2865 #t)))
2866 (add-after 'install 'build-hwdb
2867 (lambda* (#:key outputs #:allow-other-keys)
2868 ;; Build OUT/etc/udev/hwdb.bin. This allows 'lsusb' and
2869 ;; similar tools to display product names.
2870 (let ((out (assoc-ref outputs "out")))
2871 (invoke (string-append out "/bin/udevadm")
2872 "hwdb" "--update")))))
2873 #:configure-flags (list "--enable-manpages")))
2874 (native-inputs
2875 `(("autoconf" ,autoconf)
2876 ("automake" ,automake)
2877 ("gperf" ,gperf)
2878 ("libtool" ,libtool)
2879 ("pkg-config" ,pkg-config)
2880 ;; For tests.
2881 ("perl" ,perl)
2882 ("python" ,python-wrapper)
2883 ;; For documentation.
2884 ("docbook-xml" ,docbook-xml-4.2)
2885 ("docbook-xsl" ,docbook-xsl)
2886 ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
2887 ("xsltproc" ,libxslt)))
2888 (inputs
2889 ;; When linked against libblkid, eudev can populate /dev/disk/by-label
2890 ;; and similar; it also installs the '60-persistent-storage.rules' file,
2891 ;; which contains the rules to do that.
2892 `(("util-linux" ,util-linux) ;for blkid
2893 ("kmod" ,kmod)))
2894 (outputs '("out" "static"))
2895 (home-page "https://wiki.gentoo.org/wiki/Project:Eudev")
2896 (synopsis "Userspace device management")
2897 (description "Udev is a daemon which dynamically creates and removes
2898 device nodes from /dev/, handles hotplug events and loads drivers at boot
2899 time.")
2900 (license license:gpl2+)))
2901
2902 ;; TODO: Merge with eudev on the next rebuild cycle.
2903 (define-public eudev/btrfs-fix
2904 (package/inherit
2905 eudev
2906 (version (string-append (package-version eudev) "-1"))
2907 (arguments
2908 (substitute-keyword-arguments (package-arguments eudev)
2909 ((#:phases phases '%standard-phases)
2910 `(modify-phases ,phases
2911 (add-before 'configure 'patch-bindir-in-btrfs-rules
2912 (lambda* (#:key outputs #:allow-other-keys)
2913 ;; The "@bindir@" substitution incorrectly expands to a literal
2914 ;; "${exec_prefix}" (see <https://bugs.gnu.org/39926>). Work
2915 ;; around it.
2916 (let ((out (assoc-ref outputs "out")))
2917 (substitute* "rules/64-btrfs.rules.in"
2918 (("@bindir@")
2919 (string-append out "/bin")))
2920 #t)))))))))
2921
2922 (define-public lvm2
2923 (package
2924 (name "lvm2")
2925 (version "2.03.08")
2926 (source (origin
2927 (method url-fetch)
2928 (uri (list (string-append "ftp://sourceware.org/pub/lvm2/LVM2."
2929 version ".tgz")
2930 (string-append "ftp://sources.redhat.com/pub/lvm2/releases/LVM2."
2931 version ".tgz")))
2932 (sha256
2933 (base32
2934 "1j0yis658564rk1ddabkl8vbavp0fdd10gd6qhgyzc3akzf620kf"))
2935 (modules '((guix build utils)))
2936 (snippet
2937 '(begin
2938 (use-modules (guix build utils))
2939
2940 ;; Honor sysconfdir.
2941 (substitute* "make.tmpl.in"
2942 (("^confdir = .*$")
2943 "confdir = @sysconfdir@\n")
2944 (("DEFAULT_SYS_DIR = @DEFAULT_SYS_DIR@")
2945 "DEFAULT_SYS_DIR = @sysconfdir@"))
2946 #t))
2947 (patches (search-patches "lvm2-static-link.patch"))))
2948 (build-system gnu-build-system)
2949 (native-inputs
2950 `(("pkg-config" ,pkg-config)
2951 ("procps" ,procps))) ;tests use 'pgrep'
2952 (inputs
2953 `(("libaio" ,libaio)
2954 ("udev" ,eudev)))
2955 (arguments
2956 '(#:phases
2957 (modify-phases %standard-phases
2958 (add-after 'configure 'set-makefile-shell
2959 (lambda _
2960 ;; Use 'sh', not 'bash', so that '. lib/utils.sh' works as
2961 ;; expected.
2962 (setenv "SHELL" (which "sh"))
2963
2964 ;; Replace /bin/sh with the right file name.
2965 (patch-makefile-SHELL "make.tmpl")
2966 #t)))
2967
2968 #:configure-flags (list (string-append "--sysconfdir="
2969 (assoc-ref %outputs "out")
2970 "/etc/lvm")
2971 "--enable-udev_sync"
2972 "--enable-udev_rules"
2973 "--enable-pkgconfig"
2974 "--enable-cmdlib"
2975 "--enable-dmeventd" ; Requires '--enable-cmdlib'.
2976
2977 ;; Make sure programs such as 'dmsetup' can
2978 ;; find libdevmapper.so.
2979 (string-append "LDFLAGS=-Wl,-rpath="
2980 (assoc-ref %outputs "out")
2981 "/lib,-rpath="
2982 (assoc-ref %outputs "out")
2983 "/lib/device-mapper"))
2984
2985 ;; The tests use 'mknod', which requires root access.
2986 #:tests? #f))
2987 (home-page "https://sourceware.org/lvm2/")
2988 (synopsis "Logical volume management for Linux")
2989 (description
2990 "LVM2 is the logical volume management tool set for Linux-based systems.
2991 This package includes the user-space libraries and tools, including the device
2992 mapper. Kernel components are part of Linux-libre.")
2993
2994 ;; Libraries (liblvm2, libdevmapper) are LGPLv2.1.
2995 ;; Command-line tools are GPLv2.
2996 (license (list license:gpl2 license:lgpl2.1))))
2997
2998 (define-public lvm2-static
2999 (package
3000 (inherit lvm2)
3001 (name "lvm2-static")
3002
3003 ;; Propagate udev because libdevmapper.a depends on libudev.
3004 (propagated-inputs `(("udev:static" ,eudev "static")))
3005
3006 (arguments
3007 (substitute-keyword-arguments (package-arguments lvm2)
3008 ((#:configure-flags flags '())
3009 ;; LVM2 doesn't use Libtool, hence the custom option.
3010 `(append '("--enable-static_link")
3011 ;; Building dmeventd statically is complicated due to a
3012 ;; requirement on libdevmapper.a, which is being phased out
3013 ;; in favor of libdevice-mapper.a, which in turn is is not
3014 ;; easily made available at dmeventd build time. Just ignore
3015 ;; it until the situation improves.
3016 (delete "--enable-dmeventd" ,flags)))
3017 ((#:phases phases)
3018 `(modify-phases ,phases
3019 (add-before 'configure 'adjust-Makefile
3020 (lambda _
3021 ;; These fixes are related to the upstream libdm->device_mapper
3022 ;; migration and will hopefully be fixed upstream in due time.
3023 (substitute* "tools/Makefile.in"
3024 ;; This variable is empty in a static configuration and causes
3025 ;; an erroneous GCC command line.
3026 (("-L\\$\\(interfacebuilddir\\)") "")
3027 ;; Remove obsolete reference to libdevmapper.a.
3028 (("-ldevmapper") ""))
3029 #t))))))
3030 (synopsis "Logical volume management for Linux (statically linked)")))
3031
3032 (define-public wireless-tools
3033 (package
3034 (name "wireless-tools")
3035 (version "30.pre9")
3036 (source (origin
3037 (method url-fetch)
3038 (uri (string-append "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools."
3039 version ".tar.gz"))
3040 (sha256
3041 (base32
3042 "0qscyd44jmhs4k32ggp107hlym1pcyjzihiai48xs7xzib4wbndb"))
3043 (snippet
3044 '(begin
3045 ;; Remove the older header files that are not free software.
3046 (for-each (lambda (n)
3047 (delete-file (format #f "wireless.~a.h" n)))
3048 '(10 11 12 13 14 15 16 17 18 19 20))
3049 #t))))
3050 (build-system gnu-build-system)
3051 (arguments
3052 `(#:make-flags
3053 (list (string-append "PREFIX=" %output)
3054 (string-append "INSTALL_MAN=" %output "/share/man")
3055 (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib")
3056 "BUILD_STATIC=")
3057 #:phases
3058 (modify-phases %standard-phases
3059 (replace 'configure
3060 (lambda* (#:key target #:allow-other-keys)
3061 (when ,(%current-target-system)
3062 ;; Cross-compilation: use the cross tools.
3063 (substitute* (find-files "." "Makefile")
3064 (("CC = .*$")
3065 (string-append "CC = " target "-gcc\n"))
3066 (("AR = .*$")
3067 (string-append "AR = " target "-ar\n"))
3068 (("RANLIB = .*$")
3069 (string-append "RANLIB = " target "-ranlib\n"))))
3070 #t)))
3071 #:tests? #f))
3072 (synopsis "Tools for manipulating Linux Wireless Extensions")
3073 (description "Wireless Tools are used to manipulate the now-deprecated
3074 Linux Wireless Extensions; consider using @code{iw} instead. The Wireless
3075 Extension was an interface allowing you to set Wireless LAN specific
3076 parameters and get the specific stats. It is deprecated in favor the nl80211
3077 interface.")
3078 (home-page "https://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html")
3079 ;; wireless.21.h and wireless.22.h are distributed under lgpl2.1+, the
3080 ;; other files are distributed under gpl2.
3081 (license (list license:gpl2 license:lgpl2.1+))))
3082
3083 (define-public crda
3084 (package
3085 (name "crda")
3086 (version "3.18")
3087 (source (origin
3088 (method url-fetch)
3089 (uri (string-append "mirror://kernel.org/software/network/crda/"
3090 "crda-" version ".tar.xz"))
3091 (sha256
3092 (base32
3093 "1gydiqgb08d9gbx4l6gv98zg3pljc984m50hmn3ysxcbkxkvkz23"))
3094 (patches (search-patches "crda-optional-gcrypt.patch"))))
3095 (build-system gnu-build-system)
3096 (arguments
3097 '(#:phases (modify-phases %standard-phases
3098 (delete 'configure)
3099 (add-after 'unpack 'gzip-determinism
3100 (lambda _
3101 (substitute* "Makefile"
3102 (("gzip") "gzip --no-name"))
3103 #t))
3104 (add-before
3105 'build 'no-werror-no-ldconfig
3106 (lambda _
3107 (substitute* "Makefile"
3108 (("-Werror") "")
3109 (("ldconfig") "true"))
3110 #t))
3111 (add-before
3112 'build 'set-regulator-db-file-name
3113 (lambda* (#:key inputs #:allow-other-keys)
3114 ;; Tell CRDA where to find our database.
3115 (let ((regdb (assoc-ref inputs "wireless-regdb")))
3116 (substitute* "crda.c"
3117 (("\"/lib/crda/regulatory.bin\"")
3118 (string-append "\"" regdb
3119 "/lib/crda/regulatory.bin\"")))
3120 #t))))
3121 #:test-target "verify"
3122 #:make-flags (let ((out (assoc-ref %outputs "out"))
3123 (regdb (assoc-ref %build-inputs "wireless-regdb")))
3124 (list "CC=gcc" "V=1"
3125
3126 ;; Disable signature-checking on 'regulatory.bin'.
3127 ;; The reason is that this simplifies maintenance
3128 ;; on our side (no need to manage a distro key
3129 ;; pair), and we can guarantee integrity of
3130 ;; 'regulatory.bin' by other means anyway, such as
3131 ;; 'guix gc --verify'. See
3132 ;; <https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb>
3133 ;; for a discssion.
3134 "USE_OPENSSL=0"
3135
3136 (string-append "PREFIX=" out)
3137 (string-append "SBINDIR=" out "/sbin/")
3138 (string-append "UDEV_RULE_DIR="
3139 out "/lib/udev/rules.d")
3140 (string-append "LDFLAGS=-Wl,-rpath="
3141 out "/lib -L.")
3142 (string-append "REG_BIN=" regdb
3143 "/lib/crda/regulatory.bin")))))
3144 (native-inputs `(("pkg-config" ,pkg-config)
3145 ("wireless-regdb" ,wireless-regdb)))
3146 (inputs `(("libnl" ,libnl)))
3147 (home-page
3148 "https://wireless.wiki.kernel.org/en/developers/Regulatory/CRDA")
3149 (synopsis "Central regulatory domain agent (CRDA) for WiFi")
3150 (description
3151 "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for
3152 communication between the kernel Linux and user space for regulatory
3153 compliance.")
3154 (license license:copyleft-next)))
3155
3156 (define-public wireless-regdb
3157 (package
3158 (name "wireless-regdb")
3159 (version "2019.06.03")
3160 (source (origin
3161 (method url-fetch)
3162 (uri (string-append
3163 "mirror://kernel.org/software/network/wireless-regdb/"
3164 "wireless-regdb-" version ".tar.xz"))
3165 (sha256
3166 (base32
3167 "1gslvh0aqdkv48jyr2ddq153mw28i7qz2ybrjj9qvkk3dgc7x4fd"))
3168
3169 ;; We're building 'regulatory.bin' by ourselves.
3170 (snippet '(begin
3171 (delete-file "regulatory.bin")
3172 #t))))
3173 (build-system gnu-build-system)
3174 (arguments
3175 '(#:phases
3176 (modify-phases %standard-phases
3177 (add-after 'unpack 'gzip-determinism
3178 (lambda _
3179 (substitute* "Makefile"
3180 (("gzip") "gzip --no-name"))
3181 #t))
3182 (add-after 'unpack 'omit-signature
3183 (lambda _
3184 (substitute* "Makefile"
3185 ;; Signing requires a REGDB_PUBCERT and REGDB_PRIVKEY which we
3186 ;; don't provide (see below). Disable it.
3187 ((" regulatory\\.db\\.p7s") "")
3188 ;; regulatory.db is built as a dependency of regulatory.db.p7s,
3189 ;; but ‘make install’ depends only on the latter while installing
3190 ;; both (and failing). Depend on it explicitly.
3191 (("^install: " all) (string-append all "regulatory.db ")))
3192 #t))
3193 (delete 'configure)) ; no configure script
3194
3195 ;; The 'all' target of the makefile depends on $(REGDB_CHANGED), which
3196 ;; is computed and can be equal to 'maintainer-clean'; when that
3197 ;; happens, we can end up deleting the 'regulatory.bin' file that we
3198 ;; just built. Thus, build things sequentially.
3199 #:parallel-build? #f
3200
3201 #:tests? #f ; no tests
3202 #:make-flags
3203 (let ((out (assoc-ref %outputs "out")))
3204 (list (string-append "PREFIX=" out)
3205 (string-append "FIRMWARE_PATH=$(PREFIX)/lib/firmware")
3206
3207 ;; Leave this empty so that db2bin.py doesn't try to sign
3208 ;; ‘regulatory.bin’. This allows us to avoid managing a key
3209 ;; pair for the whole distribution.
3210 (string-append "REGDB_PRIVKEY=")
3211 ;; Don't generate a public key for the same reason. These are
3212 ;; used as Makefile targets and can't be the empty string.
3213 (string-append "REGDB_PUBCERT=/dev/null")
3214 (string-append "REGDB_PUBKEY=/dev/null")))))
3215 (native-inputs
3216 `(("python" ,python-wrapper)))
3217 (home-page
3218 "https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb")
3219 (synopsis "Wireless regulatory database")
3220 (description
3221 "This package contains the wireless regulatory database Central
3222 Regulatory Database Agent (CRDA) daemon. The database contains information on
3223 country-specific regulations for the wireless spectrum.")
3224 (license license:isc)))
3225
3226 (define-public lm-sensors
3227 (package
3228 (name "lm-sensors")
3229 (version "3.6.0")
3230 (source
3231 (origin
3232 (method git-fetch)
3233 (uri (git-reference
3234 (url "https://github.com/groeck/lm-sensors.git")
3235 (commit (string-append "V" (string-join
3236 (string-split version #\.) "-")))))
3237 (file-name (git-file-name name version))
3238 (sha256
3239 (base32 "1ipf6wjx037sqyhy0r5jh4983h216anq9l68ckn2x5c3qc4wfmzn"))
3240 (patches (search-patches "lm-sensors-hwmon-attrs.patch"))))
3241 (build-system gnu-build-system)
3242 (inputs `(("rrdtool" ,rrdtool)
3243 ("perl" ,perl)
3244 ("kmod" ,kmod)
3245 ("gnuplot" ,gnuplot)))
3246 (native-inputs `(("pkg-config" ,pkg-config)
3247 ("flex" ,flex)
3248 ("bison" ,bison)
3249 ("which" ,which)))
3250 (outputs '("lib" ; avoid perl in closure
3251 "out"))
3252 (arguments
3253 `(#:tests? #f ; no 'check' target
3254 #:make-flags (list (string-append "PREFIX=" %output)
3255 (string-append "ETCDIR=" (assoc-ref %outputs "lib") "/etc")
3256 (string-append "INCLUDEDIR="
3257 (assoc-ref %outputs "lib") "/include")
3258 (string-append "MANDIR=" %output "/share/man")
3259 (string-append "LIBDIR=" (assoc-ref %outputs "lib") "/lib"))
3260 #:phases
3261 (modify-phases %standard-phases
3262 (delete 'configure)
3263 (add-before 'build 'patch-exec-paths
3264 (lambda* (#:key inputs outputs #:allow-other-keys)
3265 (substitute* "prog/detect/sensors-detect"
3266 (("`uname")
3267 (string-append "`" (assoc-ref inputs "coreutils")
3268 "/bin/uname"))
3269 (("(`|\")modprobe" all open-quote)
3270 (string-append open-quote
3271 (assoc-ref inputs "kmod")
3272 "/bin/modprobe")))
3273 (substitute* '("prog/pwm/pwmconfig"
3274 "prog/pwm/fancontrol")
3275 (("gnuplot")
3276 (string-append (assoc-ref inputs "gnuplot")
3277 "/bin/gnuplot"))
3278 (("cat ")
3279 (string-append (assoc-ref inputs "coreutils")
3280 "/bin/cat "))
3281 (("grep ")
3282 (string-append (assoc-ref inputs "grep")
3283 "/bin/grep "))
3284 (("sed -e")
3285 (string-append (assoc-ref inputs "sed")
3286 "/bin/sed -e"))
3287 (("cut -d")
3288 (string-append (assoc-ref inputs "coreutils")
3289 "/bin/cut -d"))
3290 (("sleep ")
3291 (string-append (assoc-ref inputs "coreutils")
3292 "/bin/sleep "))
3293 (("readlink -f")
3294 (string-append (assoc-ref inputs "coreutils")
3295 "/bin/readlink -f")))
3296 #t)))))
3297 (home-page "https://hwmon.wiki.kernel.org/lm_sensors")
3298 (synopsis "Utilities to read temperature/voltage/fan sensors")
3299 (description
3300 "Lm-sensors is a hardware health monitoring package for Linux. It allows
3301 you to access information from temperature, voltage, and fan speed sensors.
3302 It works with most newer systems.")
3303 (license license:gpl2+)))
3304
3305 (define-public iucode-tool
3306 (package
3307 (name "iucode-tool")
3308 (version "2.3.1")
3309 (source (origin
3310 (method url-fetch)
3311 (uri (string-append "https://gitlab.com/iucode-tool/releases"
3312 "/raw/latest/iucode-tool_" version ".tar.xz"))
3313 (sha256
3314 (base32
3315 "159gvf6ljgg3g4vlhyy6pyr0wz11rcyhp985vc4az58d9px8xf0j"))))
3316 (build-system gnu-build-system)
3317 (home-page "https://gitlab.com/iucode-tool/iucode-tool/wikis/home")
3318 (synopsis "Manipulate Intel microcode bundles")
3319 (description
3320 "@command{iucode_tool} is a utility to work with microcode packages for
3321 Intel processors. It can convert between formats, extract specific versions,
3322 create a firmware image suitable for the Linux kernel, and more.")
3323 ;; cpuid.h is available for i686, x86_64, and ia64.
3324 (supported-systems '("i686-linux" "x86_64-linux"))
3325 (license license:gpl2+)))
3326
3327 (define-public i2c-tools
3328 (package
3329 (name "i2c-tools")
3330 (version "3.1.1")
3331 (source (origin
3332 (method url-fetch)
3333 (uri (string-append
3334 "http://jdelvare.nerim.net/mirror/i2c-tools/i2c-tools-"
3335 version ".tar.bz2"))
3336 (sha256
3337 (base32
3338 "000pvg995qy1b15ks59gd0klri55hb33kqpg5czy84hw1pbdgm0l"))))
3339 (build-system gnu-build-system)
3340 (arguments
3341 `(#:tests? #f ; no 'check' target
3342 #:make-flags (list (string-append "prefix=" %output)
3343 "CC=gcc")
3344 ;; no configure script
3345 #:phases (modify-phases %standard-phases (delete 'configure))))
3346 (inputs
3347 `(("perl" ,perl)))
3348 (home-page "http://jdelvare.nerim.net/devel.html#i2ctools")
3349 (synopsis "I2C tools for Linux")
3350 (description
3351 "The i2c-tools package contains a heterogeneous set of I2C tools for
3352 Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,
3353 EEPROM decoding scripts, EEPROM programming tools, and a python module for
3354 SMBus access.")
3355 (license license:gpl2+)))
3356
3357 (define-public xsensors
3358 (package
3359 (name "xsensors")
3360 (version "0.70")
3361 (source (origin
3362 (method url-fetch)
3363 (uri (string-append
3364 "http://www.linuxhardware.org/xsensors/xsensors-"
3365 version ".tar.gz"))
3366 (sha256
3367 (base32
3368 "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh"))))
3369 (build-system gnu-build-system)
3370 (inputs `(("lm-sensors" ,lm-sensors "lib")
3371 ("gtk" ,gtk+-2)))
3372 (native-inputs `(("pkg-config" ,pkg-config)))
3373 (arguments
3374 `(#:phases
3375 (modify-phases %standard-phases
3376 (add-before 'configure 'enable-deprecated
3377 (lambda _
3378 (substitute* "src/Makefile.in"
3379 (("-DGDK_DISABLE_DEPRECATED") "")
3380 (("-DGTK_DISABLE_DEPRECATED") ""))
3381 #t))
3382 (add-before 'configure 'remove-Werror
3383 (lambda _
3384 (substitute* '("configure" "src/Makefile.in")
3385 (("-Werror") ""))
3386 #t)))))
3387 (home-page "http://www.linuxhardware.org/xsensors/")
3388 (synopsis "Hardware health information viewer")
3389 (description
3390 "Xsensors reads data from the libsensors library regarding hardware
3391 health such as temperature, voltage and fan speed and displays the information
3392 in a digital read-out.")
3393 (license license:gpl2+)))
3394
3395 (define-public perf
3396 (package
3397 (name "perf")
3398 (version (package-version linux-libre))
3399 (source (package-source linux-libre))
3400 (build-system gnu-build-system)
3401 (arguments
3402 '(#:phases
3403 (modify-phases %standard-phases
3404 (replace 'configure
3405 (lambda* (#:key inputs #:allow-other-keys)
3406 (setenv "SHELL_PATH" (which "bash"))
3407 (chdir "tools/perf")
3408 #t)))
3409 #:make-flags (list (string-append "prefix="
3410 (assoc-ref %outputs "out"))
3411 ;; Make sure the kernel headers are treated as system
3412 ;; headers to suppress warnings from those.
3413 (string-append "C_INCLUDE_PATH="
3414 (assoc-ref %build-inputs "kernel-headers")
3415 "/include")
3416 "WERROR=0"
3417
3418 ;; By default, 'config/Makefile' uses lib64 on
3419 ;; x86_64. Work around that.
3420 "lib=lib")
3421 #:tests? #f)) ;no tests
3422 (native-inputs
3423 `(("pkg-config" ,pkg-config)
3424 ("bison" ,bison)
3425 ("flex" ,flex)
3426
3427 ;; There are build scripts written in these languages.
3428 ("perl" ,perl)
3429 ("python" ,python-2)))
3430 (inputs
3431 `(("slang" ,slang) ;for the interactive TUI
3432 ;; ("newt" ,newt)
3433 ("python" ,python-2) ;'perf' links against libpython
3434 ("elfutils" ,elfutils)
3435 ("libiberty" ,libiberty) ;used alongside BDF for symbol demangling
3436 ("libunwind" ,libunwind) ;better stack walking
3437 ("numactl" ,numactl) ;for 'perf bench numa mem'
3438
3439 ;; Documentation.
3440 ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
3441 ("docbook-xsl" ,docbook-xsl)
3442 ("xmlto" ,xmlto)
3443 ("asciidoc" ,asciidoc)))
3444 (home-page "https://perf.wiki.kernel.org/")
3445 (synopsis "Linux profiling with performance counters")
3446 (description
3447 "perf is a tool suite for profiling using hardware performance counters,
3448 with support in the Linux kernel. perf can instrument CPU performance
3449 counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable
3450 of lightweight profiling. This package contains the user-land tools and in
3451 particular the @code{perf} command.")
3452 (license (package-license linux-libre))))
3453
3454 (define-public pflask
3455 (package
3456 (name "pflask")
3457 (version "0.2")
3458 (source (origin
3459 (method url-fetch)
3460 (uri (string-append "https://github.com/ghedo/pflask/archive/v"
3461 version ".tar.gz"))
3462 (file-name (string-append name "-" version ".tar.gz"))
3463 (sha256
3464 (base32
3465 "1g8fjj67dfkc2s0852l9vqi1pm61gp4rxbpzbzg780f5s5hd1fys"))))
3466 (build-system cmake-build-system)
3467 (arguments
3468 '(#:tests? #f)) ; no tests
3469 (home-page "https://ghedo.github.io/pflask/")
3470 (synopsis "Simple tool for creating Linux namespace containers")
3471 (description "pflask is a simple tool for creating Linux namespace
3472 containers. It can be used for running a command or even booting an OS inside
3473 an isolated container, created with the help of Linux namespaces. It is
3474 similar in functionality to chroot, although pflask provides better isolation
3475 thanks to the use of namespaces.")
3476 (license license:bsd-2)))
3477
3478 (define-public singularity
3479 (package
3480 (name "singularity")
3481 (version "2.6.1")
3482 (source (origin
3483 (method url-fetch)
3484 (uri (string-append "https://github.com/singularityware/singularity/"
3485 "releases/download/" version
3486 "/singularity-" version ".tar.gz"))
3487 (sha256
3488 (base32
3489 "1whx0hqqi1326scgdxxxa1d94vn95mnq0drid6s8wdp84ni4d3gk"))
3490 (modules '((guix build utils)))
3491 (snippet
3492 '(begin
3493 ;; Do not create directories in /var.
3494 (substitute* "Makefile.in"
3495 (("\\$\\(MAKE\\) .*install-data-hook") ""))
3496
3497 ;; The original source overrides PATH so that it points to
3498 ;; /bin, /usr/local/bin, etc., which obviously doesn't work
3499 ;; on Guix System. Leave PATH unchanged so we refer to the
3500 ;; installed Coreutils, grep, etc.
3501 (substitute* "bin/singularity.in"
3502 (("^PATH=.*" all)
3503 (string-append "#" all "\n")))
3504
3505 (substitute* (find-files "libexec/cli" "\\.exec$")
3506 (("\\$SINGULARITY_libexecdir/singularity/bin/([a-z]+)-suid"
3507 _ program)
3508 (string-append "/run/setuid-programs/singularity-"
3509 program "-helper")))
3510
3511 ;; These squashfs mount options are apparently no longer
3512 ;; supported since Linux-libre 5.4.5.
3513 (substitute* "src/lib/image/squashfs/mount.c"
3514 (("\"errors=remount-ro\"")
3515 "NULL"))
3516 #t))))
3517 (build-system gnu-build-system)
3518 (arguments
3519 `(#:configure-flags '("--localstatedir=/var")
3520 #:phases
3521 (modify-phases %standard-phases
3522 (add-after 'unpack 'patch-reference-to-squashfs-tools
3523 (lambda _
3524 (substitute* "libexec/cli/build.exec"
3525 (("if ! singularity_which mksquashfs") "if 0")
3526 (("if ! mksquashfs")
3527 (string-append "if ! " (which "mksquashfs"))))
3528 #t))
3529 (add-after 'install 'set-PATH
3530 (lambda* (#:key inputs outputs #:allow-other-keys)
3531 ;; Have the 'singularity' and 'run-singularity' self-sufficient.
3532 (let ((out (assoc-ref outputs "out"))
3533 (coreutils (assoc-ref inputs "coreutils")))
3534 (wrap-program (string-append out "/bin/singularity")
3535 `("PATH" ":" = (,(string-append coreutils "/bin"))))
3536 (substitute* (string-append out "/bin/run-singularity")
3537 (("/usr/bin/env singularity")
3538 (string-append (which "env") " "
3539 out "/bin/singularity")))
3540 #t))))))
3541 (inputs
3542 `(("libarchive" ,libarchive)
3543 ("python" ,python-wrapper)
3544 ("zlib" ,zlib)
3545 ("squashfs-tools" ,squashfs-tools)))
3546 (home-page "https://singularity.lbl.gov/")
3547 (synopsis "Container platform")
3548 (description "Singularity is a container platform supporting a number of
3549 container image formats. It can build SquashFS container images or import
3550 existing Docker images. Singularity requires kernel support for container
3551 isolation or root privileges.")
3552 (license license:bsd-3)))
3553
3554 (define-public hdparm
3555 (package
3556 (name "hdparm")
3557 (version "9.58")
3558 (source (origin
3559 (method url-fetch)
3560 (uri (string-append "mirror://sourceforge/hdparm/hdparm/"
3561 "hdparm-" version ".tar.gz"))
3562 (sha256
3563 (base32
3564 "03z1qm8zbgpxagk3994lvp24yqsshjibkwg05v9p3q1w7y48xrws"))))
3565 (build-system gnu-build-system)
3566 (arguments
3567 `(#:make-flags (let ((out (assoc-ref %outputs "out")))
3568 (list (string-append "binprefix=" out)
3569 (string-append "manprefix=" out)
3570 "CC=gcc"))
3571 #:phases
3572 (modify-phases %standard-phases
3573 (delete 'configure)) ; no configure script
3574 #:tests? #f)) ; no test suite
3575 (home-page "https://sourceforge.net/projects/hdparm/")
3576 (synopsis "View and tune ATA disk drive parameters")
3577 (description
3578 "@command{hdparm} is a command-line utility to control ATA controllers and
3579 disk drives. It can increase performance and/or reliability by careful tuning
3580 of hardware settings like power and acoustic management, DMA modes, and caching.
3581 It can also display detailed device information, or be used as a simple
3582 performance benchmarking tool.
3583
3584 @command{hdparm} provides a command line interface to various Linux kernel
3585 interfaces provided by the SATA/ATA/SAS @code{libata} subsystem, and the older
3586 IDE driver subsystem. Many external USB drive enclosures with SCSI-ATA Command
3587 Translation (@dfn{SAT}) are also supported.")
3588 (license (license:non-copyleft "file://LICENSE.TXT"))))
3589
3590 (define-public nvme-cli
3591 (package
3592 (name "nvme-cli")
3593 (version "1.10.1")
3594 (home-page "https://github.com/linux-nvme/nvme-cli")
3595 (source (origin
3596 (method git-fetch)
3597 (uri (git-reference
3598 (url home-page)
3599 (commit (string-append "v" version))))
3600 (sha256
3601 (base32 "12wp2wxmsw2v8m9bhvwvdbhdgx1md8iilhbl19sfzz2araiwi2x8"))
3602 (file-name (git-file-name name version))))
3603 (build-system gnu-build-system)
3604 (arguments
3605 `(#:make-flags (list "CC=gcc")
3606 #:phases (modify-phases %standard-phases
3607 (delete 'configure) ; No ./configure script
3608 (replace 'install
3609 (lambda _
3610 (invoke "make" "install-spec" "PREFIX="
3611 (string-append "DESTDIR=" %output)))))
3612 #:tests? #f)) ; The tests require sysfs, which is not accessible from
3613 ; the build environment
3614 (synopsis "NVM-Express user space tooling for Linux")
3615 (description "Nvme-cli is a utility to provide standards compliant tooling
3616 for NVM-Express drives. It was made specifically for Linux as it relies on the
3617 IOCTLs defined by the mainline kernel driver.")
3618 (license license:gpl2+)))
3619
3620 (define-public rfkill
3621 (package
3622 (name "rfkill")
3623 (version "0.5")
3624 (source (origin
3625 (method url-fetch)
3626 (uri (string-append "mirror://kernel.org/software/network/"
3627 name "/" name "-" version ".tar.xz"))
3628 (sha256
3629 (base32
3630 "0snqj5h0y991lszbigbyyqb8swj0hxajc1vfqg2scfay44231bp0"))))
3631 (build-system gnu-build-system)
3632 (arguments
3633 `(#:make-flags (list "CC=gcc"
3634 (string-append "PREFIX=" %output))
3635 #:phases (modify-phases %standard-phases
3636 (delete 'configure))
3637 #:tests? #f))
3638 (home-page "https://wireless.wiki.kernel.org/en/users/Documentation/rfkill")
3639 (synopsis "Tool for enabling and disabling wireless devices")
3640 (description
3641 "rfkill is a simple tool for accessing the rfkill device interface,
3642 which is used to enable and disable wireless networking devices, typically
3643 WLAN, Bluetooth and mobile broadband.")
3644 (license (license:non-copyleft "file://COPYING"
3645 "See COPYING in the distribution."))
3646 ;; rfkill is part of util-linux as of 2.31.
3647 (properties `((superseded . ,util-linux)))))
3648
3649 (define-public acpi
3650 (package
3651 (name "acpi")
3652 (version "1.7")
3653 (source (origin
3654 (method url-fetch)
3655 (uri (string-append "mirror://sourceforge/acpiclient/acpiclient/"
3656 version "/" name "-" version ".tar.gz"))
3657 (sha256
3658 (base32
3659 "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp"))))
3660 (build-system gnu-build-system)
3661 (home-page "http://acpiclient.sourceforge.net")
3662 (synopsis "Display information on ACPI devices")
3663 (description "@code{acpi} attempts to replicate the functionality of the
3664 \"old\" @code{apm} command on ACPI systems, including battery and thermal
3665 information. It does not support ACPI suspending, only displays information
3666 about ACPI devices.")
3667 (license license:gpl2+)))
3668
3669 (define-public acpid
3670 (package
3671 (name "acpid")
3672 (version "2.0.32")
3673 (source (origin
3674 (method url-fetch)
3675 (uri (string-append "mirror://sourceforge/acpid2/acpid-"
3676 version ".tar.xz"))
3677 (sha256
3678 (base32
3679 "0zhmxnhnhg4v1viw82yjr22kram6k5k1ixznhayk8cnw7q5x7lpj"))))
3680 (build-system gnu-build-system)
3681 (home-page "https://sourceforge.net/projects/acpid2/")
3682 (synopsis "Daemon for delivering ACPI events to user-space programs")
3683 (description
3684 "acpid is designed to notify user-space programs of Advanced
3685 Configuration and Power Interface (ACPI) events. acpid should be started
3686 during the system boot, and will run as a background process. When an ACPI
3687 event is received from the kernel, acpid will examine the list of rules
3688 specified in /etc/acpi/events and execute the rules that match the event.")
3689 (license license:gpl2+)))
3690
3691 (define-public sysfsutils
3692 (package
3693 (name "sysfsutils")
3694 (version "2.1.0")
3695 (source
3696 (origin
3697 (method url-fetch)
3698 (uri
3699 (string-append
3700 "mirror://sourceforge/linux-diag/sysfsutils/" version "/sysfsutils-"
3701 version ".tar.gz"))
3702 (sha256
3703 (base32 "12i0ip11xbfcjzxz4r10cvz7mbzgq1hfcdn97w6zz7sm3wndwrg8"))))
3704 (build-system gnu-build-system)
3705 (home-page "http://linux-diag.sourceforge.net/Sysfsutils.html")
3706 (synopsis "System utilities based on Linux sysfs")
3707 (description
3708 "These are a set of utilities built upon sysfs, a virtual file system in
3709 Linux kernel versions 2.5+ that exposes a system's device tree. The package
3710 also contains the libsysfs library.")
3711 ;; The library is under lgpl2.1+ (all files say "or any later version").
3712 ;; The rest is mostly gpl2, with a few files indicating gpl2+.
3713 (license (list license:gpl2 license:gpl2+ license:lgpl2.1+))))
3714
3715 (define-public sysfsutils-1
3716 (package
3717 (inherit sysfsutils)
3718 (version "1.3.0")
3719 (source
3720 (origin
3721 (method url-fetch)
3722 (uri
3723 (string-append
3724 "mirror://sourceforge/linux-diag/sysfsutils/sysfsutils-" version
3725 "/sysfsutils-" version ".tar.gz"))
3726 (sha256
3727 (base32 "0kdhs07fm8263pxwd5blwn2x211cg4fk63fyf9ijcdkvzmwxrqq3"))
3728 (modules '((guix build utils)))
3729 (snippet
3730 '(begin
3731 (substitute* "Makefile.in"
3732 (("includedir = /usr/include/sysfs")
3733 "includedir = @includedir@"))
3734 (substitute* "configure"
3735 (("includedir='(\\$\\{prefix\\}/include)'" all orig)
3736 (string-append "includedir='" orig "/sysfs'")))
3737 #t))))
3738 (synopsis "System utilities based on Linux sysfs (version 1.x)")))
3739
3740 (define-public cpufrequtils
3741 (package
3742 (name "cpufrequtils")
3743 (version "0.3")
3744 (source
3745 (origin
3746 (method url-fetch)
3747 (uri (string-append "mirror://kernel.org/linux/utils/kernel/cpufreq/"
3748 "cpufrequtils-" version ".tar.gz"))
3749 (sha256
3750 (base32 "0qfqv7nqmjfr3p0bwrdlxkiqwqr7vmx053cadaa548ybqbghxmvm"))
3751 (patches (search-patches "cpufrequtils-fix-aclocal.patch"))))
3752 (build-system gnu-build-system)
3753 (native-inputs
3754 `(("sysfsutils" ,sysfsutils-1)))
3755 (arguments
3756 '(#:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="
3757 (assoc-ref %outputs "out") "/lib"))))
3758 (home-page "https://www.kernel.org/pub/linux/utils/kernel/cpufreq/")
3759 (synopsis "Utilities to get and set CPU frequency on Linux")
3760 (description
3761 "The cpufrequtils suite contains utilities to retrieve CPU frequency
3762 information, and set the CPU frequency if supported, using the cpufreq
3763 capabilities of the Linux kernel.")
3764 (license license:gpl2)))
3765
3766 (define-public libraw1394
3767 (package
3768 (name "libraw1394")
3769 (version "2.1.2")
3770 (source (origin
3771 (method url-fetch)
3772 (uri (string-append
3773 "mirror://kernel.org/linux/libs/ieee1394/"
3774 name "-" version ".tar.xz"))
3775 (sha256
3776 (base32
3777 "0pm5b415j1qdzyw38wdv8h7ff4yx20831z1727mpsb6jc6bwdk03"))))
3778 (build-system gnu-build-system)
3779 (home-page "https://ieee1394.wiki.kernel.org/index.php/Main_Page")
3780 (synopsis "Interface library for the Linux IEEE1394 drivers")
3781 (description
3782 "Libraw1394 is the only supported interface to the kernel side raw1394 of
3783 the Linux IEEE-1394 subsystem, which provides direct access to the connected
3784 1394 buses to user space. Through libraw1394/raw1394, applications can directly
3785 send to and receive from other nodes without requiring a kernel driver for the
3786 protocol in question.")
3787 (license license:lgpl2.1+)))
3788
3789 (define-public libavc1394
3790 (package
3791 (name "libavc1394")
3792 (version "0.5.4")
3793 (source (origin
3794 (method url-fetch)
3795 (uri (string-append "mirror://sourceforge/libavc1394/libavc1394/"
3796 name "-" version ".tar.gz"))
3797 (sha256
3798 (base32
3799 "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw"))))
3800 (build-system gnu-build-system)
3801 (native-inputs
3802 `(("pkg-config" ,pkg-config)))
3803 (propagated-inputs
3804 `(("libraw1394" ,libraw1394))) ; required by libavc1394.pc
3805 (home-page "https://sourceforge.net/projects/libavc1394/")
3806 (synopsis "AV/C protocol library for IEEE 1394")
3807 (description
3808 "Libavc1394 is a programming interface to the AV/C specification from
3809 the 1394 Trade Association. AV/C stands for Audio/Video Control.")
3810 (license license:lgpl2.1+)))
3811
3812 (define-public libiec61883
3813 (package
3814 (name "libiec61883")
3815 (version "1.2.0")
3816 (source (origin
3817 (method url-fetch)
3818 (uri (string-append
3819 "mirror://kernel.org/linux/libs/ieee1394/"
3820 name "-" version ".tar.xz"))
3821 (sha256
3822 (base32
3823 "17ph458zya2l8dr2xwqnzy195qd9swrir31g78qkgb3g4xz2rq6i"))))
3824 (build-system gnu-build-system)
3825 (native-inputs
3826 `(("pkg-config" ,pkg-config)))
3827 (propagated-inputs
3828 `(("libraw1394" ,libraw1394))) ; required by libiec61883.pc
3829 (home-page "https://ieee1394.wiki.kernel.org/index.php/Main_Page")
3830 (synopsis "Isochronous streaming media library for IEEE 1394")
3831 (description
3832 "The libiec61883 library provides a higher level API for streaming DV,
3833 MPEG-2 and audio over Linux IEEE 1394.")
3834 (license license:lgpl2.1+)))
3835
3836 (define-public mdadm
3837 (package
3838 (name "mdadm")
3839 (version "4.1")
3840 (source (origin
3841 (method url-fetch)
3842 (uri (string-append
3843 "mirror://kernel.org/linux/utils/raid/mdadm/mdadm-"
3844 version ".tar.xz"))
3845 (sha256
3846 (base32
3847 "0jjgjgqijpdp7ijh8slzzjjw690kydb1jjadf0x5ilq85628hxmb"))))
3848 (build-system gnu-build-system)
3849 (inputs
3850 `(("udev" ,eudev)))
3851 (arguments
3852 `(#:make-flags (let ((out (assoc-ref %outputs "out")))
3853 (list "CC=gcc"
3854 "INSTALL=install"
3855 "CHECK_RUN_DIR=0"
3856 ;; TODO: tell it where to find 'sendmail'
3857 ;; (string-append "MAILCMD=" <???> "/sbin/sendmail")
3858 (string-append "BINDIR=" out "/sbin")
3859 (string-append "MANDIR=" out "/share/man")
3860 (string-append "UDEVDIR=" out "/lib/udev")))
3861 #:phases
3862 (modify-phases %standard-phases
3863 (add-before 'build 'patch-program-paths
3864 (lambda* (#:key inputs #:allow-other-keys)
3865 (let ((coreutils (assoc-ref inputs "coreutils")))
3866 (substitute* "udev-md-raid-arrays.rules"
3867 (("/usr/bin/(readlink|basename)" all program)
3868 (string-append coreutils "/bin/" program))))
3869 #t))
3870 (add-before 'build 'remove-W-error
3871 (lambda _
3872 ;; We cannot build with -Werror on i686 due to a
3873 ;; 'sign-compare' warning in util.c.
3874 (substitute* "Makefile"
3875 (("-Werror") ""))
3876 #t))
3877 (delete 'configure))
3878 ;;tests must be done as root
3879 #:tests? #f))
3880 (home-page "http://neil.brown.name/blog/mdadm")
3881 (synopsis "Tool for managing Linux Software RAID arrays")
3882 (description
3883 "mdadm is a tool for managing Linux Software RAID arrays. It can create,
3884 assemble, report on, and monitor arrays. It can also move spares between raid
3885 arrays when needed.")
3886 (license license:gpl2+)))
3887
3888 (define-public mdadm-static
3889 (package
3890 (inherit mdadm)
3891 (name "mdadm-static")
3892 (arguments
3893 (substitute-keyword-arguments (package-arguments mdadm)
3894 ((#:make-flags flags)
3895 `(cons "LDFLAGS = -static" ,flags))
3896 ((#:phases phases)
3897 `(modify-phases ,phases
3898 (add-after 'install 'remove-cruft
3899 (lambda* (#:key outputs #:allow-other-keys)
3900 (let* ((out (assoc-ref outputs "out"))
3901 (precious? (lambda (file)
3902 (member file '("." ".." "sbin"))))
3903 (directories (scandir out (negate precious?))))
3904 (with-directory-excursion out
3905 (for-each delete-file-recursively directories)
3906 (remove-store-references "sbin/mdadm")
3907 (delete-file "sbin/mdmon")
3908 #t))))))
3909 ((#:modules modules %gnu-build-system-modules)
3910 `((ice-9 ftw) ,@modules))
3911 ((#:strip-flags _ '())
3912 ''("--strip-all")) ;strip a few extra KiB
3913 ((#:allowed-references _ '("out"))
3914 '("out")))) ;refer only self
3915 (synopsis "Statically-linked 'mdadm' command for use in an initrd")))
3916
3917 (define-public multipath-tools
3918 (package
3919 (name "multipath-tools")
3920 (version "0.8.3")
3921 (source (origin
3922 (method url-fetch)
3923 (uri (string-append "https://git.opensvc.com/?p=multipath-tools/"
3924 ".git;a=snapshot;h=" version ";sf=tgz"))
3925 (file-name (string-append name "-" version ".tar.gz"))
3926 (sha256
3927 (base32
3928 "1c6ay97wlfv1fl0y8hcfpxhkps14hlnw9gzmj7884micsp7pa9yv"))
3929 (modules '((guix build utils)))
3930 (snippet
3931 '(begin
3932 ;; Drop bundled valgrind headers.
3933 (delete-file-recursively "third-party")
3934 (substitute* '("multipathd/main.c"
3935 "libmultipath/debug.c")
3936 (("#include \"../third-party/")
3937 "#include \""))
3938 #t))))
3939 (build-system gnu-build-system)
3940 (arguments
3941 '(#:tests? #f ; no tests
3942 #:make-flags (list "CC=gcc"
3943 (string-append "DESTDIR="
3944 (assoc-ref %outputs "out"))
3945 "SYSTEMDPATH=lib"
3946 ;; Add the libaio headers to GCCs system header
3947 ;; search path to suppress -Werror=cast-qual on
3948 ;; the included headers.
3949 (string-append "C_INCLUDE_PATH="
3950 (assoc-ref %build-inputs "libaio")
3951 "/include")
3952 (string-append "LDFLAGS=-Wl,-rpath="
3953 (assoc-ref %outputs "out")
3954 "/lib"))
3955 #:phases
3956 (modify-phases %standard-phases
3957 (add-after 'unpack 'patch-source
3958 (lambda* (#:key inputs #:allow-other-keys)
3959 (let ((lvm2 (assoc-ref inputs "lvm2"))
3960 (udev (assoc-ref inputs "udev")))
3961 (substitute* "Makefile.inc"
3962 (("\\$\\(prefix\\)/usr") "$(prefix)")
3963 ;; Do not save timestamp to avoid gzip "timestamp
3964 ;; out-of-range" warnings.
3965 (("gzip -9") "gzip -9n"))
3966 (substitute* '("kpartx/Makefile" "libmultipath/Makefile")
3967 (("/usr/include/libdevmapper.h")
3968 (string-append lvm2 "/include/libdevmapper.h"))
3969 (("/usr/include/libudev.h")
3970 (string-append udev "/include/libudev.h")))
3971 #t)))
3972 (delete 'configure)))) ; no configure script
3973 (native-inputs
3974 `(("perl" ,perl)
3975 ("pkg-config" ,pkg-config)
3976 ("valgrind" ,valgrind)))
3977 (inputs
3978 `(("json-c" ,json-c)
3979 ("libaio" ,libaio)
3980 ("liburcu" ,liburcu)
3981 ("lvm2" ,lvm2)
3982 ("readline" ,readline)
3983 ("udev" ,eudev)))
3984 (home-page "http://christophe.varoqui.free.fr/")
3985 (synopsis "Access block devices through multiple paths")
3986 (description
3987 "This package provides the following binaries to drive the
3988 Linux Device Mapper multipathing driver:
3989 @enumerate
3990 @item @command{multipath} - Device mapper target autoconfig.
3991 @item @command{multipathd} - Multipath daemon.
3992 @item @command{mpathpersist} - Manages SCSI persistent reservations on
3993 @code{dm} multipath devices.
3994 @item @command{kpartx} - Create device maps from partition tables.
3995 @end enumerate")
3996 (license (list license:gpl2+ ; main distribution
3997 license:lgpl2.0+)))) ; libmpathcmd/mpath_cmd.h
3998
3999 (define-public libaio
4000 (package
4001 (name "libaio")
4002 (version "0.3.112")
4003 (source (origin
4004 (method url-fetch)
4005 (uri (list
4006 (string-append "https://releases.pagure.org/libaio/"
4007 name "-" version ".tar.gz")))
4008 (sha256
4009 (base32
4010 "14mlqdapjqq1dhpkdgy5z83mvsaz36fcxca7a4z6hinmr7r6415b"))))
4011 (build-system gnu-build-system)
4012 (arguments
4013 '(#:make-flags
4014 (list "CC=gcc" (string-append "prefix=" %output))
4015 #:test-target "partcheck" ; need root for a full 'check'
4016 #:phases
4017 (modify-phases %standard-phases (delete 'configure)))) ; no configure script
4018 (home-page "https://pagure.io/libaio")
4019 (synopsis "Linux-native asynchronous I/O access library")
4020 (description
4021 "This library enables userspace to use Linux kernel asynchronous I/O
4022 system calls, important for the performance of databases and other advanced
4023 applications.")
4024 (license license:lgpl2.1+)))
4025
4026 (define-public blktrace
4027 ;; Take a newer commit to get the fix for CVE-2018-10689.
4028 (let ((commit "db4f6340e04716285ea56fe26d76381c3adabe58")
4029 (revision "1"))
4030 (package
4031 (name "blktrace")
4032 (version (git-version "1.2.0" revision commit))
4033 (home-page
4034 "https://git.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git")
4035 (source (origin
4036 (method git-fetch)
4037 (uri (git-reference
4038 (url home-page)
4039 (commit commit)))
4040 (sha256
4041 (base32 "0ah7xn4qnx09k6bm39p69av7d0c8cl6863drv6a1nf914sq1kpgp"))
4042 (file-name (git-file-name name version))))
4043 (build-system gnu-build-system)
4044 (arguments
4045 '(#:make-flags
4046 (list "CC=gcc" (string-append "prefix=" %output))
4047 #:tests? #f ; no tests
4048 #:phases
4049 (modify-phases %standard-phases
4050 (delete 'configure) ; no configure script
4051 (add-after 'unpack 'fix-gnuplot-path
4052 (lambda* (#:key inputs #:allow-other-keys)
4053 (let ((gnuplot (assoc-ref inputs "gnuplot")))
4054 (substitute* "btt/bno_plot.py"
4055 (("gnuplot %s")
4056 (string-append gnuplot "/bin/gnuplot %s")))
4057 #t))))))
4058 (inputs
4059 `(("libaio" ,libaio)
4060 ("gnuplot" ,gnuplot)
4061 ("python" ,python-wrapper))) ;for 'bno_plot.py'
4062 (synopsis "Block layer IO tracing mechanism")
4063 (description "Blktrace is a block layer IO tracing mechanism which provides
4064 detailed information about request queue operations to user space. It extracts
4065 event traces from the kernel (via the relaying through the debug file system).")
4066 (license license:gpl2))))
4067
4068 (define-public sbc
4069 (package
4070 (name "sbc")
4071 (version "1.4")
4072 (source (origin
4073 (method url-fetch)
4074 (uri (string-append "mirror://kernel.org/linux/bluetooth/sbc-"
4075 version ".tar.xz"))
4076 (sha256
4077 (base32
4078 "1jal98pnrjkzxlkiqy0ykh4qmgnydz9bmsp1jn581p5kddpg92si"))))
4079 (build-system gnu-build-system)
4080 (inputs
4081 `(("libsndfile" ,libsndfile)))
4082 (native-inputs
4083 `(("pkg-config" ,pkg-config)))
4084 (home-page "https://www.kernel.org/pub/linux/bluetooth/")
4085 (synopsis "Bluetooth subband audio codec")
4086 (description
4087 "The SBC is a digital audio encoder and decoder used to transfer data to
4088 Bluetooth audio output devices like headphones or loudspeakers.")
4089 (license license:gpl2+)))
4090
4091 (define-public bluez
4092 (package
4093 (name "bluez")
4094 (replacement bluez/fixed)
4095 (version "5.53")
4096 (source (origin
4097 (method url-fetch)
4098 (uri (string-append
4099 "mirror://kernel.org/linux/bluetooth/bluez-"
4100 version ".tar.xz"))
4101 (sha256
4102 (base32
4103 "1g1qg6dz6hl3csrmz75ixr12lwv836hq3ckb259svvrg62l2vaiq"))))
4104 (build-system gnu-build-system)
4105 (arguments
4106 `(#:configure-flags
4107 (let ((out (assoc-ref %outputs "out")))
4108 (list "--sysconfdir=/etc"
4109 "--localstatedir=/var"
4110 "--enable-library"
4111 "--disable-systemd"
4112 ;; Install dbus/udev files to the correct location.
4113 (string-append "--with-dbusconfdir=" out "/etc")
4114 (string-append "--with-udevdir=" out "/lib/udev")))
4115 #:phases
4116 (modify-phases %standard-phases
4117 ;; Test unit/test-gatt fails unpredictably. Seems to be a timing
4118 ;; issue (discussion on upstream mailing list:
4119 ;; https://marc.info/?t=149578476300002&r=1&w=2)
4120 (add-before 'check 'skip-wonky-test
4121 (lambda _
4122 (substitute* "unit/test-gatt.c"
4123 (("tester_init\\(&argc, &argv\\);") "return 77;"))
4124 #t))
4125 (add-after 'install 'post-install
4126 (lambda* (#:key inputs outputs #:allow-other-keys)
4127 (let* ((out (assoc-ref outputs "out"))
4128 (servicedir (string-append out "/share/dbus-1/services"))
4129 (service "obexd/src/org.bluez.obex.service")
4130 (rule (string-append
4131 out "/lib/udev/rules.d/97-hid2hci.rules")))
4132 ;; Install the obex dbus service file.
4133 (substitute* service
4134 (("/bin/false")
4135 (string-append out "/libexec/bluetooth/obexd")))
4136 (install-file service servicedir)
4137 ;; Fix paths in the udev rule.
4138 (substitute* rule
4139 (("hid2hci --method")
4140 (string-append out "/lib/udev/hid2hci --method"))
4141 (("/sbin/udevadm")
4142 (string-append (assoc-ref inputs "eudev") "/bin/udevadm")))
4143 #t))))))
4144 (native-inputs
4145 `(("pkg-config" ,pkg-config)
4146 ("gettext" ,gettext-minimal)))
4147 (inputs
4148 `(("glib" ,glib)
4149 ("dbus" ,dbus)
4150 ("eudev" ,eudev)
4151 ("libical" ,libical)
4152 ("readline" ,readline)))
4153 (home-page "http://www.bluez.org/")
4154 (synopsis "Linux Bluetooth protocol stack")
4155 (description
4156 "BlueZ provides support for the core Bluetooth layers and protocols. It
4157 is flexible, efficient and uses a modular implementation.")
4158 (license license:gpl2+)))
4159
4160 (define bluez/fixed
4161 (package
4162 (inherit bluez)
4163 (source (origin
4164 (inherit (package-source bluez))
4165 (patches (append (origin-patches (package-source bluez))
4166 (search-patches "bluez-CVE-2020-0556.patch")))))))
4167
4168 (define-public fuse-exfat
4169 (package
4170 (name "fuse-exfat")
4171 (version "1.3.0")
4172 (source (origin
4173 (method url-fetch)
4174 (uri (string-append
4175 "https://github.com/relan/exfat/releases/download/v"
4176 version "/" name "-" version ".tar.gz"))
4177 (sha256
4178 (base32
4179 "1lz00q8g4590mrdqmf13ba1s9zrqq645ymgm5p9y99ad0qv22r87"))))
4180 (build-system gnu-build-system)
4181 (native-inputs
4182 `(("pkg-config" ,pkg-config)))
4183 (inputs
4184 `(("fuse" ,fuse)))
4185 (home-page "https://github.com/relan/exfat")
4186 (synopsis "Mount exFAT file systems")
4187 (description
4188 "This package provides a FUSE-based file system that provides read and
4189 write access to exFAT devices.")
4190 (license license:gpl2+)))
4191
4192 (define-public fuseiso
4193 (package
4194 (name "fuseiso")
4195 (version "20070708")
4196 (source (origin
4197 (method url-fetch)
4198 (uri (string-append "mirror://sourceforge/fuseiso/fuseiso/"
4199 version "/fuseiso-" version ".tar.bz2"))
4200 (sha256
4201 (base32
4202 "127xql52dcdhmh7s5m9xc6q39jdlj3zhbjar1j821kb6gl3jw94b"))))
4203 (build-system gnu-build-system)
4204 (native-inputs
4205 `(("pkg-config" ,pkg-config)))
4206 (inputs
4207 `(("fuse" ,fuse)
4208 ("glib" ,glib)
4209 ("zlib" ,zlib)))
4210 (home-page "https://sourceforge.net/projects/fuseiso/")
4211 (synopsis "Mount ISO file system images")
4212 (description
4213 "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,
4214 .bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock
4215 Ridge, Joliet, and zisofs.")
4216 (license license:gpl2)))
4217
4218 (define-public gpm
4219 (package
4220 (name "gpm")
4221 (version "1.20.7")
4222 (source (origin
4223 (method url-fetch)
4224 (uri (string-append
4225 "http://www.nico.schottelius.org/software/gpm/archives/gpm-"
4226 version ".tar.bz2"))
4227 (patches (search-patches "gpm-glibc-2.26.patch"))
4228 (sha256
4229 (base32
4230 "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh"))))
4231 (build-system gnu-build-system)
4232 (arguments
4233 '(#:phases (modify-phases %standard-phases
4234 (replace 'bootstrap
4235 (lambda _
4236 ;; The tarball was not generated with 'make dist' so we
4237 ;; need to bootstrap things ourselves.
4238 (substitute* "autogen.sh"
4239 (("/bin/sh") (which "sh")))
4240 (invoke "./autogen.sh")
4241 (patch-makefile-SHELL "Makefile.include.in")
4242 #t)))
4243
4244 ;; Make sure programs find libgpm.so.
4245 #:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
4246 (assoc-ref %outputs "out")
4247 "/lib"))))
4248 (native-inputs
4249 `(("texinfo" ,texinfo)
4250 ("bison" ,bison)
4251 ("flex" ,flex)
4252 ("autoconf" ,autoconf)
4253 ("automake" ,automake)
4254 ("libtool" ,libtool)))
4255 (home-page "http://www.nico.schottelius.org/software/gpm/")
4256 (synopsis "Mouse support for the Linux console")
4257 (description
4258 "The GPM (general-purpose mouse) daemon is a mouse server for
4259 applications running on the Linux console. It allows users to select items
4260 and copy/paste text in the console and in xterm.")
4261 (license license:gpl2+)))
4262
4263 (define-public btrfs-progs
4264 (package
4265 (name "btrfs-progs")
4266 (version "5.4.1")
4267 (source (origin
4268 (method url-fetch)
4269 (uri (string-append "mirror://kernel.org/linux/kernel/"
4270 "people/kdave/btrfs-progs/"
4271 "btrfs-progs-v" version ".tar.xz"))
4272 (sha256
4273 (base32
4274 "0scxg9p6z0wss92gmv5a8yxdmr8x449kb5v3bfnvs26n92r7zq7k"))))
4275 (build-system gnu-build-system)
4276 (outputs '("out"
4277 "static")) ; static versions of the binaries in "out"
4278 (arguments
4279 '(#:phases (modify-phases %standard-phases
4280 (add-after 'unpack 'patch-makefile
4281 (lambda* (#:key outputs #:allow-other-keys)
4282 (substitute* "Makefile"
4283 (("\\$\\(DESTDIR\\)\\$\\(udevruledir\\)")
4284 (string-append (assoc-ref outputs "out")
4285 "/lib/udev/rules.d")))
4286 #t))
4287 (add-after 'build 'build-static
4288 (lambda _ (invoke "make" "static")))
4289 (add-after 'install 'install-bash-completion
4290 (lambda* (#:key outputs #:allow-other-keys)
4291 (let* ((out (assoc-ref outputs "out"))
4292 (bashcomp (string-append out "/etc/bash_completion.d")))
4293 (mkdir-p bashcomp)
4294 (copy-file "btrfs-completion"
4295 (string-append bashcomp "/btrfs"))
4296 #t)))
4297 (add-after 'install 'install-static
4298 (let ((staticbin (string-append (assoc-ref %outputs "static")
4299 "/bin")))
4300 (lambda _
4301 (invoke "make"
4302 (string-append "bindir=" staticbin)
4303 "install-static")))))
4304 #:tests? #f ; XXX: require the 'btrfs' kernel module.
4305 #:test-target "test"
4306 #:parallel-tests? #f)) ; tests fail when run in parallel
4307 (inputs `(("e2fsprogs" ,e2fsprogs) ; for btrfs-convert
4308 ("libblkid" ,util-linux)
4309 ("libblkid:static" ,util-linux "static")
4310 ("libuuid" ,util-linux)
4311 ("libuuid:static" ,util-linux "static")
4312 ("lzo" ,lzo)
4313 ("zlib" ,zlib)
4314 ("zlib:static" ,zlib "static")
4315 ("zstd" ,zstd "lib")
4316 ("zstd:static" ,zstd "static")))
4317 (native-inputs `(("pkg-config" ,pkg-config)
4318 ("asciidoc" ,asciidoc)
4319 ("python" ,python)
4320 ("xmlto" ,xmlto)
4321 ;; For building documentation.
4322 ("libxml2" ,libxml2)
4323 ("docbook-xsl" ,docbook-xsl)
4324 ;; For tests.
4325 ("acl" ,acl)
4326 ("which" ,which)
4327 ("dmsetup" ,lvm2)
4328 ("udevadm" ,eudev)
4329 ;; The tests need 'grep' with perl regexp support.
4330 ("grep" ,grep)))
4331 (home-page "https://btrfs.wiki.kernel.org/index.php/Main_Page")
4332 (synopsis "Create and manage btrfs copy-on-write file systems")
4333 (description "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux
4334 aimed at implementing advanced features while focusing on fault tolerance,
4335 repair and easy administration.")
4336 ;; GPL2+: crc32.c, radix-tree.c, raid6.c, rbtree.c.
4337 ;; GPL2: Everything else.
4338 (license (list license:gpl2 license:gpl2+))))
4339
4340 (define-public btrfs-progs/static
4341 (package
4342 (name "btrfs-progs-static")
4343 (version (package-version btrfs-progs))
4344 (source #f)
4345 (build-system trivial-build-system)
4346 (inputs
4347 `(("btrfs-progs:static" ,btrfs-progs "static")))
4348 (arguments
4349 `(#:modules ((guix build utils))
4350 #:builder
4351 (begin
4352 (use-modules (guix build utils)
4353 (ice-9 ftw)
4354 (srfi srfi-26))
4355
4356 (let* ((btrfs (assoc-ref %build-inputs "btrfs-progs:static"))
4357 (out (assoc-ref %outputs "out"))
4358 (source (string-append btrfs "/bin/btrfs.static"))
4359 (target (string-append out "/bin/btrfs")))
4360 (mkdir-p (dirname target))
4361 (copy-file source target)
4362 (remove-store-references target)
4363 (chmod target #o555)
4364 #t))))
4365 (home-page (package-home-page btrfs-progs))
4366 (synopsis "Statically-linked btrfs command from btrfs-progs")
4367 (description "This package provides the statically-linked @command{btrfs}
4368 from the btrfs-progs package. It is meant to be used in initrds.")
4369 (license (package-license btrfs-progs))))
4370
4371 (define-public compsize
4372 (package
4373 (name "compsize")
4374 (version "1.3")
4375 (home-page "https://github.com/kilobyte/compsize")
4376 (source (origin
4377 (method git-fetch)
4378 (uri (git-reference
4379 (url home-page)
4380 (commit (string-append "v" version))))
4381 (sha256
4382 (base32 "1c69whla844nwis30jxbj00zkpiw3ccndhkmzjii8av5358mjn43"))
4383 (file-name (git-file-name name version))))
4384 (build-system gnu-build-system)
4385 (inputs
4386 `(("btrfs-progs" ,btrfs-progs)))
4387 (arguments
4388 `(#:tests? #f ; No tests.
4389 #:make-flags (list "CC=gcc")
4390 #:phases
4391 (modify-phases %standard-phases
4392 (delete 'configure)
4393 (replace 'install
4394 (lambda* (#:key outputs #:allow-other-keys)
4395 (let ((out (assoc-ref outputs "out")))
4396 (install-file "compsize" (string-append out "/bin"))
4397 (install-file "compsize.8" (string-append out "/share/man/man8"))))))))
4398 (synopsis "Find compression type/ratio on Btrfs files")
4399 (description "@command{compsize} takes a list of files (given as
4400 arguments) on a Btrfs file system and measures used compression types and
4401 effective compression ratio, producing a report.
4402
4403 A directory has no extents but has a (recursive) list of files. A non-regular
4404 file is silently ignored.
4405
4406 As it makes no sense to talk about compression ratio of a partial extent,
4407 every referenced extent is counted whole, exactly once -- no matter if you use
4408 only a few bytes of a 1GB extent or reflink it a thousand times. Thus, the
4409 uncompressed size will not match the number given by @command{tar} or
4410 @command{du}. On the other hand, the space used should be accurate (although
4411 obviously it can be shared with files outside our set).")
4412 (license license:gpl2+)))
4413
4414 (define-public f2fs-tools-1.7
4415 (package
4416 (name "f2fs-tools")
4417 (version "1.7.0")
4418 (source (origin
4419 (method url-fetch)
4420 (uri (string-append
4421 "https://git.kernel.org/cgit/linux/kernel/git/jaegeuk"
4422 "/f2fs-tools.git/snapshot/f2fs-tools-" version ".tar.gz"))
4423 (sha256
4424 (base32
4425 "1m6bn1ibq0p53m0n97il91xqgjgn2pzlz74lb5bfzassx7159m1k"))))
4426
4427 (build-system gnu-build-system)
4428 (arguments
4429 `(#:phases
4430 (modify-phases %standard-phases
4431 (add-after 'install 'install-headers
4432 (lambda* (#:key outputs #:allow-other-keys)
4433 (let* ((out (assoc-ref outputs "out"))
4434 (out-include (string-append out "/include")))
4435 (install-file "include/f2fs_fs.h" out-include)
4436 (install-file "mkfs/f2fs_format_utils.h" out-include)
4437 #t))))))
4438 (native-inputs
4439 `(("autoconf" ,autoconf)
4440 ("automake" ,automake)
4441 ("libtool" ,libtool)
4442 ("pkg-config" ,pkg-config)))
4443 (inputs
4444 `(("libuuid" ,util-linux)
4445 ("libselinux" ,libselinux)))
4446 (home-page "https://f2fs.wiki.kernel.org/")
4447 (synopsis "Userland tools for f2fs")
4448 (description
4449 "F2FS, the Flash-Friendly File System, is a modern file system
4450 designed to be fast and durable on flash devices such as solid-state
4451 disks and SD cards. This package provides the userland utilities.")
4452 ;; The formatting utility, libf2fs and include/f2fs_fs.h is dual
4453 ;; GPL2/LGPL2.1, everything else is GPL2 only. See 'COPYING'.
4454 (license (list license:gpl2 license:lgpl2.1))))
4455
4456 (define-public f2fs-tools
4457 (package
4458 (inherit f2fs-tools-1.7)
4459 (name "f2fs-tools")
4460 (version "1.13.0")
4461 (source (origin
4462 (method url-fetch)
4463 (uri (string-append
4464 "https://git.kernel.org/cgit/linux/kernel/git/jaegeuk"
4465 "/f2fs-tools.git/snapshot/f2fs-tools-" version ".tar.gz"))
4466 (sha256
4467 (base32
4468 "0z9c0y3qq75iyqknl5k0v7v46l8c3pcifpqb0yqalrs24blkm7dk"))))
4469 (inputs
4470 `(("libuuid" ,util-linux)))))
4471
4472 (define-public freefall
4473 (package
4474 (name "freefall")
4475 (version (package-version linux-libre))
4476 (source (package-source linux-libre))
4477 (build-system gnu-build-system)
4478 (arguments
4479 '(#:phases (modify-phases %standard-phases
4480 (add-after 'unpack 'enter-subdirectory
4481 (lambda _
4482 (chdir "tools/laptop/freefall")
4483 #t))
4484 (delete 'configure)
4485 (add-before 'build 'increase-timeout
4486 (lambda _
4487 ;; The default of 2 seconds is too low: it assumes an
4488 ;; open lid and AC power without actually checking.
4489 (substitute* "freefall.c"
4490 (("alarm\\(2\\)") "alarm(5)"))
4491 #t)))
4492 #:make-flags (list (string-append "PREFIX="
4493 (assoc-ref %outputs "out"))
4494 "CC=gcc")
4495 #:tests? #f)) ;no tests
4496 (home-page (package-home-page linux-libre))
4497 (synopsis "Free-fall protection for spinning laptop hard drives")
4498 (description
4499 "Prevents shock damage to the internal spinning hard drive(s) of some
4500 HP and Dell laptops. When sudden movement is detected, all input/output
4501 operations on the drive are suspended and its heads are parked on the ramp,
4502 where they are less likely to cause damage to the spinning disc. Requires a
4503 drive that supports the ATA/ATAPI-7 IDLE IMMEDIATE command with unload
4504 feature, and a laptop with an accelerometer. It has no effect on SSDs.")
4505 (license license:gpl2)))
4506
4507 (define-public thinkfan
4508 (package
4509 (name "thinkfan")
4510 (version "1.0.2")
4511 (source
4512 (origin
4513 (method git-fetch)
4514 (uri (git-reference
4515 (url "https://github.com/vmatare/thinkfan.git")
4516 (commit version)))
4517 (file-name (git-file-name name version))
4518 (sha256
4519 (base32 "107vw0962hrwva3wra9n3hxlbfzg82ldc10qssv3dspja88g8psr"))))
4520 (build-system cmake-build-system)
4521 (arguments
4522 `(#:modules ((guix build cmake-build-system)
4523 (guix build utils)
4524 (srfi srfi-26))
4525 #:tests? #f ; no test target
4526 #:configure-flags
4527 ;; Enable reading temperatures from hard disks via S.M.A.R.T.
4528 ;; Upstream ‘defaults to OFF because libatasmart seems to be horribly
4529 ;; inefficient’.
4530 `("-DUSE_ATASMART:BOOL=ON")
4531 #:phases
4532 (modify-phases %standard-phases
4533 (add-after 'unpack 'create-init-scripts
4534 ;; CMakeLists.txt relies on build-time symptoms of OpenRC and
4535 ;; systemd to patch and install their service files. Fake their
4536 ;; presence rather than duplicating the build system below. Leave
4537 ;; things like ‘/bin/kill’ because they're not worth a dependency.
4538 ;; The sysvinit needs manual patching, but since upstream doesn't
4539 ;; even provide the option to install it: don't.
4540 (lambda* (#:key outputs #:allow-other-keys)
4541 (let* ((out (assoc-ref outputs "out"))
4542 (share (string-append out "/share/" ,name)))
4543 (substitute* "CMakeLists.txt"
4544 (("pkg_check_modules\\((OPENRC|SYSTEMD) .*" _ package)
4545 (format "option(~a_FOUND \"Faked\" ON)\n" package))
4546 ;; That was easy! Now we just need to fix the destinations.
4547 (("/etc" directory)
4548 (string-append out directory)))
4549 #t))))))
4550 (native-inputs
4551 `(("pkg-config" ,pkg-config)))
4552 (inputs
4553 `(("libatasmart" ,libatasmart)
4554 ("yaml-cpp" ,yaml-cpp)))
4555 (home-page "http://thinkfan.sourceforge.net/")
4556 (synopsis "Simple fan control program")
4557 (description
4558 "Thinkfan is a simple fan control program. It reads temperatures,
4559 checks them against configured limits and switches to appropriate (also
4560 pre-configured) fan level. It requires a working @code{thinkpad_acpi} or any
4561 other @code{hwmon} driver that enables temperature reading and fan control
4562 from userspace.")
4563 (license license:gpl3+)))
4564
4565 (define-public tpacpi-bat
4566 (package
4567 (name "tpacpi-bat")
4568 (version "3.1")
4569 (source
4570 (origin
4571 (method git-fetch)
4572 (uri (git-reference
4573 (url "https://github.com/teleshoes/tpacpi-bat.git")
4574 (commit (string-append "v" version))))
4575 (file-name (git-file-name name version))
4576 (sha256
4577 (base32 "0wbaz34z99gqx721alh5vmpxpj2yxg3x9m8jqyivfi1wfpwc2nd5"))))
4578 (build-system gnu-build-system)
4579 (arguments
4580 `(#:tests? #f ; no test target
4581 #:phases
4582 (modify-phases %standard-phases
4583 (add-after 'unpack 'refer-to-inputs
4584 (lambda _
4585 (substitute* "tpacpi-bat"
4586 (("cat ")
4587 (format "~a " (which "cat")))
4588 ;; tpacpi-bat modprobes the acpi_call kernel module if it's not
4589 ;; loaded. That's the administrator's prerogative; disable it.
4590 (("system \"(modprobe .*)\"" _ match)
4591 (format "die \"Please run ‘~a’ first.\\n\"" match)))
4592 #t))
4593 (delete 'configure) ; nothing to configure
4594 (delete 'build) ; nothing to build
4595 (replace 'install
4596 (lambda* (#:key outputs #:allow-other-keys)
4597 (let* ((out (assoc-ref outputs "out"))
4598 (bin (string-append out "/bin"))
4599 (doc (string-append out "/share/doc/" ,name "-" ,version)))
4600 (install-file "tpacpi-bat" bin)
4601
4602 ;; There's no man page. Install other forms of documentation.
4603 (for-each (lambda (file)
4604 (let ((target (string-append doc "/" file)))
4605 (mkdir-p (dirname target))
4606 (copy-recursively file target)))
4607 (list "battery_asl" "examples" "README.md"))
4608 #t))))))
4609 (inputs
4610 `(("perl" ,perl)))
4611 (home-page "https://github.com/teleshoes/tpacpi-bat")
4612 (synopsis "ThinkPad battery charge controller")
4613 (description
4614 "Tpacpi-bat is a command-line interface to control battery charging on
4615 @uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo
4616 ThinkPad models released after 2011}, starting with the xx20 series. It can
4617 query and set the thresholds at which one or both batteries will start and stop
4618 charging, inhibit charging batteries for a set period of time, or force them to
4619 discharge when they otherwise would not.
4620
4621 This tool merely exposes ACPI calls provided by the @code{acpi_call} Linux
4622 kernel module provided by the @code{acpi-call-linux-module} package, which must
4623 be installed and loaded separately. Only the original vendor firmware is
4624 supported.")
4625 (license license:gpl3+)))
4626
4627 (define-public ntfs-3g
4628 (package
4629 (name "ntfs-3g")
4630 (version "2017.3.23")
4631 (source (origin
4632 (method url-fetch)
4633 (uri (string-append "https://tuxera.com/opensource/"
4634 "ntfs-3g_ntfsprogs-" version ".tgz"))
4635 (patches (search-patches "ntfs-3g-CVE-2019-9755.patch"))
4636 (sha256
4637 (base32
4638 "1mb228p80hv97pgk3myyvgp975r9mxq56c6bdn1n24kngcfh4niy"))
4639 (modules '((guix build utils)))
4640 (snippet '(begin
4641 ;; Install under $prefix.
4642 (substitute* '("src/Makefile.in" "ntfsprogs/Makefile.in")
4643 (("/sbin")
4644 "@sbindir@"))
4645 #t))))
4646 (build-system gnu-build-system)
4647 (inputs `(("util-linux" ,util-linux)
4648 ("fuse" ,fuse))) ;libuuid
4649 (native-inputs `(("pkg-config" ,pkg-config)))
4650 (arguments
4651 '(#:configure-flags (list "--exec-prefix=${prefix}"
4652 "--with-fuse=external" ;use our own FUSE
4653 "--enable-mount-helper"
4654 "--enable-posix-acls"
4655 "--enable-xattr-mappings")
4656 #:phases
4657 (modify-phases %standard-phases
4658 ;; If users install ntfs-3g, they probably want to make it the
4659 ;; default driver as well, so we opt for sensible defaults and link
4660 ;; mount.ntfs to mount.ntfs-3g. (libmount tries to run mount.ntfs to
4661 ;; mount NTFS file systems.)
4662 (add-after 'install 'install-link
4663 (lambda* (#:key outputs #:allow-other-keys)
4664 (let* ((out (assoc-ref outputs "out"))
4665 (sbin (string-append out "/sbin")))
4666 (symlink "mount.ntfs-3g"
4667 (string-append sbin "/mount.ntfs")))
4668 #t)))))
4669 (home-page "https://www.tuxera.com/community/open-source-ntfs-3g/")
4670 (synopsis "Read-write access to NTFS file systems")
4671 (description
4672 "NTFS-3G provides read-write access to NTFS file systems, which are
4673 commonly found on Microsoft Windows. It is implemented as a FUSE file system.
4674 The package provides additional NTFS tools.")
4675 (license license:gpl2+)))
4676
4677 (define-public rdma-core
4678 (package
4679 (name "rdma-core")
4680 (version "26.0")
4681 (source (origin
4682 (method url-fetch)
4683 (uri (string-append "https://github.com/linux-rdma/rdma-core"
4684 "/releases/download/v" version "/rdma-core-"
4685 version ".tar.gz"))
4686 (sha256
4687 (base32
4688 "14raqwx4pkzghiwkx1v0dq338f7xqqx8rnsxlpdnngvjy1p5l79j"))))
4689 (build-system cmake-build-system)
4690 (arguments
4691 `(#:tests? #f ; no tests
4692 ;; Upstream uses the "ninja" build system and encourage distros
4693 ;; to do the same for consistency. They also recommend using the
4694 ;; "Release" build type.
4695 #:build-type "Release"
4696 #:configure-flags (list "-GNinja"
4697
4698 (string-append "-DRST2MAN_EXECUTABLE="
4699 (assoc-ref %build-inputs
4700 "python-docutils")
4701 "/bin/rst2man.py")
4702
4703 ;; On some configurations, the
4704 ;; IB_USER_MAD_REGISTER_AGENT ioctl, which is
4705 ;; used by default, would return ENODEV. To
4706 ;; avoid that, use 'write' instead of ioctls,
4707 ;; as suggested in 'CMakeList.txt'.
4708 "-DIOCTL_MODE=write")
4709 #:phases
4710 (modify-phases %standard-phases
4711 (replace 'build
4712 (lambda _
4713 (invoke "ninja"
4714 "-j" (number->string (parallel-job-count)))))
4715 (replace 'install
4716 (lambda _
4717 (invoke "ninja" "install"))))))
4718 (native-inputs
4719 `(("ninja" ,ninja)
4720 ("pkg-config" ,pkg-config)
4721 ("python" ,python-wrapper)
4722 ("python-docutils" ,python-docutils))) ;for 'rst2man'
4723 (inputs
4724 `(("libnl" ,libnl)
4725 ("udev" ,eudev)))
4726 (home-page "https://github.com/linux-rdma/rdma-core")
4727 (synopsis "Utilities and libraries for working with RDMA devices")
4728 (description
4729 "This package provides userspace components for the InfiniBand
4730 subsystem of the Linux kernel. Specifically it contains userspace
4731 libraries for the following device nodes:
4732
4733 @enumerate
4734 @item @file{/dev/infiniband/uverbsX} (@code{libibverbs})
4735 @item @file{/dev/infiniband/rdma_cm} (@code{librdmacm})
4736 @item @file{/dev/infiniband/umadX} (@code{libibumad})
4737 @end enumerate
4738
4739 The following service daemons are also provided:
4740 @enumerate
4741 @item @code{srp_daemon} (for the @code{ib_srp} kernel module)
4742 @item @code{iwpmd} (for iWARP kernel providers)
4743 @item @code{ibacm} (for InfiniBand communication management assistant)
4744 @end enumerate")
4745 ;; All library code is dual licensed under GPL2 and a custom MIT
4746 ;; variant. The package also includes some components covered by
4747 ;; other licenses. Consult COPYING.md for full details.
4748 (license
4749 (list license:gpl2
4750 (license:x11-style "See COPYING.BSD_MIT in the distribution")
4751 license:bsd-2 ; Files referring to COPYING.BSD_FB
4752 license:cc0 ; most files in ccan/
4753 license:bsd-3)))) ; providers/hfi1verbs are dual GPL2/BSD-3
4754
4755 (define-public perftest
4756 (package
4757 (name "perftest")
4758 (version "4.4-0.4")
4759 (source
4760 (origin
4761 (method url-fetch)
4762 (uri (string-append "https://github.com/linux-rdma/perftest/releases/download/v"
4763 version "/perftest-" version ".g0927198.tar.gz"))
4764 (sha256
4765 (base32 "11ix4h0rrmqqyi84y55a9xnkvwsmwq0sywr46hvxzm4rqz4ma8vq"))))
4766 (build-system gnu-build-system)
4767 (arguments
4768 `(#:phases
4769 (modify-phases %standard-phases
4770 (add-after 'unpack 'patch-header-paths
4771 (lambda _
4772 (substitute* '("src/raw_ethernet_fs_rate.c"
4773 "src/raw_ethernet_resources.c"
4774 "src/raw_ethernet_resources.h"
4775 "src/raw_ethernet_send_burst_lat.c"
4776 "src/raw_ethernet_send_bw.c"
4777 "src/raw_ethernet_send_lat.c")
4778 (("/usr/include/netinet/ip.h") "netinet/ip.h"))
4779 #t)))))
4780 (inputs `(("rdma-core" ,rdma-core)))
4781 (home-page "https://github.com/linux-rdma/perftest/")
4782 (synopsis "Open Fabrics Enterprise Distribution (OFED) Performance Tests")
4783 (description "This is a collection of tests written over uverbs intended for
4784 use as a performance micro-benchmark. The tests may be used for hardware or
4785 software tuning as well as for functional testing.
4786
4787 The collection contains a set of bandwidth and latency benchmark such as:
4788 @enumerate
4789 @item Send - @code{ib_send_bw} and @code{ib_send_lat}
4790 @item RDMA Read - @code{ib_read_bw} and @code{ib_read_lat}
4791 @item RDMA Write - @code{ib_write_bw} and @code{ib_wriet_lat}
4792 @item RDMA Atomic - @code{ib_atomic_bw} and @code{ib_atomic_lat}
4793 @item Native Ethernet (when working with MOFED2) - @code{raw_ethernet_bw}, @code{raw_ethernet_lat}
4794 @end enumerate")
4795 (license license:gpl2)))
4796
4797 (define-public rng-tools
4798 (package
4799 (name "rng-tools")
4800 (home-page "https://github.com/nhorman/rng-tools")
4801 (version "6.9")
4802 (source (origin
4803 (method git-fetch)
4804 (uri (git-reference (url home-page)
4805 (commit (string-append "v" version))))
4806 (file-name (git-file-name name version))
4807 (sha256
4808 (base32
4809 "065jf26s8zkicb95zc9ilksjdq9gqrh5vcx3mhi6mypbnamn6w98"))))
4810 (build-system gnu-build-system)
4811 (arguments
4812 `(;; Avoid using OpenSSL, curl, and libxml2, reducing the closure by 166 MiB.
4813 #:configure-flags '("--without-nistbeacon"
4814 "--without-pkcs11")))
4815 (native-inputs
4816 `(("autoconf" ,autoconf)
4817 ("automake" ,automake)
4818 ("pkg-config" ,pkg-config)))
4819 (inputs
4820 `(("libsysfs" ,sysfsutils)))
4821 (synopsis "Random number generator daemon")
4822 (description
4823 "Monitor a hardware random number generator, and supply entropy
4824 from that to the system kernel's @file{/dev/random} machinery.")
4825 ;; The source package is offered under the GPL2+, but the files
4826 ;; 'rngd_rdrand.c' and 'rdrand_asm.S' are only available under the GPL2.
4827 (license (list license:gpl2 license:gpl2+))))
4828
4829 (define-public cpupower
4830 (package
4831 (name "cpupower")
4832 (version (package-version linux-libre))
4833 (source (package-source linux-libre))
4834 (build-system gnu-build-system)
4835 (arguments
4836 '(#:phases (modify-phases %standard-phases
4837 (add-after 'unpack 'enter-subdirectory
4838 (lambda _
4839 (chdir "tools/power/cpupower")
4840 #t))
4841 (delete 'configure)
4842 (add-before 'build 'fix-makefiles
4843 (lambda _
4844 (substitute* "Makefile"
4845 (("/usr/") "/")
4846 (("/bin/(install|pwd)" _ command) command))
4847 (substitute* "bench/Makefile"
4848 (("\\$\\(CC\\) -o") "$(CC) $(LDFLAGS) -o"))
4849 #t)))
4850 #:make-flags (let ((out (assoc-ref %outputs "out")))
4851 (list (string-append "DESTDIR=" out)
4852 (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
4853 "libdir=/lib"
4854 "docdir=/share/doc/cpupower"
4855 "confdir=$(docdir)/examples"
4856 ;; The Makefile recommends the following changes
4857 "DEBUG=false"
4858 "PACKAGE_BUGREPORT=bug-guix@gnu.org"))
4859 #:tests? #f)) ;no tests
4860 (native-inputs `(("gettext" ,gettext-minimal)))
4861 (inputs `(("pciutils" ,pciutils)))
4862 (home-page (package-home-page linux-libre))
4863 (synopsis "CPU frequency and voltage scaling tools for Linux")
4864 (description
4865 "cpupower is a set of user-space tools that use the cpufreq feature of the
4866 Linux kernel to retrieve and control processor features related to power saving,
4867 such as frequency and voltage scaling.")
4868 (license license:gpl2)))
4869
4870 (define-public x86-energy-perf-policy
4871 (package
4872 (name "x86-energy-perf-policy")
4873 (version (package-version linux-libre))
4874 (source (package-source linux-libre))
4875 (build-system gnu-build-system)
4876 (arguments
4877 '(#:tests? #f
4878 #:phases
4879 (modify-phases %standard-phases
4880 (add-after 'unpack 'enter-subdirectory
4881 (lambda _
4882 (chdir "tools/power/x86/x86_energy_perf_policy")
4883 #t))
4884 (delete 'configure)
4885 (add-before 'build 'fix-makefile
4886 (lambda _
4887 (substitute* "Makefile" (("/usr") ""))
4888 #t)))
4889 #:make-flags
4890 (let ((out (assoc-ref %outputs "out")))
4891 (list (string-append "DESTDIR=" out)
4892 (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")))))
4893 (supported-systems '("i686-linux" "x86_64-linux"))
4894 (home-page (package-home-page linux-libre))
4895 (synopsis "Display and update Intel-CPU energy-performance policy")
4896 (description
4897 "@command{x86_energy_perf_policy} displays and updates energy-performance
4898 policy settings specific to Intel Architecture Processors. Settings are
4899 accessed via Model Specific Register (MSR) updates, no matter if the Linux
4900 cpufreq sub-system is enabled or not.")
4901 (license license:gpl2)))
4902
4903 (define-public haveged
4904 (package
4905 (name "haveged")
4906 (version "1.9.8")
4907 (source
4908 (origin
4909 (method git-fetch)
4910 (uri (git-reference
4911 (url "https://github.com/jirka-h/haveged.git")
4912 (commit (string-append "v" version))))
4913 (file-name (git-file-name name version))
4914 (sha256
4915 (base32 "1znr58fb3faq4nmrvc3c5whkc1f3chivm4vhicdwr9pdsyqqsd51"))))
4916 (build-system gnu-build-system)
4917 (home-page "https://www.issihosts.com/haveged")
4918 (synopsis "Entropy source for the Linux random number generator")
4919 (description
4920 "haveged generates an unpredictable stream of random numbers for use by
4921 Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's
4922 standard mechanisms for filling the entropy pool may not be sufficient for
4923 systems with high needs or limited user interaction, such as headless servers.
4924
4925 @command{haveged} runs as a privileged daemon, harvesting randomness from the
4926 indirect effects of hardware events on hidden processor state using the
4927 @acronym{HAVEGE, HArdware Volatile Entropy Gathering and Expansion} algorithm.
4928 It tunes itself to its environment and provides the same built-in test suite
4929 for the output stream as used on certified hardware security devices.
4930
4931 The quality of the randomness produced by this algorithm has not been proven.
4932 It is recommended to run it together with another entropy source like rngd, and
4933 not as a replacement for it.")
4934 (license (list (license:non-copyleft "file://nist/mconf.h")
4935 (license:non-copyleft "file://nist/packtest.c")
4936 license:public-domain ; nist/dfft.c
4937 license:gpl3+)))) ; everything else
4938
4939 (define-public ecryptfs-utils
4940 (package
4941 (name "ecryptfs-utils")
4942 (version "111")
4943 (source
4944 (origin
4945 (method url-fetch)
4946 (uri (string-append "https://launchpad.net/ecryptfs/trunk/"
4947 version "/+download/ecryptfs-utils_"
4948 version ".orig.tar.gz"))
4949 (sha256
4950 (base32
4951 "0zwq19siiwf09h7lwa7n7mgmrr8cxifp45lmwgcfr8c1gviv6b0i"))))
4952 (build-system gnu-build-system)
4953 (arguments
4954 `(#:configure-flags (list "--disable-pywrap")
4955 #:phases
4956 (modify-phases %standard-phases
4957 (add-after 'patch-source-shebangs 'patch-hardcoded-paths
4958 (lambda* (#:key inputs outputs #:allow-other-keys)
4959 (let ((out (assoc-ref outputs "out"))
4960 (utils-linux (assoc-ref inputs "utils-linux"))
4961 (cryptsetup (assoc-ref inputs "cryptsetup"))
4962 (linux-pam (assoc-ref inputs "linux-pam"))
4963 (lvm2 (assoc-ref inputs "lvm2")))
4964 (substitute* '("src/utils/ecryptfs-mount-private"
4965 "src/utils/ecryptfs-umount-private"
4966 "src/utils/ecryptfs-setup-private"
4967 "src/utils/ecryptfs-setup-swap"
4968 "src/utils/mount.ecryptfs.c"
4969 "src/utils/umount.ecryptfs.c"
4970 "src/pam_ecryptfs/pam_ecryptfs.c"
4971 "src/desktop/ecryptfs-mount-private.desktop.in"
4972 "src/desktop/ecryptfs-setup-private.desktop.in")
4973 (("/bin/mount")
4974 (string-append utils-linux "/bin/mount"))
4975 (("/bin/umount")
4976 (string-append utils-linux "/bin/umount"))
4977 (("/sbin/mount.ecryptfs_private")
4978 (string-append out "/sbin/mount.ecryptfs_private"))
4979 (("/sbin/umount.ecryptfs_private")
4980 (string-append out "/sbin/umount.ecryptfs_private"))
4981 (("/usr/bin/ecryptfs-mount-private")
4982 (string-append out "/bin/ecryptfs-mount-private"))
4983 (("/usr/bin/ecryptfs-rewrite-file")
4984 (string-append out "/bin/ecryptfs-rewrite-file"))
4985 (("/usr/bin/ecryptfs-setup-private")
4986 (string-append out "/bin/ecryptfs-setup-private"))
4987 (("/sbin/cryptsetup")
4988 (string-append cryptsetup "/sbin/cryptsetup"))
4989 (("/sbin/unix_chkpwd")
4990 (string-append linux-pam "/sbin/unix_chkpwd"))
4991 (("/sbin/dmsetup")
4992 (string-append lvm2 "/sbin/dmsetup")))))))))
4993 (native-inputs
4994 `(("intltool" ,intltool)
4995 ("perl" ,perl) ; for pod2man
4996 ("pkg-config" ,pkg-config)))
4997 (inputs
4998 `(("keyutils" ,keyutils)
4999 ("linux-pam" ,linux-pam)
5000 ("utils-linux" ,util-linux)
5001 ("cryptsetup" ,cryptsetup)
5002 ("lvm2" ,lvm2)
5003 ("nss" ,nss)))
5004 (home-page "https://ecryptfs.org/")
5005 (synopsis "eCryptfs cryptographic file system utilities")
5006 (description
5007 "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.
5008 Each file's cryptographic meta-data is stored inside the file itself, along
5009 with the encrypted contents. This allows individual encrypted files to be
5010 copied between hosts and still be decrypted with the proper key. eCryptfs is a
5011 native Linux file system, and has been part of the Linux kernel since version
5012 2.6.19. This package contains the userland utilities to manage it.")
5013 ;; The files src/key_mod/ecryptfs_key_mod_{openssl,pkcs11_helper,tspi}.c
5014 ;; grant additional permission to link with OpenSSL.
5015 (license license:gpl2+)))
5016
5017 (define-public libnfsidmap
5018 (package
5019 (name "libnfsidmap")
5020 (version "0.27")
5021 (source
5022 (origin
5023 (method url-fetch)
5024 (uri (string-append "https://fedorapeople.org/~steved/"
5025 name "/" version "/" name "-" version ".tar.bz2"))
5026 (sha256
5027 (base32 "0bg2bcii424mf1bnp3fssr8jszbvhdxl7wvifm1yf6g596v8b8i5"))))
5028 (build-system gnu-build-system)
5029 (arguments
5030 `(#:configure-flags (list
5031 (string-append "--with-pluginpath="
5032 (assoc-ref %outputs "out")
5033 "/lib/libnfsidmap"))))
5034 (native-inputs
5035 `(("autoconf" ,autoconf))) ; 0.27 still needs autoheader
5036 (home-page
5037 "http://www.citi.umich.edu/projects/nfsv4/crossrealm/libnfsidmap_config.html")
5038 (synopsis "NFSv4 support library for name/ID mapping")
5039 (description "Libnfsidmap is a library holding mulitiple methods of
5040 mapping names to ids and visa versa, mainly for NFSv4. It provides an
5041 extensible array of mapping functions, currently consisting of two choices:
5042 the default @code{nsswitch} and the experimental @code{umich_ldap}.")
5043 (license (license:non-copyleft "file://COPYING"
5044 "See COPYING in the distribution."))))
5045
5046 (define-public module-init-tools
5047 (package
5048 (name "module-init-tools")
5049 (version "3.16")
5050 (source (origin
5051 (method url-fetch)
5052 (uri (string-append
5053 "mirror://kernel.org/linux/utils/kernel/module-init-tools/"
5054 "module-init-tools-" version ".tar.bz2"))
5055 (sha256
5056 (base32
5057 "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"))
5058 (patches (search-patches "module-init-tools-moduledir.patch"))))
5059 (build-system gnu-build-system)
5060 (arguments
5061 ;; FIXME: The upstream tarball lacks man pages, and building them would
5062 ;; require DocBook & co. We used to use Gentoo's pre-built man pages,
5063 ;; but they vanished. In the meantime, fake it.
5064 '(#:phases
5065 (modify-phases %standard-phases
5066 (add-before 'configure 'fake-docbook
5067 (lambda _
5068 (substitute* "Makefile.in"
5069 (("^DOCBOOKTOMAN.*$")
5070 "DOCBOOKTOMAN = true\n"))
5071 #t)))))
5072 (home-page "https://www.kernel.org/pub/linux/utils/kernel/module-init-tools/")
5073 (synopsis "Tools for loading and managing Linux kernel modules")
5074 (description
5075 "Tools for loading and managing Linux kernel modules, such as
5076 @code{modprobe}, @code{insmod}, @code{lsmod}, and more.")
5077 (license license:gpl2+)))
5078
5079 (define-public mcelog
5080 (package
5081 (name "mcelog")
5082 (version "168")
5083 (source (origin
5084 (method url-fetch)
5085 (uri (string-append "https://git.kernel.org/cgit/utils/cpu/mce/"
5086 "mcelog.git/snapshot/v" version ".tar.gz"))
5087 (sha256
5088 (base32
5089 "1c4faayg1gcm3002b2fdrfnv76z92mvfzccvx8w9crjp0d17sp24"))
5090 (file-name (string-append name "-" version ".tar.gz"))
5091 (modules '((guix build utils)))
5092 (snippet
5093 `(begin
5094 ;; The snapshots lack a .git directory,
5095 ;; breaking ‘git describe’.
5096 (substitute* "Makefile"
5097 (("\"unknown\"") (string-append "\"v" ,version "\"")))
5098 #t))))
5099 (build-system gnu-build-system)
5100 (arguments
5101 `(#:phases (modify-phases %standard-phases
5102 (delete 'configure)) ; no configure script
5103 #:make-flags (let ((out (assoc-ref %outputs "out")))
5104 (list "CC=gcc"
5105 (string-append "prefix=" out)
5106 (string-append "DOCDIR=" out "/share/doc/mcelog")
5107 "etcprefix=$(DOCDIR)/examples"))
5108 ;; The tests will only run as root on certain supported CPU models.
5109 #:tests? #f))
5110 (supported-systems (list "i686-linux" "x86_64-linux"))
5111 (home-page "https://mcelog.org/")
5112 (synopsis "Machine check monitor for x86 Linux systems")
5113 (description
5114 "The mcelog daemon is required by the Linux kernel to log memory, I/O, CPU,
5115 and other hardware errors on x86 systems. It can also perform user-defined
5116 tasks, such as bringing bad pages off-line, when configurable error thresholds
5117 are exceeded.")
5118 (license license:gpl2)))
5119
5120 (define-public mtd-utils
5121 (package
5122 (name "mtd-utils")
5123 (version "2.1.1")
5124 (source (origin
5125 (method url-fetch)
5126 (uri (string-append
5127 "ftp://ftp.infradead.org/pub/mtd-utils/"
5128 "mtd-utils-" version ".tar.bz2"))
5129 (sha256
5130 (base32
5131 "1lijl89l7hljx8xx70vrz9srd3h41v5gh4b0lvqnlv831yvyh5cd"))))
5132 (arguments
5133 '(#:configure-flags '("--enable-unit-tests")))
5134 (native-inputs
5135 `(("cmocka" ,cmocka)
5136 ("pkg-config" ,pkg-config)))
5137 (inputs
5138 `(("acl" ,acl) ; extended attributes (xattr)
5139 ("libuuid" ,util-linux)
5140 ("lzo" ,lzo)
5141 ("openssl" ,openssl) ; optional crypto support
5142 ("zlib" ,zlib)
5143 ("zstd" ,zstd "lib")))
5144 (build-system gnu-build-system)
5145 (synopsis "MTD Flash Storage Utilities")
5146 (description "This package provides utilities for testing, partitioning, etc
5147 of flash storage.")
5148 (home-page "http://www.linux-mtd.infradead.org/")
5149 (license
5150 (list license:gpl2 ; Almost everything is gpl2 or gpl2+
5151 license:mpl1.1 ; All ftl* files
5152 license:expat)))) ; libiniparser
5153
5154 (define-public libseccomp
5155 (package
5156 (name "libseccomp")
5157 (version "2.4.3")
5158 (source (origin
5159 (method url-fetch)
5160 (uri (string-append "https://github.com/seccomp/libseccomp/"
5161 "releases/download/v" version
5162 "/libseccomp-" version ".tar.gz"))
5163 (sha256
5164 (base32
5165 "07crwxqzvl5k2b90a47ii9wgvi09s9hsy5b5jddw9ylp351d25fg"))))
5166 (build-system gnu-build-system)
5167 (native-inputs
5168 `(("which" ,which)))
5169 (synopsis "Interface to Linux's seccomp syscall filtering mechanism")
5170 (description "The libseccomp library provides an easy to use, platform
5171 independent, interface to the Linux Kernel's syscall filtering mechanism. The
5172 libseccomp API is designed to abstract away the underlying BPF based syscall
5173 filter language and present a more conventional function-call based filtering
5174 interface that should be familiar to, and easily adopted by, application
5175 developers.")
5176 (home-page "https://github.com/seccomp/libseccomp")
5177 (license license:lgpl2.1)))
5178
5179 (define-public radeontop
5180 (package
5181 (name "radeontop")
5182 (version "1.2")
5183 (source
5184 (origin
5185 (method git-fetch)
5186 (uri (git-reference
5187 (url "https://github.com/clbr/radeontop.git")
5188 (commit (string-append "v" version))))
5189 (file-name (git-file-name name version))
5190 (sha256
5191 (base32 "1b1m30r2nfwqkajqw6m01xmfhlq83z1qylyijxg7962mp9x2k0gw"))))
5192 (build-system gnu-build-system)
5193 (arguments
5194 `(#:phases (modify-phases %standard-phases
5195 ;; getver.sh uses ‘git --describe’, isn't worth an extra git
5196 ;; dependency, and doesn't even work on release(!) tarballs.
5197 (add-after 'unpack 'report-correct-version
5198 (lambda _
5199 (substitute* "getver.sh"
5200 (("ver=unknown")
5201 (string-append "ver=" ,version)))
5202 #t))
5203 (delete 'configure)) ; no configure script
5204 #:make-flags (list "CC=gcc"
5205 (string-append "PREFIX=" %output))
5206 #:tests? #f)) ; no tests
5207 (native-inputs
5208 `(("gettext" ,gettext-minimal)
5209 ("pkg-config" ,pkg-config)))
5210 (inputs
5211 `(("libdrm" ,libdrm)
5212 ("libpciaccess" ,libpciaccess)
5213 ("libxcb" ,libxcb)
5214 ("ncurses" ,ncurses)))
5215 (home-page "https://github.com/clbr/radeontop/")
5216 (synopsis "Usage monitor for AMD Radeon graphics")
5217 (description "RadeonTop monitors resource consumption on supported AMD
5218 Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on
5219 a terminal or saved to a file for further processing. It measures both the
5220 activity of the GPU as a whole, which is also accurate during OpenCL
5221 computations, as well as separate component statistics that are only meaningful
5222 under OpenGL graphics workloads.")
5223 (license license:gpl3)))
5224
5225 (define-public efivar
5226 (package
5227 (name "efivar")
5228 (version "37")
5229 (source (origin
5230 (method url-fetch)
5231 (uri (string-append "https://github.com/rhboot/" name
5232 "/releases/download/" version "/" name
5233 "-" version ".tar.bz2"))
5234 (sha256
5235 (base32
5236 "17vvfivhsrszh7q39b6npjsrhrhsjf1cmmcpp3xrh6wh7ywzwrrw"))))
5237 (build-system gnu-build-system)
5238 (arguments
5239 `(;; Tests require a UEFI system and is not detected in the chroot.
5240 #:tests? #f
5241 #:make-flags (list (string-append "prefix=" %output)
5242 (string-append "libdir=" %output "/lib")
5243 "CC_FOR_BUILD=gcc"
5244 (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
5245 #:phases
5246 (modify-phases %standard-phases
5247 (delete 'configure)
5248 (add-before 'build 'kernel-headers-are-system-headers
5249 (lambda* (#:key inputs #:allow-other-keys)
5250 (let ((kernel-headers (assoc-ref inputs "kernel-headers")))
5251 ;; Make sure the kernel headers are treated as system headers
5252 ;; to suppress a conflict between "util.h" and <linux/fs.h>.
5253 (setenv "C_INCLUDE_PATH" (string-append kernel-headers "/include"))
5254 #t))))))
5255 (native-inputs
5256 `(("pkg-config" ,pkg-config)))
5257 (inputs
5258 `(("popt" ,popt)))
5259 (home-page "https://github.com/rhboot/efivar")
5260 (synopsis "Tool and library to manipulate EFI variables")
5261 (description "This package provides a library and a command line
5262 interface to the variable facility of UEFI boot firmware.")
5263 (license license:lgpl2.1+)))
5264
5265 (define-public efibootmgr
5266 (package
5267 (name "efibootmgr")
5268 (version "16")
5269 (source (origin
5270 (method url-fetch)
5271 (uri (string-append "https://github.com/rhinstaller/efibootmgr"
5272 "/releases/download/" version "/efibootmgr"
5273 "-" version ".tar.bz2"))
5274 (sha256
5275 (base32
5276 "0pzn67vxxaf7jna4cd0i4kqm60h04kb21hckksv9z82q9gxra1wm"))))
5277 (build-system gnu-build-system)
5278 (arguments
5279 `(#:tests? #f ;no tests
5280 #:make-flags (list (string-append "prefix=" %output)
5281 (string-append "libdir=" %output "/lib")
5282 ;; EFIDIR denotes a subdirectory relative to the
5283 ;; EFI System Partition where the loader will be
5284 ;; installed (known as OS_VENDOR in the code).
5285 ;; GRUB overrides this, as such it's only used if
5286 ;; nothing else is specified on the command line.
5287 "EFIDIR=gnu"
5288 ;; Treat kernel headers as system headers to prevent
5289 ;; warnings about conflicting types.
5290 (string-append "C_INCLUDE_PATH="
5291 (assoc-ref %build-inputs "kernel-headers")
5292 "/include"))
5293 #:phases (modify-phases %standard-phases (delete 'configure))))
5294 (native-inputs
5295 `(("pkg-config" ,pkg-config)))
5296 (inputs
5297 `(("efivar" ,efivar)
5298 ("popt" ,popt)))
5299 (home-page "https://github.com/rhinstaller/efibootmgr")
5300 (synopsis "Modify the Extensible Firmware Interface (EFI) boot manager")
5301 (description
5302 "@code{efibootmgr} is a user-space application to modify the Intel
5303 Extensible Firmware Interface (EFI) Boot Manager. This application can
5304 create and destroy boot entries, change the boot order, change the next
5305 running boot option, and more.")
5306 (license license:gpl2+)))
5307
5308 (define-public sysstat
5309 (package
5310 (name "sysstat")
5311 (version "12.3.1")
5312 (source (origin
5313 (method url-fetch)
5314 (uri (string-append "http://pagesperso-orange.fr/sebastien.godard/"
5315 "sysstat-" version ".tar.xz"))
5316 (sha256
5317 (base32
5318 "1hf1sy7akribmgavadqccxpy49yv0zfb3m81d2bj6jf8pyzwcrbq"))))
5319 (build-system gnu-build-system)
5320 (arguments
5321 `(#:tests? #f ; No test suite.
5322 ;; Without this flag, it tries to install the man pages with group 'root'
5323 ;; and fails because /etc/passwd lacks an entry for the root user.
5324 #:configure-flags
5325 (list "--disable-file-attr"
5326 (string-append "conf_dir=" (assoc-ref %outputs "out") "/etc"))
5327 #:phases
5328 (modify-phases %standard-phases
5329 ;; The build process tries to create '/var/lib/sa', so we skip that
5330 ;; instruction.
5331 (add-after 'build 'skip-touching-var
5332 (lambda _
5333 (substitute* "Makefile"
5334 (("mkdir -p \\$\\(DESTDIR\\)\\$\\(SA_DIR\\)")
5335 ""))
5336 #t)))))
5337 (home-page "http://sebastien.godard.pagesperso-orange.fr/")
5338 (synopsis "Performance monitoring tools for Linux")
5339 (description "The sysstat utilities are a collection of performance
5340 monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
5341 @code{tapestat}, @code{cifsiostat}, @code{pidstat}, @code{sar}, @code{sadc},
5342 @code{sadf} and @code{sa}.")
5343 (license license:gpl2+)))
5344
5345 (define-public light
5346 (package
5347 (name "light")
5348 (version "1.2.2")
5349 (source
5350 (origin
5351 (method git-fetch)
5352 (uri (git-reference
5353 (url "https://github.com/haikarainen/light.git")
5354 (commit (string-append "v" version))))
5355 (sha256
5356 (base32 "1a70zcf88ifsnwll486aicjnh48zisdf8f7vi34ihw61kdadsq9s"))
5357 (file-name (git-file-name name version))))
5358 (build-system gnu-build-system)
5359 (arguments
5360 `(#:phases
5361 (modify-phases %standard-phases
5362 (add-after 'unpack 'patch-udev-rules-absolute-path-bins
5363 (lambda* (#:key inputs #:allow-other-keys)
5364 (substitute* "90-backlight.rules"
5365 (("/bin/chgrp") (which "chgrp"))
5366 (("/bin/chmod") (which "chmod")))
5367 #t))
5368 (add-after 'install 'install-udev-rules
5369 (lambda* (#:key outputs #:allow-other-keys)
5370 (let ((out (assoc-ref outputs "out")))
5371 (install-file
5372 "90-backlight.rules" (string-append out "/lib/udev/rules.d"))
5373 #t))))))
5374 (native-inputs
5375 `(("autoconf" ,autoconf)
5376 ("automake" ,automake)))
5377 (home-page "https://haikarainen.github.io/light/")
5378 (synopsis "GNU/Linux application to control backlights")
5379 (description
5380 "Light is a program to send commands to screen backlight controllers
5381 under GNU/Linux. Features include:
5382
5383 @itemize
5384 @item It does not rely on X.
5385 @item Light can automatically figure out the best controller to use, making
5386 full use of underlying hardware.
5387 @item It is possible to set a minimum brightness value, as some controllers
5388 set the screen to be pitch black at a vaĺue of 0 (or higher).
5389 @end itemize
5390
5391 Light is the successor of lightscript.")
5392 (license license:gpl3+)))
5393
5394 (define-public brightnessctl
5395 (let ((commit "6a791e7694aeeb5d027f71c6098e5182cf03371c"))
5396 (package
5397 (name "brightnessctl")
5398 (version (git-version "0.4" "0" commit))
5399 (source (origin
5400 (method git-fetch)
5401 (uri (git-reference
5402 (url "https://github.com/Hummer12007/brightnessctl/")
5403 (commit commit)))
5404 (file-name (git-file-name name version))
5405 (sha256
5406 (base32
5407 "1n1gb8ldgqv3vs565yhk1w4jfvrviczp94r8wqlkv5q6ab43c8w9"))))
5408 (build-system gnu-build-system)
5409 (arguments
5410 '(#:tests? #f ; no tests
5411 #:make-flags (list "CC=gcc"
5412 (string-append "PREFIX=" %output)
5413 (string-append "UDEVDIR=" %output "/lib/udev/rules.d/"))
5414 #:phases
5415 (modify-phases %standard-phases
5416 (delete 'configure)
5417 (add-after 'unpack 'adjust-udev-rules
5418 (lambda _
5419 (substitute* "90-brightnessctl.rules"
5420 (("/bin/") "/run/current-system/profile/bin/"))
5421 #t)))))
5422 (home-page "https://github.com/Hummer12007/brightnessctl")
5423 (synopsis "Backlight and LED brightness control")
5424 (description
5425 "This program allows you read and control device brightness. Devices
5426 include backlight and LEDs. It can also preserve current brightness before
5427 applying the operation, such as on lid close.
5428
5429 The appropriate permissions must be set on the backlight or LED control
5430 interface in sysfs, which can be accomplished with the included udev rules.")
5431 (license license:expat))))
5432
5433 (define-public tlp
5434 (package
5435 (name "tlp")
5436 (version "1.3.1")
5437 (source
5438 (origin
5439 (method git-fetch)
5440 (uri (git-reference
5441 (url "https://github.com/linrunner/TLP.git")
5442 (commit version)))
5443 (file-name (git-file-name name version))
5444 (sha256
5445 (base32 "14fcnaz9pw534v4d8dddqq4wcvpf1kghr8zlrk62r5lrl46sp1p5"))))
5446 (native-inputs
5447 `(("shellcheck" ,shellcheck)))
5448 (inputs
5449 `(("bash" ,bash)
5450 ("dbus" ,dbus)
5451 ("ethtool" ,ethtool)
5452 ("eudev" ,eudev)
5453 ("grep" ,grep)
5454 ("hdparm" ,hdparm)
5455 ("inetutils" ,inetutils)
5456 ("iw" ,iw)
5457 ("kmod" ,kmod)
5458 ("pciutils" ,pciutils)
5459 ("perl" ,perl)
5460 ("rfkill" ,rfkill)
5461 ("sed" ,sed)
5462 ("usbutils" ,usbutils)
5463 ("util-linux" ,util-linux)
5464 ("wireless-tools" ,wireless-tools)
5465 ,@(if (let ((system (or (%current-target-system)
5466 (%current-system))))
5467 (or (string-prefix? "i686-" system)
5468 (string-prefix? "x86_64-" system)))
5469 `(("x86-energy-perf-policy" ,x86-energy-perf-policy))
5470 '())))
5471 (build-system gnu-build-system)
5472 (arguments
5473 ;; XXX: The full test suite is run with "checkall" but it requires
5474 ;; "checkbashisms" and "perlcritic", not yet packaged in Guix.
5475 `(#:test-target "shellcheck"
5476 #:modules ((guix build gnu-build-system)
5477 (guix build utils)
5478 (srfi srfi-1))
5479 #:phases
5480 (modify-phases %standard-phases
5481 (delete 'configure) ; no configure script
5482 (add-before 'build 'setenv
5483 (lambda* (#:key outputs #:allow-other-keys)
5484 (let ((out (assoc-ref outputs "out")))
5485 (setenv "TLP_WITH_SYSTEMD" "0")
5486 (setenv "TLP_NO_INIT" "1")
5487 (setenv "TLP_NO_PMUTILS" "1")
5488 (setenv "TLP_SBIN" (string-append out "/bin"))
5489 (setenv "TLP_BIN" (string-append out "/bin"))
5490 (setenv "TLP_TLIB" (string-append out "/share/tlp"))
5491 (setenv "TLP_FLIB" (string-append out "/share/tlp/func.d"))
5492 (setenv "TLP_ULIB" (string-append out "/lib/udev"))
5493 (setenv "TLP_CONFDEF"
5494 (string-append out "/share/tlp/defaults.conf"))
5495 (setenv "TLP_CONFDIR" (string-append out "/etc/tlp.d"))
5496 (setenv "TLP_ELOD"
5497 (string-append out "/lib/elogind/system-sleep"))
5498 (setenv "TLP_SHCPL"
5499 (string-append out "/share/bash-completion/completions"))
5500 (setenv "TLP_MAN" (string-append out "/share/man"))
5501 (setenv "TLP_META" (string-append out "/share/metainfo"))
5502 #t)))
5503 (add-before 'install 'fix-installation
5504 (lambda _
5505 ;; Stop the Makefile from trying to create system directories.
5506 (substitute* "Makefile"
5507 (("\\[ -f \\$\\(_CONFUSR\\) \\]") "#")
5508 (("install -d -m 755 \\$\\(_VAR\\)") "#"))
5509 #t))
5510 (replace 'install
5511 (lambda _ (invoke "make" "install-tlp" "install-man-tlp")))
5512 (add-after 'install 'wrap
5513 (lambda* (#:key inputs outputs #:allow-other-keys)
5514 (let* ((bin (string-append (assoc-ref outputs "out") "/bin"))
5515 (bin-files (find-files bin ".*")))
5516 (define (bin-directory input-name)
5517 (let ((p (assoc-ref inputs input-name)))
5518 (and p (string-append p "/bin"))))
5519 (define (sbin-directory input-name)
5520 (string-append (assoc-ref inputs input-name) "/sbin"))
5521 (for-each (lambda (program)
5522 (wrap-program program
5523 `("PATH" ":" prefix
5524 ,(append
5525 (filter-map bin-directory
5526 '("bash"
5527 "coreutils"
5528 "dbus"
5529 "eudev"
5530 "grep"
5531 "inetutils"
5532 "kmod"
5533 "perl"
5534 "sed"
5535 "usbutils"
5536 "util-linux"
5537 "x86-energy-perf-policy"))
5538 (filter-map sbin-directory
5539 '("ethtool"
5540 "hdparm"
5541 "iw"
5542 "pciutils"
5543 "rfkill"
5544 "wireless-tools"))))))
5545 bin-files)
5546 #t))))))
5547 (home-page "https://linrunner.de/en/tlp/tlp.html")
5548 (synopsis "Power management tool for Linux")
5549 (description "TLP is a power management tool for Linux. It comes with
5550 a default configuration already optimized for battery life. Nevertheless,
5551 TLP is customizable to fulfil system requirements. TLP settings are applied
5552 every time the power supply source is changed.")
5553 ;; 'COPYING' is a custom version that says that one file is GPLv3+ and the
5554 ;; rest is GPLv2+.
5555 (license (list license:gpl2+ license:gpl3+))))
5556
5557 (define-public lshw
5558 (package
5559 (name "lshw")
5560 (version "B.02.18")
5561 (source (origin
5562 (method url-fetch)
5563 (uri (string-append "https://www.ezix.org/software/"
5564 "files/lshw-" version
5565 ".tar.gz"))
5566 (sha256
5567 (base32
5568 "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf"))))
5569 (build-system gnu-build-system)
5570 (arguments
5571 `(#:phases (modify-phases %standard-phases (delete 'configure))
5572 #:tests? #f ; no tests
5573 #:make-flags
5574 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
5575 (synopsis "List hardware information")
5576 (description
5577 "@command{lshw} (Hardware Lister) is a small tool to provide
5578 detailed information on the hardware configuration of the machine.
5579 It can report exact memory configuration, firmware version, mainboard
5580 configuration, CPU version and speed, cache configuration, bus speed,
5581 and more on DMI-capable x86 or EFI (IA-64) systems and on some PowerPC
5582 machines (PowerMac G4 is known to work).")
5583 (home-page "https://www.ezix.org/project/wiki/HardwareLiSter")
5584 (license license:gpl2+)))
5585
5586 (define-public libmnl
5587 (package
5588 (name "libmnl")
5589 (version "1.0.4")
5590 (source
5591 (origin
5592 (method url-fetch)
5593 (uri (string-append "mirror://netfilter.org/libmnl/"
5594 "libmnl-" version ".tar.bz2"))
5595 (sha256
5596 (base32
5597 "108zampspaalv44zn0ar9h386dlfixpd149bnxa5hsi8kxlqj7qp"))))
5598 (build-system gnu-build-system)
5599 (home-page "https://www.netfilter.org/projects/libmnl/")
5600 (synopsis "Netlink utility library")
5601 (description "Libmnl is a minimalistic user-space library oriented to
5602 Netlink developers. There are a lot of common tasks in parsing, validating,
5603 constructing of both the Netlink header and TLVs that are repetitive and easy to
5604 get wrong. This library aims to provide simple helpers that allows you to
5605 re-use code and to avoid re-inventing the wheel.")
5606 (license license:lgpl2.1+)))
5607
5608 (define-public libnftnl
5609 (package
5610 (name "libnftnl")
5611 (version "1.1.5")
5612 (source
5613 (origin
5614 (method url-fetch)
5615 (uri (string-append "mirror://netfilter.org/libnftnl/"
5616 "libnftnl-" version ".tar.bz2"))
5617 (sha256
5618 (base32 "1wqlxf76bkqf3qhka9sw32qhb2ni20q1k6rn3iril2kw482lvpk6"))
5619 (patches
5620 (search-patches "libnftnl-dont-check-NFTNL_FLOWTABLE_SIZE.patch"))))
5621 (build-system gnu-build-system)
5622 (native-inputs
5623 `(("pkg-config" ,pkg-config)))
5624 (inputs
5625 `(("libmnl" ,libmnl)))
5626 (home-page "https://www.netfilter.org/projects/libnftnl/index.html")
5627 (synopsis "Netlink programming interface to the Linux nf_tables subsystem")
5628 (description "Libnftnl is a userspace library providing a low-level netlink
5629 programming interface to the in-kernel nf_tables subsystem. The library
5630 libnftnl has been previously known as libnftables. This library is currently
5631 used by nftables.")
5632 (license license:gpl2+)))
5633
5634 (define-public nftables
5635 (package
5636 (name "nftables")
5637 (version "0.9.3")
5638 (source
5639 (origin
5640 (method url-fetch)
5641 (uri (list (string-append "mirror://netfilter.org/nftables/nftables-"
5642 version ".tar.bz2")
5643 (string-append "https://www.nftables.org/projects/nftables"
5644 "/files/nftables-" version ".tar.bz2")))
5645 (sha256
5646 (base32 "0y6vbqp6x8w165q65h4n9sba1406gaz0d4744gqszbm7w9f92swm"))))
5647 (build-system gnu-build-system)
5648 (arguments `(#:configure-flags
5649 '("--disable-man-doc"))) ; FIXME: Needs docbook2x.
5650 (inputs `(("bison" ,bison)
5651 ("flex" ,flex)
5652 ("gmp" ,gmp)
5653 ("libmnl" ,libmnl)
5654 ("libnftnl" ,libnftnl)
5655 ("readline" ,readline)))
5656 (native-inputs `(("pkg-config" ,pkg-config)))
5657 (home-page "https://www.nftables.org")
5658 (synopsis "Userspace utility for Linux packet filtering")
5659 (description "nftables is the project that aims to replace the existing
5660 {ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet
5661 filtering framework, a new userspace utility and also a compatibility layer for
5662 {ip,ip6}tables. nftables is built upon the building blocks of the Netfilter
5663 infrastructure such as the existing hooks, the connection tracking system, the
5664 userspace queueing component and the logging subsystem.")
5665 (license license:gpl2)))
5666
5667 (define-public proot
5668 (package
5669 (name "proot")
5670 (version "5.1.0")
5671 (source
5672 (origin
5673 (method git-fetch)
5674 (uri (git-reference
5675 (url "https://github.com/proot-me/PRoot.git")
5676 (commit (string-append "v" version))))
5677 (file-name (git-file-name name version))
5678 (sha256
5679 (base32 "0azsqis99gxldmbcg43girch85ysg4hwzf0h1b44bmapnsm89fbz"))
5680 (patches (search-patches "proot-test-fhs.patch"))))
5681 (build-system gnu-build-system)
5682 (arguments
5683 '(#:make-flags '("-C" "src")
5684
5685 #:phases (modify-phases %standard-phases
5686 (delete 'configure)
5687 (add-before 'build 'set-shell-file-name
5688 (lambda* (#:key inputs #:allow-other-keys)
5689 (substitute* (find-files "src" "\\.[ch]$")
5690 (("\"/bin/sh\"")
5691 (string-append "\""
5692 (assoc-ref inputs "bash")
5693 "/bin/sh\"")))
5694 #t))
5695 (add-before 'check 'fix-fhs-assumptions-in-tests
5696 (lambda _
5697 (substitute* "tests/test-c6b77b77.mk"
5698 (("/bin/bash") (which "bash"))
5699 (("/usr/bin/test") (which "test")))
5700 (substitute* '("tests/test-16573e73.c")
5701 (("/bin/([a-z-]+)" _ program)
5702 (which program)))
5703
5704 (substitute* (find-files "tests" "\\.sh$")
5705 ;; Some of the tests try to "bind-mount" /bin/true.
5706 (("-b /bin/true:")
5707 (string-append "-b " (which "true") ":"))
5708 ;; Likewise for /bin.
5709 (("-b /bin:") "-b /gnu:")
5710 ;; Others try to run /bin/sh.
5711 (("/bin/sh") (which "sh"))
5712 ;; Others assume /etc/fstab exists.
5713 (("/etc/fstab") "/etc/passwd"))
5714
5715 (substitute* "tests/GNUmakefile"
5716 (("-b /bin:") "-b /gnu:"))
5717
5718 ;; XXX: This test fails in an obscure corner case, just
5719 ;; skip it.
5720 (delete-file "tests/test-kkkkkkkk.c")
5721
5722 #t))
5723 (replace 'check
5724 (lambda _
5725 (let ((n (parallel-job-count)))
5726 ;; For some reason we get lots of segfaults with
5727 ;; seccomp support (x86_64, Linux-libre 4.11.0).
5728 (setenv "PROOT_NO_SECCOMP" "1")
5729
5730 ;; Most of the tests expect "/bin" to be in $PATH so
5731 ;; they can run things that live in $ROOTFS/bin.
5732 (setenv "PATH"
5733 (string-append (getenv "PATH") ":/bin"))
5734
5735 (invoke "make" "check" "-C" "tests"
5736 ;;"V=1"
5737 "-j" (number->string n)))))
5738 (replace 'install
5739 (lambda* (#:key outputs #:allow-other-keys)
5740 ;; The 'install' rule does nearly nothing.
5741 (let* ((out (assoc-ref outputs "out"))
5742 (man1 (string-append out "/share/man/man1")))
5743 ;; TODO: 'make install-care' (does not even
5744 ;; build currently.)
5745 (invoke "make" "-C" "src" "install"
5746 (string-append "PREFIX=" out))
5747
5748 (mkdir-p man1)
5749 (copy-file "doc/proot/man.1"
5750 (string-append man1 "/proot.1"))
5751 #t))))))
5752 (native-inputs `(("which" ,which)
5753
5754 ;; For 'mcookie', used by some of the tests.
5755 ("util-linux" ,util-linux)))
5756 (inputs `(("talloc" ,talloc)))
5757 (home-page "https://github.com/proot-me/PRoot")
5758 (synopsis "Unprivileged chroot, bind mount, and binfmt_misc")
5759 (description
5760 "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},
5761 and @code{binfmt_misc}. This means that users don't need any privileges or
5762 setup to do things like using an arbitrary directory as the new root
5763 file system, making files accessible somewhere else in the file system
5764 hierarchy, or executing programs built for another CPU architecture
5765 transparently through QEMU user-mode. Also, developers can use PRoot as a
5766 generic process instrumentation engine thanks to its extension mechanism.
5767 Technically PRoot relies on @code{ptrace}, an unprivileged system-call
5768 available in the kernel Linux.")
5769 (license license:gpl2+)))
5770
5771 (define-public proot-static
5772 (package
5773 (inherit proot)
5774 (name "proot-static")
5775 (synopsis
5776 "Unprivileged chroot, bind mount, and binfmt_misc (statically linked)")
5777 (inputs `(("talloc" ,talloc/static)))
5778 (arguments
5779 (substitute-keyword-arguments (package-arguments proot)
5780 ((#:make-flags flags)
5781 `(cons "LDFLAGS = -ltalloc -static -static-libgcc" ,flags))
5782 ((#:phases phases)
5783 `(modify-phases ,phases
5784 (add-after 'strip 'remove-store-references
5785 (lambda* (#:key outputs #:allow-other-keys)
5786 (let* ((out (assoc-ref outputs "out")))
5787 (with-directory-excursion out
5788 (remove-store-references "bin/proot")
5789 #t))))))
5790 ((#:allowed-references _ '("out"))
5791 '("out"))))))
5792
5793 (define-public cpuid
5794 (package
5795 (name "cpuid")
5796 (version "20200211")
5797 (source (origin
5798 (method url-fetch)
5799 (uri (string-append "http://www.etallen.com/cpuid/cpuid-"
5800 version ".src.tar.gz"))
5801 (sha256
5802 (base32
5803 "06sjbqqp80l7nhsp6khglkzdp9qy4vhbvjxbfilznhsmrqiwlw55"))))
5804 (build-system gnu-build-system)
5805 (arguments
5806 '(#:make-flags '("CC=gcc")
5807 #:tests? #f ; no tests
5808 #:phases (modify-phases %standard-phases
5809 (delete 'configure) ; no configure script
5810 (add-before 'install 'fix-makefile
5811 (lambda* (#:key outputs #:allow-other-keys)
5812 (substitute* "Makefile"
5813 (("\\$\\(BUILDROOT\\)/usr") (assoc-ref outputs "out")))
5814 ;; Make the compressed manpages writable so that the
5815 ;; reset-gzip-timestamps phase does not error out.
5816 (substitute* "Makefile"
5817 (("-m 444") "-m 644"))
5818 #t)))))
5819 (inputs `(("perl" ,perl)))
5820 (supported-systems '("i686-linux" "x86_64-linux"))
5821 (home-page "http://www.etallen.com/cpuid.html")
5822 (synopsis "Linux tool to dump x86 CPUID information about the CPU(s)")
5823 (description "cpuid dumps detailed information about the CPU(s) gathered
5824 from the CPUID instruction, and also determines the exact model of CPU(s). It
5825 supports Intel, AMD, and VIA CPUs, as well as older Transmeta, Cyrix, UMC,
5826 NexGen, Rise, and SiS CPUs.")
5827 (license license:gpl2+)))
5828
5829 (define-public jmtpfs
5830 (package
5831 (name "jmtpfs")
5832 (version "0.5")
5833 (source
5834 (origin
5835 (method url-fetch)
5836 (uri (string-append "https://github.com/JasonFerrara/jmtpfs/archive/v"
5837 version ".tar.gz"))
5838 (file-name (string-append name "-" version ".tar.gz"))
5839 (sha256
5840 (base32
5841 "10v8d7mmx8b8123x5f9y9zaaa428ms6wkngwn2ra71n5a53wrjn0"))))
5842 (build-system gnu-build-system)
5843 (inputs
5844 `(("file" ,file)
5845 ("fuse" ,fuse)
5846 ("libmtp" ,libmtp)))
5847 (native-inputs
5848 `(("pkg-config" ,pkg-config)))
5849 (home-page "https://github.com/JasonFerrara/jmtpfs")
5850 (synopsis "Use a FUSE file system to access data over MTP")
5851 (description "jmtpfs uses FUSE (file system in userspace) to provide access
5852 to data over the Media Transfer Protocol (MTP). Unprivileged users can mount
5853 the MTP device as a file system.")
5854 (license license:gpl3)))
5855
5856 (define-public procenv
5857 (package
5858 (name "procenv")
5859 (version "0.51")
5860 (source
5861 (origin
5862 (method url-fetch)
5863 (uri (string-append "https://github.com/jamesodhunt/procenv/archive/"
5864 version ".tar.gz"))
5865 (file-name (string-append name "-" version ".tar.gz"))
5866 (sha256
5867 (base32 "1javw97yw0qvjmj14js8vw6nsfyf2xc0kfiyq5f2hsp0553w2cdq"))))
5868 (build-system gnu-build-system)
5869 (arguments `(#:configure-flags '("--disable-silent-rules")))
5870 (native-inputs `(("pkg-config" ,pkg-config)))
5871 (inputs `(("expat" ,expat) ("libcap" ,libcap) ("check" ,check)
5872 ("groff" ,groff) ; for tests
5873 ("libselinux" ,libselinux)))
5874 (synopsis "Utility to show process environment")
5875 (description "Procenv is a command-line tool that displays as much detail about
5876 itself and its environment as possible. It can be used as a test
5877 tool, to understand the type of environment a process runs in, and for
5878 comparing system environments.")
5879 (home-page "http://github.com/jamesodhunt/procenv/")
5880 (license license:gpl3+)))
5881
5882 (define-public libfabric
5883 (package
5884 (name "libfabric")
5885 (version "1.4.1")
5886 (source
5887 (origin
5888 (method url-fetch)
5889 (uri
5890 (string-append "https://github.com/ofiwg/libfabric/releases/download/v"
5891 version "/libfabric-" version ".tar.bz2"))
5892 (sha256
5893 (base32 "19l2m1frna1l765z4j7wl8hp4rb9wrh0hy5496685hd183hmy5pv"))))
5894 (build-system gnu-build-system)
5895 (inputs `(("rdma-core" ,rdma-core)
5896 ,@(match (%current-system)
5897 ((member (package-supported-systems psm))
5898 `(("psm" ,psm)))
5899 (_ `()))
5900 ("libnl" ,libnl)))
5901 (home-page "https://ofiwg.github.io/libfabric/")
5902 (synopsis "Open Fabric Interfaces")
5903 (description
5904 "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric
5905 communication services to applications. OFI is best described as a collection
5906 of libraries and applications used to export fabric services. The key
5907 components of OFI are: application interfaces, provider libraries, kernel
5908 services, daemons, and test applications.
5909
5910 Libfabric is a core component of OFI. It is the library that defines and
5911 exports the user-space API of OFI, and is typically the only software that
5912 applications deal with directly. It works in conjunction with provider
5913 libraries, which are often integrated directly into libfabric.")
5914 (license (list license:bsd-2 license:gpl2)))) ;dual
5915
5916 (define-public psm
5917 (package
5918 (name "psm")
5919 (version "3.3.20170428")
5920 (home-page "https://github.com/intel/psm")
5921 (source
5922 (origin
5923 (method git-fetch)
5924 (uri (git-reference (url home-page)
5925 (commit "604758e76dc31e68d1de736ccf5ddf16cb22355b")))
5926 (file-name (string-append "psm-" version ".tar.gz"))
5927 (sha256
5928 (base32 "0nsb325dmhn5ia3d2cnksqr0gdvrrx2hmvlylfgvmaqdpq76zm85"))
5929 (patches (search-patches
5930 "psm-arch.patch" ; uname -p returns "unknown" on Debian 9
5931 "psm-ldflags.patch" ; build shared lib with LDFLAGS
5932 "psm-repro.patch" ; reproducibility
5933 "psm-disable-memory-stats.patch"))))
5934 (build-system gnu-build-system)
5935 (outputs '("out" "debug"))
5936 (inputs `(("libuuid" ,util-linux)))
5937 (arguments
5938 '(#:make-flags `("PSM_USE_SYS_UUID=1" "CC=gcc" "WERROR="
5939 ,(string-append "INSTALL_PREFIX=" %output)
5940 ,(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
5941 #:tests? #f
5942 #:phases (modify-phases %standard-phases
5943 (delete 'configure)
5944 (add-after 'unpack 'patch-/usr/include
5945 (lambda _
5946 (substitute* "Makefile"
5947 (("\\$\\{DESTDIR}/usr/include")
5948 (string-append %output "/include")))
5949 (substitute* "Makefile"
5950 (("/lib64") "/lib"))
5951 #t))
5952 (add-after 'unpack 'patch-sysmacros
5953 (lambda _
5954 (substitute* "ipath/ipath_proto.c"
5955 (("#include <sys/poll.h>" m)
5956 (string-append m "\n"
5957 "#include <sys/sysmacros.h>")))
5958 #t)))))
5959 (synopsis "Intel Performance Scaled Messaging (PSM) Libraries")
5960 (description
5961 "The PSM Messaging API, or PSM API, is Intel's low-level user-level
5962 communications interface for the True Scale family of products. PSM users are
5963 enabled with mechanisms necessary to implement higher level communications
5964 interfaces in parallel environments.")
5965 ;; Only Intel-compatable processors are supported.
5966 (supported-systems '("i686-linux" "x86_64-linux"))
5967 (license (list license:bsd-2 license:gpl2)))) ;dual
5968
5969 (define-public snapscreenshot
5970 (package
5971 (name "snapscreenshot")
5972 (version "1.0.14.3")
5973 (source
5974 (origin
5975 (method url-fetch)
5976 (uri (string-append "http://bisqwit.iki.fi/src/arch/"
5977 name "-" version ".tar.bz2"))
5978 (sha256
5979 (base32 "0gzvqsbf6a2sbd1mqvj1lbm57i2bm5k0cr6ncr821d1f32gw03mk"))))
5980 (build-system gnu-build-system)
5981 (arguments
5982 `(#:make-flags
5983 (let ((out (assoc-ref %outputs "out")))
5984 (list (string-append "BINDIR=" out "/bin")
5985 (string-append "MANDIR=" out "/share/man")))
5986 #:tests? #f ; no test suite
5987 #:phases
5988 (modify-phases %standard-phases
5989 (delete 'configure) ; ./configure is a snarky no-op
5990 (add-before 'install 'fix-ownership
5991 ;; Install binaries owned by ‘root’ instead of the nonexistent ‘bin’.
5992 (lambda _
5993 (substitute* "depfun.mak"
5994 ((" -o bin -g bin ") " "))
5995 #t))
5996 (add-before 'install 'create-output-directories
5997 (lambda* (#:key outputs #:allow-other-keys)
5998 (let ((out (assoc-ref outputs "out")))
5999 (mkdir-p (string-append out "/share/man/man1"))
6000 #t))))))
6001 (home-page "https://bisqwit.iki.fi/source/snapscreenshot.html")
6002 (synopsis "Take screenshots of one or more Linux text consoles")
6003 (description
6004 "snapscreenshot saves a screenshot of one or more Linux text consoles as a
6005 Targa (@dfn{.tga}) image. It can be used by anyone with read access to the
6006 relevant @file{/dev/vcs*} file(s).")
6007 (license license:gpl2)))
6008
6009 (define-public fbcat
6010 (package
6011 (name "fbcat")
6012 (version "0.5.1")
6013 (source
6014 (origin
6015 (method url-fetch)
6016 (uri (string-append "https://github.com/jwilk/fbcat/releases/download/"
6017 version "/" name "-" version ".tar.gz"))
6018 (sha256
6019 (base32 "0pj9hxmwhbz6kmd7847yx2jh1scl9l25zgndyi8s9vlzdkq2q8d7"))))
6020 (build-system gnu-build-system)
6021 (inputs
6022 ;; The ‘fbgrab’ wrapper can use one of several PPM-to-PNG converters. We
6023 ;; choose netpbm simply because it's the smallest. It still adds ~94 MiB
6024 ;; to an otherwise tiny package, so we put ‘fbgrab’ in its own output.
6025 `(("pnmtopng" ,netpbm)))
6026 (outputs (list "out" "fbgrab"))
6027 (arguments
6028 `(#:make-flags
6029 (list "CC=gcc"
6030 (string-append "PREFIX=" (assoc-ref %outputs "out")))
6031 #:tests? #f ; no tests
6032 #:phases
6033 (modify-phases %standard-phases
6034 (delete 'configure) ; no configure script
6035 (add-after 'build 'qualify-references
6036 (lambda* (#:key inputs outputs #:allow-other-keys)
6037 (let* ((pnmtopng (assoc-ref inputs "pnmtopng"))
6038 (out (assoc-ref outputs "out")))
6039 (substitute* "fbgrab"
6040 (("fbcat" all)
6041 (string-append out "/bin/" all))
6042 (("pnmtopng" all)
6043 (string-append pnmtopng "/bin/" all)))
6044 #t)))
6045 (add-after 'install 'split-fbgrab-output
6046 (lambda* (#:key outputs #:allow-other-keys)
6047 (let* ((out (assoc-ref outputs "out"))
6048 (out:fbgrab (assoc-ref outputs "fbgrab")))
6049 (for-each (lambda (file)
6050 (let ((old (string-append out "/" file))
6051 (new (string-append out:fbgrab "/" file)))
6052 (mkdir-p (dirname new))
6053 (rename-file old new)))
6054 (list "bin/fbgrab"
6055 "share/man/man1/fbgrab.1"))
6056 #t))))))
6057 (home-page "https://jwilk.net/software/fbcat")
6058 (synopsis "Take a screenshot of the contents of the Linux framebuffer")
6059 (description
6060 "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or
6061 a dump therof. It supports a wide range of drivers and pixel formats.
6062 @command{fbcat} can take screenshots of virtually any application that can be
6063 made to write its output to the framebuffer, including (but not limited to)
6064 text-mode or graphical applications that don't use a display server.
6065
6066 Also included is @command{fbgrab}, a wrapper around @command{fbcat} that
6067 emulates the behaviour of Gunnar Monell's older fbgrab utility.")
6068 (license license:gpl2)))
6069
6070 (define-public libcgroup
6071 (package
6072 (name "libcgroup")
6073 (version "0.41")
6074 (source
6075 (origin
6076 (method url-fetch)
6077 (uri (string-append
6078 "mirror://sourceforge/libcg/" name "/"
6079 version "/" name "-" version ".tar.bz2"))
6080 (sha256
6081 (base32 "0lgvyq37gq84sk30sg18admxaj0j0p5dq3bl6g74a1ppgvf8pqz4"))))
6082 (build-system gnu-build-system)
6083 (arguments
6084 `(#:tests? #f))
6085 (native-inputs
6086 `(("bison" ,bison)
6087 ("flex" ,flex)))
6088 (inputs
6089 `(("linux-pam" ,linux-pam)))
6090 (home-page "https://sourceforge.net/projects/libcg/")
6091 (synopsis "Control groups management tools")
6092 (description "Control groups is Linux kernel method for process resource
6093 restriction, permission handling and more. This package provides userspace
6094 interface to this kernel feature.")
6095 (license license:lgpl2.1)))
6096
6097 (define-public mbpfan
6098 (package
6099 (name "mbpfan")
6100 (version "2.1.1")
6101 (source
6102 (origin
6103 (method git-fetch)
6104 (uri (git-reference
6105 (url "https://github.com/dgraziotin/mbpfan.git")
6106 (commit (string-append "v" version))))
6107 (file-name (git-file-name name version))
6108 (sha256
6109 (base32 "0aijyxrqh01x0s80yr4cgxgd001iiqqph65pxvby7f0wz8lnxnqj"))))
6110 (build-system gnu-build-system)
6111 (arguments
6112 '(#:tests? #f ; tests ask to be run as root
6113 #:make-flags (let ((out (assoc-ref %outputs "out")))
6114 (list (string-append "DESTDIR=" out)
6115 "CC=gcc"))
6116 #:phases
6117 (modify-phases %standard-phases
6118 (add-after 'unpack 'patch-paths
6119 (lambda _
6120 (substitute* "Makefile"
6121 (("/usr") ""))
6122 #t))
6123 (delete 'configure)))) ; there's no configure phase
6124 (home-page "https://github.com/dgraziotin/mbpfan")
6125 (synopsis "Control fan speed on Macbooks")
6126 (description
6127 "mbpfan is a fan control daemon for Apple Macbooks. It uses input from
6128 the @code{coretemp} module and sets the fan speed using the @code{applesmc}
6129 module. It can be executed as a daemon or in the foreground with root
6130 privileges.")
6131 (license license:gpl3+)))
6132
6133 (define-public psm2
6134 (package
6135 (name "psm2")
6136 (version "11.2.86")
6137 (source (origin
6138 (method git-fetch)
6139 (uri (git-reference
6140 (url "https://github.com/intel/opa-psm2.git")
6141 (commit (string-append "PSM2_" version))))
6142 (file-name (git-file-name name version))
6143 (sha256
6144 (base32
6145 "1hiqzcmc97lzhaqjva82vf8irgg038cciypsv2brw90ak09n6vwf"))))
6146 (build-system gnu-build-system)
6147 (arguments
6148 '(#:make-flags
6149 `(,(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
6150 #:tests? #f
6151 #:phases (modify-phases %standard-phases
6152 (delete 'configure)
6153 (add-after 'unpack 'patch-Makefiles
6154 (lambda _
6155 (substitute* "Makefile"
6156 (("/lib64") "/lib")
6157 (("/usr") ""))
6158 (substitute* "compat/Makefile"
6159 (("/lib64") "/lib")
6160 (("/usr") ""))
6161 #t))
6162 (replace 'install
6163 (lambda _
6164 (setenv "DESTDIR" %output)
6165 (invoke "make" "install")
6166 #t)))))
6167 (inputs
6168 `(("rdma-core" ,rdma-core)
6169 ("numactl" ,numactl)))
6170 (synopsis "Intel Performance Scaled Messaging 2 (PSM2) library")
6171 (description
6172 "This package is low-level user-level Intel's communications interface.
6173 The PSM2 API is a high-performance vendor-specific protocol that provides a
6174 low-level communications interface for the Intel Omni-Path family of
6175 high-speed networking devices.")
6176 (home-page "https://github.com/intel/opa-psm2")
6177 ;; Only the x86_64 architecure is supported.
6178 (supported-systems '("x86_64-linux"))
6179 (license (list license:bsd-3 license:gpl2)))) ; dual
6180
6181 (define-public libpfm4
6182 (package
6183 (name "libpfm4")
6184 (version "4.9.0")
6185 (source (origin
6186 (method url-fetch)
6187 (uri (string-append "mirror://sourceforge/perfmon2/"
6188 name "/libpfm-" version ".tar.gz"))
6189 (sha256
6190 (base32
6191 "1qp4g4n6dw42p2w5rkwzdb7ynk8h7g5vg01ybpmvxncgwa7bw3yv"))))
6192 (build-system gnu-build-system)
6193 (arguments
6194 '(#:modules ((guix build utils)
6195 (guix build gnu-build-system))
6196 #:phases (modify-phases %standard-phases
6197 (delete 'configure)
6198 (delete 'check)
6199 (replace 'build
6200 (lambda* (#:key inputs outputs #:allow-other-keys)
6201 (let* ((out (assoc-ref outputs "out")))
6202 (setenv "CC" "gcc")
6203 (invoke "make")
6204 #t)))
6205 (replace 'install
6206 (lambda* (#:key outputs #:allow-other-keys)
6207 (let* ((out (assoc-ref outputs "out")))
6208 (invoke "make"
6209 (string-append "PREFIX=" out)
6210 "install")
6211 #t))))))
6212 (synopsis "Performance event monitoring library")
6213 (description
6214 "This package provides a library called libpfm4, which is used to develop
6215 monitoring tools exploiting the performance monitoring events such as those
6216 provided by the Performance Monitoring Unit (PMU) of modern processors.
6217
6218 Libpfm4 helps convert from an event name, expressed as a string, to the event
6219 encoding that is either the raw event as documented by the hardware vendor or
6220 the OS-specific encoding. In the latter case, the library is able to prepare
6221 the OS-specific data structures needed by the kernel to setup the event.
6222
6223 libpfm4 provides support for the @code{perf_events} interface, which was
6224 introduced in Linux 2.6.31.")
6225 (home-page "http://perfmon2.sourceforge.net/")
6226 (license license:expat)))
6227
6228 (define-public libnfnetlink
6229 (package
6230 (name "libnfnetlink")
6231 (version "1.0.1")
6232 (source (origin
6233 (method url-fetch)
6234 (uri (string-append
6235 "https://www.netfilter.org/projects/libnfnetlink/files/"
6236 "libnfnetlink-" version ".tar.bz2"))
6237 (sha256
6238 (base32
6239 "06mm2x4b01k3m7wnrxblk9j0mybyr4pfz28ml7944xhjx6fy2w7j"))))
6240 (build-system gnu-build-system)
6241 (home-page "https://www.netfilter.org/projects/libnfnetlink/")
6242 (synopsis "Low-level netfilter netlink communication library")
6243 (description
6244 "@code{libnfnetlink} is the low-level library for netfilter related
6245 kernel/userspace communication. It provides a generic messaging
6246 infrastructure for in-kernel netfilter subsystems (such as nfnetlink_log,
6247 nfnetlink_queue, nfnetlink_conntrack) and their respective users and/or
6248 management tools in userspace.")
6249 (license license:gpl2)))
6250
6251 (define-public go-netlink
6252 (package
6253 (name "go-netlink")
6254 (version "1.0.0")
6255 (source (origin
6256 (method git-fetch)
6257 (uri (git-reference
6258 (url "https://github.com/vishvananda/netlink.git")
6259 (commit (string-append "v" version))))
6260 (file-name (git-file-name name version))
6261 (sha256
6262 (base32
6263 "0hpzghf1a4cwawzhkiwdzin80h6hd09fskl77d5ppgc084yvj8x0"))))
6264 (build-system go-build-system)
6265 (arguments
6266 `(#:import-path "github.com/vishvananda/netlink"))
6267 (native-inputs
6268 `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
6269 ("go-netns" ,go-netns)))
6270 (home-page "https://github.com/vishvananda/netlink")
6271 (synopsis "Simple netlink library for Go")
6272 (description "The netlink package provides a simple netlink library for
6273 Go. Netlink is the interface a user-space program in Linux uses to
6274 communicate with the kernel. It can be used to add and remove interfaces, set
6275 IP addresses and routes, and configure IPsec.")
6276 (license license:asl2.0)))
6277
6278 (define-public xfsprogs
6279 (package
6280 (name "xfsprogs")
6281 (version "5.2.1")
6282 (source (origin
6283 (method url-fetch)
6284 (uri (string-append
6285 "mirror://kernel.org/linux/utils/fs/xfs/xfsprogs/"
6286 "xfsprogs-" version ".tar.gz"))
6287 (sha256
6288 (base32
6289 "0q5xd4gb9g83h82mg68cx616ifzl8qkzzlgg5xna698117ph3wky"))))
6290 (build-system gnu-build-system)
6291 (outputs (list "out" "python"))
6292 (arguments
6293 `(#:tests? #f ; kernel/user integration tests are in package "xfstests"
6294 #:phases
6295 (modify-phases %standard-phases
6296 (add-after 'install 'separate-python-output
6297 (lambda* (#:key outputs #:allow-other-keys)
6298 (let ((out (assoc-ref outputs "out"))
6299 (python (assoc-ref outputs "python")))
6300 (for-each
6301 (lambda (script)
6302 (mkdir-p (string-append python (dirname script)))
6303 (rename-file (string-append out script)
6304 (string-append python script)))
6305 (list "/sbin/xfs_scrub_all"))
6306 #t)))
6307 (add-after 'install 'install-headers
6308 (lambda _
6309 (invoke "make" "install-dev"))))))
6310 (native-inputs
6311 `(("gettext" ,gettext-minimal)))
6312 (inputs
6313 `(("libuuid" ,util-linux)
6314 ("python" ,python-wrapper)))
6315 (home-page "https://xfs.wiki.kernel.org/")
6316 (synopsis "XFS file system tools")
6317 (description "This package provides commands to create and check XFS
6318 file systems.")
6319 ;; The library "libhandle" and the headers in "xfslibs-dev" are
6320 ;; licensed under lgpl2.1. the other stuff is licensed under gpl2.
6321 (license (list license:gpl2 license:lgpl2.1))))
6322
6323 (define-public genext2fs
6324 (package
6325 (name "genext2fs")
6326 (version "1.4.1-4")
6327 (source (origin
6328 (method git-fetch)
6329 (uri (git-reference
6330 (url "https://github.com/jeremie-koenig/genext2fs.git")
6331 ;; 1.4.1-3 had a VCS tag but 1.4.1-4 doesn't.
6332 (commit "9ee43894634998b0b2b309d636f25c64314c9421")))
6333 (file-name (git-file-name name version))
6334 (sha256
6335 (base32 "0ib5icn78ciz00zhc1bgdlrwaxvsdz7wnplwblng0jirwi9ml7sq"))))
6336 (build-system gnu-build-system)
6337 (arguments
6338 `(#:phases
6339 (modify-phases %standard-phases
6340 (add-after 'unpack 'apply-debian-patches
6341 ;; Debian changes (the revision after ‘-’ in VERSION) are
6342 ;; maintained as separate patches. Apply those relevant to us.
6343 (lambda _
6344 (for-each
6345 (lambda (file-name)
6346 (invoke "patch" "-p1" "-i"
6347 (string-append "debian/patches/" file-name)))
6348 (list "blocksize+creator.diff" ; add -B/-o options
6349 "byteswap_fix.diff"))
6350 #t)))))
6351 (native-inputs
6352 `(("autoconf" ,autoconf)
6353 ("automake" ,automake)))
6354 (home-page "https://github.com/jeremie-koenig/genext2fs")
6355 (synopsis "Generate ext2 file system as a normal user")
6356 (description "This package provides a program to generate an ext2
6357 file system as a normal (non-root) user. It does not require you to mount
6358 the image file to copy files on it, nor does it require that you become
6359 the superuser to make device nodes.")
6360 (license license:gpl2)))
6361
6362 (define-public fakeroot
6363 (package
6364 (name "fakeroot")
6365 (version "1.24")
6366 (source (origin
6367 (method url-fetch)
6368 (uri (string-append "https://deb.debian.org/debian/pool/main/f/"
6369 "fakeroot/fakeroot_" version ".orig.tar.gz"))
6370 (file-name (string-append name "-" version ".tar.gz"))
6371 (sha256
6372 (base32
6373 "1vb6f93hjyqnwx8dc8mm3dgma7axgqk8s7sdsjs8l2rpc0qmn11f"))))
6374 (build-system gnu-build-system)
6375 (arguments
6376 `(#:phases
6377 (modify-phases %standard-phases
6378 (add-after 'configure 'patch-Makefile
6379 (lambda _
6380 ;; Note: The root of the problem is already in "Makefile.am".
6381 (substitute* "Makefile"
6382 (("/bin/sh") (which "sh")))
6383 #t))
6384 (add-after 'unpack 'patch-getopt
6385 (lambda* (#:key inputs #:allow-other-keys)
6386 (substitute* "scripts/fakeroot.in"
6387 (("getopt")
6388 (string-append (assoc-ref inputs "util-linux")
6389 "/bin/getopt")))
6390 #t))
6391 (add-before 'configure 'setenv
6392 (lambda _
6393 (setenv "LIBS" "-lacl")
6394 #t))
6395 (add-before 'check 'prepare-check
6396 (lambda _
6397 (setenv "SHELL" (which "bash"))
6398 (setenv "VERBOSE" "1")
6399 (substitute* "test/t.touchinstall"
6400 ;; We don't have the name of the root user, so use ID=0.
6401 (("grep root") "grep \"\\<0\\>\""))
6402 (substitute* "test/tartest"
6403 ;; We don't have the name of the root group, so use ID=0.
6404 (("ROOTGROUP=root") "ROOTGROUP=0")
6405 ;; We don't have the name of the daemon user, so use IDs.
6406 (("daemon:sys") "1:3")
6407 (("daemon:") "1:"))
6408 ;; We don't have an /etc/passwd entry for "root" - use numeric IDs.
6409 (substitute* "test/compare-tar"
6410 (("tar -tvf") "tar --numeric-owner -tvf"))
6411 #t)))))
6412 (native-inputs
6413 `(("acl" ,acl)
6414 ("sharutils" ,sharutils) ; for the tests
6415 ("xz" ,xz))) ; for the tests
6416 (inputs
6417 `(("libcap" ,libcap)
6418 ("util-linux" ,util-linux)))
6419 (synopsis "Provides a fake root environment")
6420 (description "@command{fakeroot} runs a command in an environment where
6421 it appears to have root privileges for file manipulation. This is useful
6422 for allowing users to create archives (tar, ar, .deb etc.) with files in
6423 them with root permissions/ownership. Without fakeroot one would have to
6424 have root privileges to create the constituent files of the archives with
6425 the correct permissions and ownership, and then pack them up, or one would
6426 have to construct the archives directly, without using the archiver.")
6427 (home-page "http://freshmeat.sourceforge.net/projects/fakeroot")
6428 (license license:gpl3+)))
6429
6430 (define-public inputattach
6431 (package
6432 (name "inputattach")
6433 (version "0.42.0")
6434 (source (origin
6435 (method git-fetch)
6436 (uri (git-reference
6437 (url "https://github.com/linuxwacom/input-wacom.git")
6438 (commit (string-append "input-wacom-" version))))
6439 (file-name (git-file-name name version))
6440 (sha256
6441 (base32 "04lnn7v0rm4ppbya140im5d4igcl6c1nrqpgbsr0i8wkral0nv7j"))))
6442 (build-system gnu-build-system)
6443 (arguments
6444 `(#:phases
6445 (modify-phases %standard-phases
6446 (delete 'bootstrap)
6447 (delete 'configure)
6448 (replace 'build
6449 (lambda* (#:key inputs #:allow-other-keys)
6450 (with-directory-excursion "inputattach"
6451 (invoke (string-append (assoc-ref inputs "gcc")
6452 "/bin/gcc")
6453 "-O2" "-o" "inputattach" "inputattach.c"))
6454 #t))
6455 (delete 'check)
6456 (replace 'install
6457 (lambda* (#:key outputs #:allow-other-keys)
6458 (let ((target-dir (string-append
6459 (assoc-ref outputs "out")
6460 "/bin/")))
6461 (mkdir-p target-dir)
6462 (copy-file "inputattach/inputattach"
6463 (string-append target-dir
6464 "inputattach"))
6465 #t))))))
6466 (home-page "https://linuxwacom.github.io/")
6467 (synopsis "Dispatch input peripherals events to a device file")
6468 (description "inputattach dispatches input events from several device
6469 types and interfaces and translates so that the X server can use them.")
6470 (license license:gpl2+)))
6471
6472 (define-public pipewire
6473 (package
6474 (name "pipewire")
6475 (version "0.2.7")
6476 (source (origin
6477 (method git-fetch)
6478 (uri (git-reference
6479 (url "https://github.com/PipeWire/pipewire")
6480 (commit version)))
6481 (file-name (git-file-name name version))
6482 (sha256
6483 (base32
6484 "1q5wrqnhhs6r49p8yvkw1pl0cnsd4rndxy4h5lvdydwgf1civcwc"))))
6485 (build-system meson-build-system)
6486 (arguments
6487 '(#:configure-flags '("-Dsystemd=false")))
6488 (native-inputs
6489 `(("pkg-config" ,pkg-config)))
6490 (inputs
6491 `(("alsa-lib" ,alsa-lib)
6492 ("dbus" ,dbus)
6493 ("eudev" ,eudev)
6494 ("ffmpeg" ,ffmpeg)
6495 ("gstreamer" ,gstreamer)
6496 ("gst-plugins-base" ,gst-plugins-base)
6497 ("libva" ,libva)
6498 ("sbc" ,sbc)
6499 ("sdl2" ,sdl2)))
6500 (home-page "https://pipewire.org/")
6501 (synopsis "Server and user space API to deal with multimedia pipelines")
6502 (description
6503 "PipeWire is a project that aims to greatly improve handling of audio and
6504 video under Linux. It aims to support the usecases currently handled by both
6505 PulseAudio and Jack and at the same time provide same level of powerful handling
6506 of Video input and output. It also introduces a security model that makes
6507 interacting with audio and video devices from containerized applications easy,
6508 with supporting Flatpak applications being the primary goal. Alongside Wayland
6509 and Flatpak we expect PipeWire to provide a core building block for the future
6510 of Linux application development.")
6511 (license license:lgpl2.0+)))
6512
6513 (define-public ell
6514 (package
6515 (name "ell")
6516 (version "0.23")
6517 (source (origin
6518 (method git-fetch)
6519 (uri (git-reference
6520 (url "https://git.kernel.org/pub/scm/libs/ell/ell.git")
6521 (commit version)))
6522 (file-name (git-file-name name version))
6523 (sha256
6524 (base32
6525 "1qhlcwhn0gj877yss2ymx1aczghlddzb5v9mm1dgp2zliii3jy10"))))
6526 (build-system gnu-build-system)
6527 (arguments
6528 `(#:phases
6529 (modify-phases %standard-phases
6530 (add-after 'unpack 'fix-dbus-tests
6531 (lambda _
6532 (substitute* '("unit/test-dbus-message-fds.c"
6533 "unit/test-dbus-properties.c"
6534 "unit/test-dbus.c")
6535 (("/usr/bin/dbus-daemon") (which "dbus-daemon")))
6536 #t)))))
6537 (inputs
6538 `(("dbus" ,dbus)
6539 ("libtool" ,libtool)))
6540 (native-inputs
6541 `(("autoconf" ,autoconf)
6542 ("pkgconfig" ,pkg-config)
6543 ("automake" ,automake)))
6544 (home-page "https://01.org/ell")
6545 (synopsis "Embedded Linux Library")
6546 (description "The Embedded Linux* Library (ELL) provides core, low-level
6547 functionality for system daemons. It typically has no dependencies other than
6548 the Linux kernel, C standard library, and libdl (for dynamic linking). While
6549 ELL is designed to be efficient and compact enough for use on embedded Linux
6550 platforms, it is not limited to resource-constrained systems.")
6551 (license license:lgpl2.1+)))
6552
6553 (define-public lttng-ust
6554 (package
6555 (name "lttng-ust")
6556 (version "2.11.0")
6557 (source (origin
6558 (method url-fetch)
6559 (uri (string-append "https://lttng.org/files/lttng-ust/"
6560 "lttng-ust-" version ".tar.bz2"))
6561 (sha256
6562 (base32
6563 "1n646yz7882svf5a4ay3vqiiz3qjn3pgkkij9kk22871wp7q0ck8"))))
6564 (build-system gnu-build-system)
6565 (inputs
6566 `(("liburcu" ,liburcu)
6567 ("numactl" ,numactl)))
6568 (native-inputs
6569 `(("python" ,python-3)))
6570 (home-page "https://lttng.org/")
6571 (synopsis "LTTng userspace tracer libraries")
6572 (description "The user space tracing library, liblttng-ust, is the LTTng
6573 user space tracer. It receives commands from a session daemon, for example to
6574 enable and disable specific instrumentation points, and writes event records
6575 to ring buffers shared with a consumer daemon.")
6576 (license license:lgpl2.1+)))
6577
6578 (define-public kexec-tools
6579 (package
6580 (name "kexec-tools")
6581 (version "2.0.20")
6582 (source (origin
6583 (method url-fetch)
6584 (uri (string-append "mirror://kernel.org/linux/utils/kernel"
6585 "/kexec/kexec-tools-" version ".tar.xz"))
6586 (sha256
6587 (base32
6588 "1j7qlhxk1rbv9jbj8wd6hb7zl8p2mp29ymrmccgmsi0m0dzhgn6s"))))
6589 (build-system gnu-build-system)
6590 (arguments
6591 ;; There are no automated tests.
6592 '(#:tests? #f))
6593 (home-page "https://projects.horms.net/projects/kexec/")
6594 (synopsis "Tools for booting directly into different kernels")
6595 (description "This package provides the @code{kexec} program and ancillary
6596 utilities. Using @code{kexec}, it is possible to boot directly into a new
6597 kernel from the context of an already-running kernel, bypassing the normal
6598 system boot process.")
6599 (license license:gpl2)))