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