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