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