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