guix system: Add '--share' and '--expose' options for 'vm'.
[jackhill/guix/guix.git] / gnu / packages / linux.scm
... / ...
CommitLineData
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
4;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
5;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
6;;;
7;;; This file is part of GNU Guix.
8;;;
9;;; GNU Guix is free software; you can redistribute it and/or modify it
10;;; under the terms of the GNU General Public License as published by
11;;; the Free Software Foundation; either version 3 of the License, or (at
12;;; your option) any later version.
13;;;
14;;; GNU Guix is distributed in the hope that it will be useful, but
15;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;;; GNU General Public License for more details.
18;;;
19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
22(define-module (gnu packages linux)
23 #:use-module ((guix licenses)
24 #:hide (zlib))
25 #:use-module (gnu packages)
26 #:use-module ((gnu packages compression) #:prefix guix:)
27 #:use-module (gnu packages gcc)
28 #:use-module (gnu packages flex)
29 #:use-module (gnu packages bison)
30 #:use-module (gnu packages gperf)
31 #:use-module (gnu packages libusb)
32 #:use-module (gnu packages ncurses)
33 #:use-module (gnu packages pciutils)
34 #:use-module (gnu packages databases)
35 #:use-module (gnu packages perl)
36 #:use-module (gnu packages pkg-config)
37 #:use-module (gnu packages python)
38 #:use-module (gnu packages algebra)
39 #:use-module (gnu packages gettext)
40 #:use-module (gnu packages glib)
41 #:use-module (gnu packages pulseaudio)
42 #:use-module (gnu packages attr)
43 #:use-module (gnu packages xml)
44 #:use-module (gnu packages autotools)
45 #:use-module (gnu packages texinfo)
46 #:use-module (gnu packages check)
47 #:use-module (gnu packages maths)
48 #:use-module (gnu packages which)
49 #:use-module (gnu packages rrdtool)
50 #:use-module (gnu packages elf)
51 #:use-module (gnu packages gtk)
52 #:use-module (guix packages)
53 #:use-module (guix download)
54 #:use-module (guix utils)
55 #:use-module (guix build-system gnu)
56 #:use-module (guix build-system cmake)
57 #:use-module (guix build-system python)
58 #:use-module (guix build-system trivial)
59 #:use-module (srfi srfi-26)
60 #:use-module (ice-9 match))
61
62(define-public (system->linux-architecture arch)
63 "Return the Linux architecture name for ARCH, a Guix system name such as
64\"x86_64-linux\"."
65 (let ((arch (car (string-split arch #\-))))
66 (cond ((string=? arch "i686") "i386")
67 ((string-prefix? "mips" arch) "mips")
68 ((string-prefix? "arm" arch) "arm")
69 (else arch))))
70
71(define (linux-libre-urls version)
72 "Return a list of URLs for Linux-Libre VERSION."
73 (list (string-append
74 "http://linux-libre.fsfla.org/pub/linux-libre/releases/"
75 version "-gnu/linux-libre-" version "-gnu.tar.xz")
76
77 ;; XXX: Work around <http://bugs.gnu.org/14851>.
78 (string-append
79 "ftp://alpha.gnu.org/gnu/guix/mirror/linux-libre-"
80 version "-gnu.tar.xz")
81
82 ;; Maybe this URL will become valid eventually.
83 (string-append
84 "mirror://gnu/linux-libre/" version "-gnu/linux-libre-"
85 version "-gnu.tar.xz")))
86
87(define-public linux-libre-headers
88 (let* ((version "3.3.8")
89 (build-phase
90 (lambda (arch)
91 `(lambda _
92 (setenv "ARCH" ,(system->linux-architecture arch))
93 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
94
95 (and (zero? (system* "make" "defconfig"))
96 (zero? (system* "make" "mrproper" "headers_check"))))))
97 (install-phase
98 `(lambda* (#:key outputs #:allow-other-keys)
99 (let ((out (assoc-ref outputs "out")))
100 (and (zero? (system* "make"
101 (string-append "INSTALL_HDR_PATH=" out)
102 "headers_install"))
103 (mkdir (string-append out "/include/config"))
104 (call-with-output-file
105 (string-append out
106 "/include/config/kernel.release")
107 (lambda (p)
108 (format p "~a-default~%" ,version))))))))
109 (package
110 (name "linux-libre-headers")
111 (version version)
112 (source (origin
113 (method url-fetch)
114 (uri (linux-libre-urls version))
115 (sha256
116 (base32
117 "0jkfh0z1s6izvdnc3njm39dhzp1cg8i06jv06izwqz9w9qsprvnl"))))
118 (build-system gnu-build-system)
119 (native-inputs `(("perl" ,perl)))
120 (arguments
121 `(#:modules ((guix build gnu-build-system)
122 (guix build utils)
123 (srfi srfi-1))
124 #:phases (alist-replace
125 'build ,(build-phase (or (%current-target-system)
126 (%current-system)))
127 (alist-replace
128 'install ,install-phase
129 (alist-delete 'configure %standard-phases)))
130 #:tests? #f))
131 (synopsis "GNU Linux-Libre kernel headers")
132 (description "Headers of the Linux-Libre kernel.")
133 (license gpl2)
134 (home-page "http://www.gnu.org/software/linux-libre/"))))
135
136(define-public module-init-tools
137 (package
138 (name "module-init-tools")
139 (version "3.16")
140 (source (origin
141 (method url-fetch)
142 (uri (string-append
143 "mirror://kernel.org/linux/utils/kernel/module-init-tools/module-init-tools-"
144 version ".tar.bz2"))
145 (sha256
146 (base32
147 "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"))
148 (patches
149 (list (search-patch "module-init-tools-moduledir.patch")))))
150 (build-system gnu-build-system)
151 (arguments
152 ;; FIXME: The upstream tarball lacks man pages, and building them would
153 ;; require DocBook & co. We used to use Gentoo's pre-built man pages,
154 ;; but they vanished. In the meantime, fake it.
155 '(#:phases (alist-cons-before
156 'configure 'fake-docbook
157 (lambda _
158 (substitute* "Makefile.in"
159 (("^DOCBOOKTOMAN.*$")
160 "DOCBOOKTOMAN = true\n")))
161 %standard-phases)))
162 (home-page "http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/")
163 (synopsis "Tools for loading and managing Linux kernel modules")
164 (description
165 "Tools for loading and managing Linux kernel modules, such as `modprobe',
166`insmod', `lsmod', and more.")
167 (license gpl2+)))
168
169(define %boot-logo-patch
170 ;; Linux-Libre boot logo featuring Freedo and a gnu.
171 (origin
172 (method url-fetch)
173 (uri (string-append "http://www.fsfla.org/svn/fsfla/software/linux-libre/"
174 "lemote/gnewsense/branches/3.16/100gnu+freedo.patch"))
175 (sha256
176 (base32
177 "1hk9swxxc80bmn2zd2qr5ccrjrk28xkypwhl4z0qx4hbivj7qm06"))))
178
179(define (kernel-config system)
180 "Return the absolute file name of the Linux-Libre build configuration file
181for SYSTEM, or #f if there is no configuration for SYSTEM."
182 (define (lookup file)
183 (let ((file (string-append "gnu/packages/" file)))
184 (search-path %load-path file)))
185
186 (match system
187 ("i686-linux"
188 (lookup "linux-libre-i686.conf"))
189 ("x86_64-linux"
190 (lookup "linux-libre-x86_64.conf"))
191 (_
192 #f)))
193
194(define-public linux-libre
195 (let* ((version "3.17.3")
196 (build-phase
197 '(lambda* (#:key system inputs #:allow-other-keys #:rest args)
198 ;; Apply the neat patch.
199 (system* "patch" "-p1" "--batch"
200 "-i" (assoc-ref inputs "patch/freedo+gnu"))
201
202 (let ((arch (car (string-split system #\-))))
203 (setenv "ARCH"
204 (cond ((string=? arch "i686") "i386")
205 (else arch)))
206 (format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
207
208 (let ((build (assoc-ref %standard-phases 'build))
209 (config (assoc-ref inputs "kconfig")))
210
211 ;; Use the architecture-specific config if available, and
212 ;; 'defconfig' otherwise.
213 (if config
214 (begin
215 (copy-file config ".config")
216 (chmod ".config" #o666))
217 (system* "make" "defconfig"))
218
219 ;; Appending works even when the option wasn't in the
220 ;; file. The last one prevails if duplicated.
221 (let ((port (open-file ".config" "a")))
222 (display (string-append "CONFIG_NET_9P=m\n"
223 "CONFIG_NET_9P_VIRTIO=m\n"
224 "CONFIG_VIRTIO_BLK=m\n"
225 "CONFIG_VIRTIO_NET=m\n"
226 ;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html
227 "CONFIG_DEVPTS_MULTIPLE_INSTANCES=y\n"
228 "CONFIG_VIRTIO_PCI=m\n"
229 "CONFIG_VIRTIO_BALLOON=m\n"
230 "CONFIG_VIRTIO_MMIO=m\n"
231 "CONFIG_FUSE_FS=m\n"
232 "CONFIG_CIFS=m\n"
233 "CONFIG_9P_FS=m\n")
234 port)
235 (close-port port))
236
237 (zero? (system* "make" "oldconfig"))
238
239 ;; Call the default `build' phase so `-j' is correctly
240 ;; passed.
241 (apply build #:make-flags "all" args))))
242 (install-phase
243 `(lambda* (#:key inputs outputs #:allow-other-keys)
244 (let* ((out (assoc-ref outputs "out"))
245 (moddir (string-append out "/lib/modules"))
246 (mit (assoc-ref inputs "module-init-tools")))
247 (mkdir-p moddir)
248 (for-each (lambda (file)
249 (copy-file file
250 (string-append out "/" (basename file))))
251 (find-files "." "^(bzImage|System\\.map)$"))
252 (copy-file ".config" (string-append out "/config"))
253 (zero? (system* "make"
254 (string-append "DEPMOD=" mit "/sbin/depmod")
255 (string-append "MODULE_DIR=" moddir)
256 (string-append "INSTALL_PATH=" out)
257 (string-append "INSTALL_MOD_PATH=" out)
258 "INSTALL_MOD_STRIP=1"
259 "modules_install"))))))
260 (package
261 (name "linux-libre")
262 (version version)
263 (source (origin
264 (method url-fetch)
265 (uri (linux-libre-urls version))
266 (sha256
267 (base32
268 "1qyk70m7y7ak94idkqpgyinnnpqpwxvl39rwh8pqdvrcm7w5b0lq"))))
269 (build-system gnu-build-system)
270 (native-inputs `(("perl" ,perl)
271 ("bc" ,bc)
272 ("module-init-tools" ,module-init-tools)
273 ("patch/freedo+gnu" ,%boot-logo-patch)
274
275 ,@(let ((conf (kernel-config (or (%current-target-system)
276 (%current-system)))))
277 (if conf
278 `(("kconfig" ,conf))
279 '()))))
280
281 ;; XXX: Work around an ICE with our patched GCC 4.8.3 while compiling
282 ;; 'drivers/staging/vt6656/michael.o': <http://hydra.gnu.org/build/96389/>.
283 (inputs `(("gcc" ,gcc-4.9)))
284
285 (arguments
286 `(#:modules ((guix build gnu-build-system)
287 (guix build utils)
288 (srfi srfi-1)
289 (ice-9 match))
290 #:phases (alist-replace
291 'build ,build-phase
292 (alist-replace
293 'install ,install-phase
294 (alist-delete 'configure %standard-phases)))
295 #:tests? #f))
296 (synopsis "100% free redistribution of a cleaned Linux kernel")
297 (description
298 "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.
299It has been modified to remove all non-free binary blobs.")
300 (license gpl2)
301 (home-page "http://www.gnu.org/software/linux-libre/"))))
302
303\f
304;;;
305;;; Pluggable authentication modules (PAM).
306;;;
307
308(define-public linux-pam
309 (package
310 (name "linux-pam")
311 (version "1.1.6")
312 (source
313 (origin
314 (method url-fetch)
315 (uri (list (string-append "http://www.linux-pam.org/library/Linux-PAM-"
316 version ".tar.bz2")
317 (string-append "mirror://kernel.org/linux/libs/pam/library/Linux-PAM-"
318 version ".tar.bz2")))
319 (sha256
320 (base32
321 "1hlz2kqvbjisvwyicdincq7nz897b9rrafyzccwzqiqg53b8gf5s"))))
322 (build-system gnu-build-system)
323 (native-inputs
324 `(("flex" ,flex)
325
326 ;; TODO: optional dependencies
327 ;; ("libxcrypt" ,libxcrypt)
328 ;; ("cracklib" ,cracklib)
329 ))
330 (arguments
331 '(;; Most users, such as `shadow', expect the headers to be under
332 ;; `security'.
333 #:configure-flags (list (string-append "--includedir="
334 (assoc-ref %outputs "out")
335 "/include/security"))
336
337 ;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
338 ;; isn't available.
339 #:tests? #f))
340 (home-page "http://www.linux-pam.org/")
341 (synopsis "Pluggable authentication modules for Linux")
342 (description
343 "A *Free* project to implement OSF's RFC 86.0.
344Pluggable authentication modules are small shared object files that can
345be used through the PAM API to perform tasks, like authenticating a user
346at login. Local and dynamic reconfiguration are its key features")
347 (license bsd-3)))
348
349\f
350;;;
351;;; Miscellaneous.
352;;;
353
354(define-public psmisc
355 (package
356 (name "psmisc")
357 (version "22.20")
358 (source
359 (origin
360 (method url-fetch)
361 (uri (string-append "mirror://sourceforge/psmisc/psmisc/psmisc-"
362 version ".tar.gz"))
363 (sha256
364 (base32
365 "052mfraykmxnavpi8s78aljx8w87hyvpx8mvzsgpjsjz73i28wmi"))))
366 (build-system gnu-build-system)
367 (inputs `(("ncurses" ,ncurses)))
368 (home-page "http://psmisc.sourceforge.net/")
369 (synopsis
370 "Small utilities that use the proc filesystem")
371 (description
372 "This PSmisc package is a set of some small useful utilities that
373use the proc filesystem. We're not about changing the world, but
374providing the system administrator with some help in common tasks.")
375 (license gpl2+)))
376
377(define-public util-linux
378 (package
379 (name "util-linux")
380 (version "2.21")
381 (source (origin
382 (method url-fetch)
383 (uri (string-append "mirror://kernel.org/linux/utils/"
384 name "/v" version "/"
385 name "-" version ".2" ".tar.xz"))
386 (sha256
387 (base32
388 "1rpgghf7n0zx0cdy8hibr41wvkm2qp1yvd8ab1rxr193l1jmgcir"))
389 (patches (list (search-patch "util-linux-perl.patch")))
390 (modules '((guix build utils)))
391 (snippet
392 ;; We take the 'logger' program from GNU Inetutils, so remove
393 ;; it from here.
394 '(substitute* "misc-utils/Makefile.in"
395 (("PROGRAMS =(.*) logger(.*)" _ before after)
396 (string-append "PROGRAMS =" before " " after))
397 (("MANS =(.*) logger\\.1(.*)" _ before after)
398 (string-append "MANS =" before " " after))))))
399 (build-system gnu-build-system)
400 (arguments
401 `(#:configure-flags '("--disable-use-tty-group"
402 "--enable-ddate")
403 #:phases (alist-cons-after
404 'install 'patch-chkdupexe
405 (lambda* (#:key outputs #:allow-other-keys)
406 (let ((out (assoc-ref outputs "out")))
407 (substitute* (string-append out "/bin/chkdupexe")
408 ;; Allow 'patch-shebang' to do its work.
409 (("@PERL@") "/bin/perl"))))
410 %standard-phases)))
411 (inputs `(("zlib" ,guix:zlib)
412 ("ncurses" ,ncurses)))
413 (native-inputs
414 `(("perl" ,perl)))
415 (home-page "https://www.kernel.org/pub/linux/utils/util-linux/")
416 (synopsis "Collection of utilities for the Linux kernel")
417 (description
418 "Util-linux is a random collection of utilities for the Linux kernel.")
419
420 ;; Note that util-linux doesn't use the same license for all the
421 ;; code. GPLv2+ is the default license for a code without an
422 ;; explicitly defined license.
423 (license (list gpl3+ gpl2+ gpl2 lgpl2.0+
424 bsd-4 public-domain))))
425
426(define-public procps
427 (package
428 (name "procps")
429 (version "3.2.8")
430 (source (origin
431 (method url-fetch)
432 (uri (string-append "http://procps.sourceforge.net/procps-"
433 version ".tar.gz"))
434 (sha256
435 (base32
436 "0d8mki0q4yamnkk4533kx8mc0jd879573srxhg6r2fs3lkc6iv8i"))
437 (patches (list (search-patch "procps-make-3.82.patch")))))
438 (build-system gnu-build-system)
439 (inputs `(("ncurses" ,ncurses)))
440 (arguments
441 '(#:phases (alist-replace
442 'configure
443 (lambda* (#:key outputs #:allow-other-keys)
444 ;; No `configure', just a single Makefile.
445 (let ((out (assoc-ref outputs "out")))
446 (substitute* "Makefile"
447 (("/usr/") "/")
448 (("--(owner|group) 0") "")
449 (("ldconfig") "true")
450 (("^LDFLAGS[[:blank:]]*:=(.*)$" _ value)
451 ;; Add libproc to the RPATH.
452 (string-append "LDFLAGS := -Wl,-rpath="
453 out "/lib" value))))
454 (setenv "CC" "gcc"))
455 (alist-replace
456 'install
457 (lambda* (#:key outputs #:allow-other-keys)
458 (let ((out (assoc-ref outputs "out")))
459 (and (zero?
460 (system* "make" "install"
461 (string-append "DESTDIR=" out)))
462
463 ;; Sanity check.
464 (zero?
465 (system* (string-append out "/bin/ps")
466 "--version")))))
467 %standard-phases))
468
469 ;; What did you expect? Tests?
470 #:tests? #f))
471 (home-page "http://procps.sourceforge.net/")
472 (synopsis "Utilities that give information about processes")
473 (description
474 "Procps is the package that has a bunch of small useful utilities
475that give information about processes using the Linux /proc file system.
476The package includes the programs ps, top, vmstat, w, kill, free,
477slabtop, and skill.")
478 (license gpl2)))
479
480(define-public usbutils
481 (package
482 (name "usbutils")
483 (version "006")
484 (source
485 (origin
486 (method url-fetch)
487 (uri (string-append "mirror://kernel.org/linux/utils/usb/usbutils/"
488 "usbutils-" version ".tar.xz"))
489 (sha256
490 (base32
491 "03pd57vv8c6x0hgjqcbrxnzi14h8hcghmapg89p8k5zpwpkvbdfr"))))
492 (build-system gnu-build-system)
493 (inputs
494 `(("libusb" ,libusb)))
495 (native-inputs
496 `(("pkg-config" ,pkg-config)))
497 (home-page "http://www.linux-usb.org/")
498 (synopsis
499 "Tools for working with USB devices, such as lsusb")
500 (description
501 "Tools for working with USB devices, such as lsusb.")
502 (license gpl2+)))
503
504(define-public e2fsprogs
505 (package
506 (name "e2fsprogs")
507 (version "1.42.7")
508 (source (origin
509 (method url-fetch)
510 (uri (string-append "mirror://sourceforge/e2fsprogs/e2fsprogs-"
511 version ".tar.gz"))
512 (sha256
513 (base32
514 "0ibkkvp6kan0hn0d1anq4n2md70j5gcm7mwna515w82xwyr02rfw"))))
515 (build-system gnu-build-system)
516 (inputs `(("util-linux" ,util-linux)))
517 (native-inputs `(("pkg-config" ,pkg-config)
518 ("texinfo" ,texinfo))) ; for the libext2fs Info manual
519 (arguments
520 '(;; The 'blkid' command and library are already provided by util-linux,
521 ;; which is the preferred source for them (see, e.g.,
522 ;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b336339909c90559b7db40b455f172>.)
523 #:configure-flags '("--disable-blkid")
524
525 #:phases (alist-cons-before
526 'configure 'patch-shells
527 (lambda _
528 (substitute* "configure"
529 (("/bin/sh (.*)parse-types.sh" _ dir)
530 (string-append (which "sh") " " dir
531 "parse-types.sh")))
532 (substitute* (find-files "." "^Makefile.in$")
533 (("#!/bin/sh")
534 (string-append "#!" (which "sh")))))
535 %standard-phases)
536
537 ;; FIXME: Tests work by comparing the stdout/stderr of programs, that
538 ;; they fail because we get an extra line that says "Can't check if
539 ;; filesystem is mounted due to missing mtab file".
540 #:tests? #f))
541 (home-page "http://e2fsprogs.sourceforge.net/")
542 (synopsis "Creating and checking ext2/ext3/ext4 file systems")
543 (description
544 "This package provides tools for manipulating ext2/ext3/ext4 file systems.")
545 (license (list gpl2 ; programs
546 lgpl2.0 ; libext2fs
547 x11)))) ; libuuid
548
549(define-public e2fsck/static
550 (package
551 (name "e2fsck-static")
552 (version (package-version e2fsprogs))
553 (build-system trivial-build-system)
554 (source #f)
555 (arguments
556 `(#:modules ((guix build utils))
557 #:builder
558 (begin
559 (use-modules (guix build utils)
560 (ice-9 ftw)
561 (srfi srfi-26))
562
563 (let ((source (string-append (assoc-ref %build-inputs "e2fsprogs")
564 "/sbin"))
565 (bin (string-append (assoc-ref %outputs "out") "/sbin")))
566 (mkdir-p bin)
567 (with-directory-excursion bin
568 (for-each (lambda (file)
569 (copy-file (string-append source "/" file)
570 file)
571 (remove-store-references file)
572 (chmod file #o555))
573 (scandir source (cut string-prefix? "fsck." <>))))))))
574 (inputs `(("e2fsprogs" ,(static-package e2fsprogs))))
575 (synopsis "Statically-linked fsck.* commands from e2fsprogs")
576 (description
577 "This package provides statically-linked command of fsck.ext[234] taken
578from the e2fsprogs package. It is meant to be used in initrds.")
579 (home-page (package-home-page e2fsprogs))
580 (license (package-license e2fsprogs))))
581
582(define-public strace
583 (package
584 (name "strace")
585 (version "4.7")
586 (source (origin
587 (method url-fetch)
588 (uri (string-append "mirror://sourceforge/strace/strace-"
589 version ".tar.xz"))
590 (sha256
591 (base32
592 "158iwk0pl2mfw93m1843xb7a2zb8p6lh0qim07rca6f1ff4dk764"))))
593 (build-system gnu-build-system)
594 (native-inputs `(("perl" ,perl)))
595 (home-page "http://strace.sourceforge.net/")
596 (synopsis "System call tracer for Linux")
597 (description
598 "strace is a system call tracer, i.e. a debugging tool which prints out a
599trace of all the system calls made by a another process/program.")
600 (license bsd-3)))
601
602(define-public alsa-lib
603 (package
604 (name "alsa-lib")
605 (version "1.0.27.1")
606 (source (origin
607 (method url-fetch)
608 (uri (string-append
609 "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-"
610 version ".tar.bz2"))
611 (sha256
612 (base32
613 "0fx057746dj7rjdi0jnvx2m9b0y1lgdkh1hks87d8w32xyihf3k9"))
614 (patches (list (search-patch "alsa-lib-mips-atomic-fix.patch")))))
615 (build-system gnu-build-system)
616 (home-page "http://www.alsa-project.org/")
617 (synopsis "The Advanced Linux Sound Architecture libraries")
618 (description
619 "The Advanced Linux Sound Architecture (ALSA) provides audio and
620MIDI functionality to the Linux-based operating system.")
621 (license lgpl2.1+)))
622
623(define-public alsa-utils
624 (package
625 (name "alsa-utils")
626 (version "1.0.27.2")
627 (source (origin
628 (method url-fetch)
629 (uri (string-append "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-"
630 version ".tar.bz2"))
631 (sha256
632 (base32
633 "1sjjngnq50jv5ilwsb4zys6smifni3bd6fn28gbnhfrg14wsrgq2"))))
634 (build-system gnu-build-system)
635 (arguments
636 ;; XXX: Disable man page creation until we have DocBook.
637 '(#:configure-flags (list "--disable-xmlto"
638
639 ;; The udev rule is responsible for restoring
640 ;; the volume.
641 (string-append "--with-udev-rules-dir="
642 (assoc-ref %outputs "out")
643 "/lib/udev/rules.d"))
644 #:phases (alist-cons-before
645 'install 'pre-install
646 (lambda _
647 ;; Don't try to mkdir /var/lib/alsa.
648 (substitute* "Makefile"
649 (("\\$\\(MKDIR_P\\) .*ASOUND_STATE_DIR.*")
650 "true\n")))
651 %standard-phases)))
652 (inputs
653 `(("libsamplerate" ,libsamplerate)
654 ("ncurses" ,ncurses)
655 ("alsa-lib" ,alsa-lib)
656 ("xmlto" ,xmlto)
657 ("gettext" ,gnu-gettext)))
658 (home-page "http://www.alsa-project.org/")
659 (synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)")
660 (description
661 "The Advanced Linux Sound Architecture (ALSA) provides audio and
662MIDI functionality to the Linux-based operating system.")
663
664 ;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are
665 ;; GPLv2-only.
666 (license gpl2)))
667
668(define-public iptables
669 (package
670 (name "iptables")
671 (version "1.4.16.2")
672 (source (origin
673 (method url-fetch)
674 (uri (string-append
675 "http://www.netfilter.org/projects/iptables/files/iptables-"
676 version ".tar.bz2"))
677 (sha256
678 (base32
679 "0vkg5lzkn4l3i1sm6v3x96zzvnv9g7mi0qgj6279ld383mzcws24"))))
680 (build-system gnu-build-system)
681 (arguments '(#:tests? #f)) ; no test suite
682 (home-page "http://www.netfilter.org/projects/iptables/index.html")
683 (synopsis "Program to configure the Linux IP packet filtering rules")
684 (description
685 "iptables is the userspace command line program used to configure the
686Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted towards
687system administrators. Since Network Address Translation is also configured
688from the packet filter ruleset, iptables is used for this, too. The iptables
689package also includes ip6tables. ip6tables is used for configuring the IPv6
690packet filter.")
691 (license gpl2+)))
692
693(define-public iproute
694 (package
695 (name "iproute2")
696 (version "3.12.0")
697 (source (origin
698 (method url-fetch)
699 (uri (string-append
700 "mirror://kernel.org/linux/utils/net/iproute2/iproute2-"
701 version ".tar.xz"))
702 (sha256
703 (base32
704 "04gi11gh087bg2nlxhj0lxrk8l9qxkpr88nsiil23917bm3h1xj4"))))
705 (build-system gnu-build-system)
706 (arguments
707 `(#:tests? #f ; no test suite
708 #:make-flags (let ((out (assoc-ref %outputs "out")))
709 (list "DESTDIR="
710 (string-append "LIBDIR=" out "/lib")
711 (string-append "SBINDIR=" out "/sbin")
712 (string-append "CONFDIR=" out "/etc")
713 (string-append "DOCDIR=" out "/share/doc/"
714 ,name "-" ,version)
715 (string-append "MANDIR=" out "/share/man")))
716 #:phases (alist-cons-before
717 'install 'pre-install
718 (lambda _
719 ;; Don't attempt to create /var/lib/arpd.
720 (substitute* "Makefile"
721 (("^.*ARPDDIR.*$") "")))
722 %standard-phases)))
723 (inputs
724 `(("iptables" ,iptables)
725 ("db4" ,bdb)))
726 (native-inputs
727 `(("pkg-config" ,pkg-config)
728 ("flex" ,flex)
729 ("bison" ,bison)))
730 (home-page
731 "http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2")
732 (synopsis
733 "Utilities for controlling TCP/IP networking and traffic in Linux")
734 (description
735 "Iproute2 is a collection of utilities for controlling TCP/IP
736networking and traffic with the Linux kernel.
737
738Most network configuration manuals still refer to ifconfig and route as the
739primary network configuration tools, but ifconfig is known to behave
740inadequately in modern network environments. They should be deprecated, but
741most distros still include them. Most network configuration systems make use
742of ifconfig and thus provide a limited feature set. The /etc/net project aims
743to support most modern network technologies, as it doesn't use ifconfig and
744allows a system administrator to make use of all iproute2 features, including
745traffic control.
746
747iproute2 is usually shipped in a package called iproute or iproute2 and
748consists of several tools, of which the most important are ip and tc. ip
749controls IPv4 and IPv6 configuration and tc stands for traffic control. Both
750tools print detailed usage messages and are accompanied by a set of
751manpages.")
752 (license gpl2+)))
753
754(define-public net-tools
755 ;; XXX: This package is basically unmaintained, but it provides a few
756 ;; commands not yet provided by Inetutils, such as 'route', so we have to
757 ;; live with it.
758 (package
759 (name "net-tools")
760 (version "1.60")
761 (home-page "http://www.tazenda.demon.co.uk/phil/net-tools/")
762 (source (origin
763 (method url-fetch)
764 (uri (string-append home-page "/" name "-"
765 version ".tar.bz2"))
766 (sha256
767 (base32
768 "0yvxrzk0mzmspr7sa34hm1anw6sif39gyn85w4c5ywfn8inxvr3s"))
769 (patches
770 (list (search-patch "net-tools-bitrot.patch")))))
771 (build-system gnu-build-system)
772 (arguments
773 '(#:phases (alist-cons-after
774 'unpack 'patch
775 (lambda* (#:key inputs #:allow-other-keys)
776 (define (apply-patch file)
777 (zero? (system* "patch" "-p1" "--batch"
778 "--input" file)))
779
780 (let ((patch.gz (assoc-ref inputs "patch")))
781 (format #t "applying Debian patch set '~a'...~%"
782 patch.gz)
783 (system (string-append "gunzip < " patch.gz " > the-patch"))
784 (pk 'here)
785 (and (apply-patch "the-patch")
786 (for-each apply-patch
787 (find-files "debian/patches"
788 "\\.patch")))))
789 (alist-replace
790 'configure
791 (lambda* (#:key outputs #:allow-other-keys)
792 (let ((out (assoc-ref outputs "out")))
793 (mkdir-p (string-append out "/bin"))
794 (mkdir-p (string-append out "/sbin"))
795
796 ;; Pretend we have everything...
797 (system "yes | make config")
798
799 ;; ... except we don't have libdnet, so remove that
800 ;; definition.
801 (substitute* '("config.make" "config.h")
802 (("^.*HAVE_AFDECnet.*$") ""))))
803 %standard-phases))
804
805 ;; Binaries that depend on libnet-tools.a don't declare that
806 ;; dependency, making it parallel-unsafe.
807 #:parallel-build? #f
808
809 #:tests? #f ; no test suite
810 #:make-flags (let ((out (assoc-ref %outputs "out")))
811 (list "CC=gcc"
812 (string-append "BASEDIR=" out)
813 (string-append "INSTALLNLSDIR=" out "/share/locale")
814 (string-append "mandir=/share/man")))))
815
816 ;; Use the big Debian patch set (the thing does not even compile out of
817 ;; the box.)
818 (inputs `(("patch" ,(origin
819 (method url-fetch)
820 (uri
821 "http://ftp.de.debian.org/debian/pool/main/n/net-tools/net-tools_1.60-24.2.diff.gz")
822 (sha256
823 (base32
824 "0p93lsqx23v5fv4hpbrydmfvw1ha2rgqpn2zqbs2jhxkzhjc030p"))))))
825 (native-inputs `(("gettext" ,gnu-gettext)))
826
827 (synopsis "Tools for controlling the network subsystem in Linux")
828 (description
829 "This package includes the important tools for controlling the network
830subsystem of the Linux kernel. This includes arp, hostname, ifconfig,
831netstat, rarp and route. Additionally, this package contains utilities
832relating to particular network hardware types (plipconfig, slattach) and
833advanced aspects of IP configuration (iptunnel, ipmaddr).")
834 (license gpl2+)))
835
836(define-public libcap
837 (package
838 (name "libcap")
839 (version "2.22")
840 (source (origin
841 (method url-fetch)
842
843 ;; Tarballs used to be available from
844 ;; <https://www.kernel.org/pub/linux/libs/security/linux-privs/>
845 ;; but they never came back after kernel.org was compromised.
846 (uri (string-append
847 "mirror://debian/pool/main/libc/libcap2/libcap2_"
848 version ".orig.tar.gz"))
849 (sha256
850 (base32
851 "07vjhkznm82p8dm4w6j8mmg7h5c70lp5s9bwwfdmgwpbixfydjp1"))))
852 (build-system gnu-build-system)
853 (arguments '(#:phases (alist-delete 'configure %standard-phases)
854 #:tests? #f ; no 'check' target
855 #:make-flags (list "lib=lib"
856 (string-append "prefix="
857 (assoc-ref %outputs "out"))
858 "RAISE_SETFCAP=no")))
859 (native-inputs `(("perl" ,perl)))
860 (inputs `(("attr" ,attr)))
861 (home-page "https://sites.google.com/site/fullycapable/")
862 (synopsis "Library for working with POSIX capabilities")
863 (description
864 "Libcap2 provides a programming interface to POSIX capabilities on
865Linux-based operating systems.")
866
867 ;; License is BSD-3 or GPLv2, at the user's choice.
868 (license gpl2)))
869
870(define-public bridge-utils
871 (package
872 (name "bridge-utils")
873 (version "1.5")
874 (source (origin
875 (method url-fetch)
876 (uri (string-append "mirror://sourceforge/bridge/bridge-utils-"
877 version ".tar.gz"))
878 (sha256
879 (base32
880 "12367cwqmi0yqphi6j8rkx97q8hw52yq2fx4k0xfclkcizxybya2"))))
881 (build-system gnu-build-system)
882
883 ;; The tarball lacks all the generated files.
884 (native-inputs `(("autoconf" ,autoconf)
885 ("automake" ,automake)))
886 (arguments
887 '(#:phases (alist-cons-before
888 'configure 'bootstrap
889 (lambda _
890 (zero? (system* "autoreconf" "-vf")))
891 %standard-phases)
892 #:tests? #f)) ; no 'check' target
893
894 (home-page
895 "http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge")
896 (synopsis "Manipulate Ethernet bridges")
897 (description
898 "Utilities for Linux's Ethernet bridging facilities. A bridge is a way
899to connect two Ethernet segments together in a protocol independent way.
900Packets are forwarded based on Ethernet address, rather than IP address (like
901a router). Since forwarding is done at Layer 2, all protocols can go
902transparently through a bridge.")
903 (license gpl2+)))
904
905(define-public libnl
906 (package
907 (name "libnl")
908 (version "3.2.13")
909 (source (origin
910 (method url-fetch)
911 (uri (string-append
912 "http://www.infradead.org/~tgr/libnl/files/libnl-"
913 version ".tar.gz"))
914 (sha256
915 (base32
916 "1ydw42lsd572qwrfgws97n76hyvjdpanwrxm03lysnhfxkna1ssd"))))
917 (build-system gnu-build-system)
918 (native-inputs `(("flex" ,flex) ("bison" ,bison)))
919 (home-page "http://www.infradead.org/~tgr/libnl/")
920 (synopsis "NetLink protocol library suite")
921 (description
922 "The libnl suite is a collection of libraries providing APIs to netlink
923protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarly
924between the kernel and user space processes. It was designed to be a more
925flexible successor to ioctl to provide mainly networking related kernel
926configuration and monitoring interfaces.")
927
928 ;; Most files are LGPLv2.1-only, but some are GPLv2-only (like
929 ;; 'nl-addr-add.c'), so the result is GPLv2-only.
930 (license gpl2)))
931
932(define-public powertop
933 (package
934 (name "powertop")
935 (version "2.5")
936 (source
937 (origin
938 (method url-fetch)
939 (uri (string-append
940 "https://01.org/powertop/sites/default/files/downloads/powertop-"
941 version ".tar.gz"))
942 (sha256
943 (base32
944 "02rwqbpasdayl201v0549gbp2f82rd0hqiv3i111r7npanjhhb4b"))))
945 (build-system gnu-build-system)
946 (inputs
947 ;; TODO: Add pciutils.
948 `(("zlib" ,guix:zlib)
949 ;; ("pciutils" ,pciutils)
950 ("ncurses" ,ncurses)
951 ("libnl" ,libnl)))
952 (native-inputs
953 `(("pkg-config" ,pkg-config)))
954 (home-page "https://01.org/powertop/")
955 (synopsis "Analyze power consumption on Intel-based laptops")
956 (description
957 "PowerTOP is a Linux tool to diagnose issues with power consumption and
958power management. In addition to being a diagnostic tool, PowerTOP also has
959an interactive mode where the user can experiment various power management
960settings for cases where the operating system has not enabled these
961settings.")
962 (license gpl2)))
963
964(define-public aumix
965 (package
966 (name "aumix")
967 (version "2.9.1")
968 (source (origin
969 (method url-fetch)
970 (uri (string-append
971 "http://www.jpj.net/~trevor/aumix/releases/aumix-"
972 version ".tar.bz2"))
973 (sha256
974 (base32
975 "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj"))))
976 (build-system gnu-build-system)
977 (inputs `(("ncurses" ,ncurses)))
978 (home-page "http://www.jpj.net/~trevor/aumix.html")
979 (synopsis "Audio mixer for X and the console")
980 (description
981 "Aumix adjusts an audio mixer from X, the console, a terminal,
982the command line or a script.")
983 (license gpl2+)))
984
985(define-public iotop
986 (package
987 (name "iotop")
988 (version "0.6")
989 (source
990 (origin
991 (method url-fetch)
992 (uri (string-append "http://guichaz.free.fr/iotop/files/iotop-"
993 version ".tar.gz"))
994 (sha256 (base32
995 "1kp8mqg2pbxq4xzpianypadfxcsyfgwcaqgqia6h9fsq6zyh4z0s"))))
996 (build-system python-build-system)
997 (arguments
998 ;; The setup.py script expects python-2.
999 `(#:python ,python-2
1000 ;; There are currently no checks in the package.
1001 #:tests? #f))
1002 (native-inputs `(("python" ,python-2)))
1003 (home-page "http://guichaz.free.fr/iotop/")
1004 (synopsis
1005 "Displays the IO activity of running processes")
1006 (description
1007 "Iotop is a Python program with a top like user interface to show the
1008processes currently causing I/O.")
1009 (license gpl2+)))
1010
1011(define-public fuse
1012 (package
1013 (name "fuse")
1014 (version "2.9.3")
1015 (source (origin
1016 (method url-fetch)
1017 (uri (string-append "mirror://sourceforge/fuse/fuse-"
1018 version ".tar.gz"))
1019 (sha256
1020 (base32
1021 "071r6xjgssy8vwdn6m28qq1bqxsd2bphcd2mzhq0grf5ybm87sqb"))))
1022 (build-system gnu-build-system)
1023 (inputs `(("util-linux" ,util-linux)))
1024 (arguments
1025 '(#:configure-flags (list (string-append "MOUNT_FUSE_PATH="
1026 (assoc-ref %outputs "out")
1027 "/sbin")
1028 (string-append "INIT_D_PATH="
1029 (assoc-ref %outputs "out")
1030 "/etc/init.d")
1031
1032 ;; The rule makes /dev/fuse 666.
1033 (string-append "UDEV_RULES_PATH="
1034 (assoc-ref %outputs "out")
1035 "/lib/udev/rules.d"))
1036 #:phases (alist-cons-before
1037 'build 'set-file-names
1038 (lambda* (#:key inputs #:allow-other-keys)
1039 ;; libfuse calls out to mount(8) and umount(8). Make sure
1040 ;; it refers to the right ones.
1041 (substitute* '("lib/mount_util.c" "util/mount_util.c")
1042 (("/bin/(u?)mount" _ maybe-u)
1043 (string-append (assoc-ref inputs "util-linux")
1044 "/bin/" maybe-u "mount")))
1045 (substitute* '("util/mount.fuse.c")
1046 (("/bin/sh")
1047 (which "sh")))
1048
1049 ;; This hack leads libfuse to search for 'fusermount' in
1050 ;; $PATH, where it may find a setuid-root binary, instead of
1051 ;; trying solely $out/sbin/fusermount and failing because
1052 ;; it's not setuid.
1053 (substitute* "lib/Makefile"
1054 (("-DFUSERMOUNT_DIR=[[:graph:]]+")
1055 "-DFUSERMOUNT_DIR=\\\"/var/empty\\\"")))
1056 %standard-phases)))
1057 (home-page "http://fuse.sourceforge.net/")
1058 (synopsis "Support file systems implemented in user space")
1059 (description
1060 "As a consequence of its monolithic design, file system code for Linux
1061normally goes into the kernel itself---which is not only a robustness issue,
1062but also an impediment to system extensibility. FUSE, for \"file systems in
1063user space\", is a kernel module and user-space library that tries to address
1064part of this problem by allowing users to run file system implementations as
1065user-space processes.")
1066 (license (list lgpl2.1 ; library
1067 gpl2+)))) ; command-line utilities
1068
1069(define-public unionfs-fuse
1070 (package
1071 (name "unionfs-fuse")
1072 (version "0.26")
1073 (source (origin
1074 (method url-fetch)
1075 (uri (string-append
1076 "http://podgorny.cz/unionfs-fuse/releases/unionfs-fuse-"
1077 version ".tar.xz"))
1078 (sha256
1079 (base32
1080 "0qpnr4czgc62vsfnmv933w62nq3xwcbnvqch72qakfgca75rsp4d"))))
1081 (build-system cmake-build-system)
1082 (inputs `(("fuse" ,fuse)))
1083 (arguments '(#:tests? #f)) ; no tests
1084 (home-page "http://podgorny.cz/moin/UnionFsFuse")
1085 (synopsis "User-space union file system")
1086 (description
1087 "UnionFS-FUSE is a flexible union file system implementation in user
1088space, using the FUSE library. Mounting a union file system allows you to
1089\"aggregate\" the contents of several directories into a single mount point.
1090UnionFS-FUSE additionally supports copy-on-write.")
1091 (license bsd-3)))
1092
1093(define fuse-static
1094 (package (inherit fuse)
1095 (name "fuse-static")
1096 (source (origin (inherit (package-source fuse))
1097 (modules '((guix build utils)))
1098 (snippet
1099 ;; Normally libfuse invokes mount(8) so that /etc/mtab is
1100 ;; updated. Change calls to 'mtab_needs_update' to 0 so that
1101 ;; it doesn't do that, allowing us to remove the dependency on
1102 ;; util-linux (something that is useful in initrds.)
1103 '(substitute* '("lib/mount_util.c"
1104 "util/mount_util.c")
1105 (("mtab_needs_update[[:blank:]]*\\([a-z_]+\\)")
1106 "0")
1107 (("/bin/")
1108 "")))))))
1109
1110(define-public unionfs-fuse/static
1111 (package (inherit unionfs-fuse)
1112 (synopsis "User-space union file system (statically linked)")
1113 (name (string-append (package-name unionfs-fuse) "-static"))
1114 (source (origin (inherit (package-source unionfs-fuse))
1115 (modules '((guix build utils)))
1116 (snippet
1117 ;; Add -ldl to the libraries, because libfuse.a needs that.
1118 '(substitute* "src/CMakeLists.txt"
1119 (("target_link_libraries(.*)\\)" _ libs)
1120 (string-append "target_link_libraries"
1121 libs " dl)"))))))
1122 (arguments
1123 '(#:tests? #f
1124 #:configure-flags '("-DCMAKE_EXE_LINKER_FLAGS=-static")
1125 #:phases (alist-cons-after
1126 'install 'post-install
1127 (lambda* (#:key outputs #:allow-other-keys)
1128 (let* ((out (assoc-ref outputs "out"))
1129 (exe (string-append out "/bin/unionfs")))
1130 ;; By default, 'unionfs' keeps references to
1131 ;; $glibc/share/locale and similar stuff. Remove them.
1132 (remove-store-references exe)))
1133 %standard-phases)))
1134 (inputs `(("fuse" ,fuse-static)))))
1135
1136(define-public sshfs-fuse
1137 (package
1138 (name "sshfs-fuse")
1139 (version "2.5")
1140 (source (origin
1141 (method url-fetch)
1142 (uri (string-append "mirror://sourceforge/fuse/sshfs-fuse-"
1143 version ".tar.gz"))
1144 (sha256
1145 (base32
1146 "0gp6qr33l2p0964j0kds0dfmvyyf5lpgsn11daf0n5fhwm9185z9"))))
1147 (build-system gnu-build-system)
1148 (inputs
1149 `(("fuse" ,fuse)
1150 ("glib" ,glib)))
1151 (native-inputs
1152 `(("pkg-config" ,pkg-config)))
1153 (home-page "http://fuse.sourceforge.net/sshfs.html")
1154 (synopsis "Mount remote file systems over SSH")
1155 (description
1156 "This is a file system client based on the SSH File Transfer Protocol.
1157Since most SSH servers already support this protocol it is very easy to set
1158up: on the server side there's nothing to do; on the client side mounting the
1159file system is as easy as logging into the server with an SSH client.")
1160 (license gpl2+)))
1161
1162(define-public numactl
1163 (package
1164 (name "numactl")
1165 (version "2.0.9")
1166 (source (origin
1167 (method url-fetch)
1168 (uri (string-append
1169 "ftp://oss.sgi.com/www/projects/libnuma/download/numactl-"
1170 version
1171 ".tar.gz"))
1172 (sha256
1173 (base32
1174 "073myxlyyhgxh1w3r757ajixb7s2k69czc3r0g12c3scq7k3784w"))))
1175 (build-system gnu-build-system)
1176 (arguments
1177 '(#:phases (alist-replace
1178 'configure
1179 (lambda* (#:key outputs #:allow-other-keys)
1180 ;; There's no 'configure' script, just a raw makefile.
1181 (substitute* "Makefile"
1182 (("^prefix := .*$")
1183 (string-append "prefix := " (assoc-ref outputs "out")
1184 "\n"))
1185 (("^libdir := .*$")
1186 ;; By default the thing tries to install under
1187 ;; $prefix/lib64 when on a 64-bit platform.
1188 (string-append "libdir := $(prefix)/lib\n"))))
1189 %standard-phases)
1190
1191 #:make-flags (list
1192 ;; By default the thing tries to use 'cc'.
1193 "CC=gcc"
1194
1195 ;; Make sure programs have an RPATH so they can find
1196 ;; libnuma.so.
1197 (string-append "LDLIBS=-Wl,-rpath="
1198 (assoc-ref %outputs "out") "/lib"))
1199
1200 ;; There's a 'test' target, but it requires NUMA support in the kernel
1201 ;; to run, which we can't assume to have.
1202 #:tests? #f))
1203 (home-page "http://oss.sgi.com/projects/libnuma/")
1204 (synopsis "Tools for non-uniform memory access (NUMA) machines")
1205 (description
1206 "NUMA stands for Non-Uniform Memory Access, in other words a system whose
1207memory is not all in one place. The numactl program allows you to run your
1208application program on specific CPU's and memory nodes. It does this by
1209supplying a NUMA memory policy to the operating system before running your
1210program.
1211
1212The package contains other commands, such as numademo, numastat and memhog.
1213The numademo command provides a quick overview of NUMA performance on your
1214system.")
1215 (license (list gpl2 ; programs
1216 lgpl2.1)))) ; library
1217
1218(define-public kbd
1219 (package
1220 (name "kbd")
1221 (version "2.0.1")
1222 (source (origin
1223 (method url-fetch)
1224 (uri (string-append "mirror://kernel.org/linux/utils/kbd/kbd-"
1225 version ".tar.gz"))
1226 (sha256
1227 (base32
1228 "0c34b0za2v0934acvgnva0vaqpghmmhz4zh7k0m9jd4mbc91byqm"))
1229 (modules '((guix build utils)))
1230 (snippet
1231 '(begin
1232 (substitute* "tests/Makefile.in"
1233 ;; The '%: %.in' rule incorrectly uses @VERSION@.
1234 (("@VERSION@")
1235 "[@]VERSION[@]"))
1236 (substitute* '("src/unicode_start" "src/unicode_stop")
1237 ;; Assume the Coreutils are in $PATH.
1238 (("/usr/bin/tty")
1239 "tty"))))))
1240 (build-system gnu-build-system)
1241 (arguments
1242 '(#:phases (alist-cons-before
1243 'build 'pre-build
1244 (lambda* (#:key inputs #:allow-other-keys)
1245 (let ((gzip (assoc-ref %build-inputs "gzip"))
1246 (bzip2 (assoc-ref %build-inputs "bzip2")))
1247 (substitute* "src/libkeymap/findfile.c"
1248 (("gzip")
1249 (string-append gzip "/bin/gzip"))
1250 (("bzip2")
1251 (string-append bzip2 "/bin/bzip2")))))
1252 (alist-cons-after
1253 'install 'post-install
1254 (lambda* (#:key outputs #:allow-other-keys)
1255 ;; Make sure these programs find their comrades.
1256 (let* ((out (assoc-ref outputs "out"))
1257 (bin (string-append out "/bin")))
1258 (for-each (lambda (prog)
1259 (wrap-program (string-append bin "/" prog)
1260 `("PATH" ":" prefix (,bin))))
1261 '("unicode_start" "unicode_stop"))))
1262 %standard-phases))))
1263 (inputs `(("check" ,check)
1264 ("gzip" ,guix:gzip)
1265 ("bzip2" ,guix:bzip2)
1266 ("pam" ,linux-pam)))
1267 (native-inputs `(("pkg-config" ,pkg-config)))
1268 (home-page "ftp://ftp.kernel.org/pub/linux/utils/kbd/")
1269 (synopsis "Linux keyboard utilities and keyboard maps")
1270 (description
1271 "This package contains keytable files and keyboard utilities compatible
1272for systems using the Linux kernel. This includes commands such as
1273'loadkeys', 'setfont', 'kbdinfo', and 'chvt'.")
1274 (license gpl2+)))
1275
1276(define-public inotify-tools
1277 (package
1278 (name "inotify-tools")
1279 (version "3.13")
1280 (source (origin
1281 (method url-fetch)
1282 (uri (string-append
1283 "mirror://sourceforge/inotify-tools/inotify-tools/"
1284 version "/inotify-tools-" version ".tar.gz"))
1285 (sha256
1286 (base32
1287 "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6"))))
1288 (build-system gnu-build-system)
1289 (home-page "http://inotify-tools.sourceforge.net/")
1290 (synopsis "Monitor file accesses")
1291 (description
1292 "The inotify-tools packages provides a C library and command-line tools
1293to use Linux' inotify mechanism, which allows file accesses to be monitored.")
1294 (license gpl2+)))
1295
1296(define-public kmod
1297 (package
1298 (name "kmod")
1299 (version "17")
1300 (source (origin
1301 (method url-fetch)
1302 (uri
1303 (string-append "mirror://kernel.org/linux/utils/kernel/kmod/"
1304 "kmod-" version ".tar.xz"))
1305 (sha256
1306 (base32
1307 "1yid3a9b64a60ybj66fk2ysrq5klnl0ijl4g624cl16y8404g9rv"))
1308 (patches (list (search-patch "kmod-module-directory.patch")))))
1309 (build-system gnu-build-system)
1310 (native-inputs
1311 `(("pkg-config" ,pkg-config)))
1312 (inputs
1313 `(("xz" ,guix:xz)
1314 ("zlib" ,guix:zlib)))
1315 (arguments
1316 `(#:tests? #f ; FIXME: Investigate test failures
1317 #:configure-flags '("--with-xz" "--with-zlib")
1318 #:phases (alist-cons-after
1319 'install 'install-modprobe&co
1320 (lambda* (#:key outputs #:allow-other-keys)
1321 (let* ((out (assoc-ref outputs "out"))
1322 (bin (string-append out "/bin")))
1323 (for-each (lambda (tool)
1324 (symlink "kmod"
1325 (string-append bin "/" tool)))
1326 '("insmod" "rmmod" "lsmod" "modprobe"
1327 "modinfo" "depmod"))))
1328 %standard-phases)))
1329 (home-page "https://www.kernel.org/")
1330 (synopsis "Kernel module tools")
1331 (description "Kmod is a set of tools to handle common tasks with Linux
1332kernel modules like insert, remove, list, check properties, resolve
1333dependencies and aliases.
1334
1335These tools are designed on top of libkmod, a library that is shipped with
1336kmod. The aim is to be compatible with tools, configurations and indices
1337from the module-init-tools project.")
1338 (license gpl2+))) ; library under lgpl2.1+
1339
1340(define-public udev
1341 ;; The last pre-systemd version.
1342 (package
1343 (name "udev")
1344 (version "182")
1345 (source (origin
1346 (method url-fetch)
1347 (uri (string-append
1348 "mirror://kernel.org/linux/utils/kernel/hotplug/udev-"
1349 version ".tar.xz"))
1350 (sha256
1351 (base32
1352 "1awp7p07gi083w0dwqhhbbas68a7fx2sbm1yf1ip2jwf7cpqkf5d"))
1353 (patches (list (search-patch "udev-gir-libtool.patch")))))
1354 (build-system gnu-build-system)
1355 (arguments
1356 `(#:configure-flags (list (string-append
1357 "--with-pci-ids-path="
1358 (assoc-ref %build-inputs "pciutils")
1359 "/share/pci.ids.gz")
1360
1361 "--with-firmware-path=/no/firmware"
1362
1363 ;; Work around undefined reference to
1364 ;; 'mq_getattr' in sc-daemon.c.
1365 "LDFLAGS=-lrt")))
1366 (native-inputs
1367 `(("pkg-config" ,pkg-config)
1368 ("gperf" ,gperf)
1369 ("glib" ,glib "bin") ; glib-genmarshal, etc.
1370 ("perl" ,perl) ; for the tests
1371 ("python" ,python-2))) ; ditto
1372 (inputs
1373 `(("kmod" ,kmod)
1374 ("pciutils" ,pciutils)
1375 ("usbutils" ,usbutils)
1376 ("util-linux" ,util-linux)
1377 ("glib" ,glib)
1378 ("gobject-introspection" ,gobject-introspection)))
1379 (home-page "http://www.freedesktop.org/software/systemd/libudev/")
1380 (synopsis "Userspace device management")
1381 (description "Udev is a daemon which dynamically creates and removes
1382device nodes from /dev/, handles hotplug events and loads drivers at boot
1383time.")
1384 (license gpl2+))) ; libudev is under lgpl2.1+
1385
1386(define-public eudev
1387 ;; The post-systemd fork, maintained by Gentoo.
1388 (package (inherit udev)
1389 (name "eudev")
1390 (version "1.10")
1391 (source (origin
1392 (method url-fetch)
1393 (uri (string-append
1394 "http://dev.gentoo.org/~blueness/eudev/eudev-"
1395 version ".tar.gz"))
1396 (sha256
1397 (base32
1398 "1l907bvz6dcykvaq8d4iklvfpb9fyrnh1a29g3c28gkx2hlyn7j0"))
1399 (patches (list (search-patch "eudev-rules-directory.patch")))
1400 (modules '((guix build utils)))
1401 (snippet
1402 ;; 'configure' checks uses <linux/btrfs.h> as an indication of
1403 ;; whether Linux headers are available, but it doesn't actually
1404 ;; use it, and our 'linux-libre-headers' package doesn't
1405 ;; provide it. So just remove that.
1406 '(substitute* "configure"
1407 (("linux/btrfs\\.h")
1408 "")))))
1409 (arguments
1410 (substitute-keyword-arguments (package-arguments udev)
1411 ((#:configure-flags flags)
1412 `(cons "--enable-libkmod" ,flags))))
1413 (home-page "http://www.gentoo.org/proj/en/eudev/")))
1414
1415(define-public lvm2
1416 (package
1417 (name "lvm2")
1418 (version "2.02.109")
1419 (source (origin
1420 (method url-fetch)
1421 (uri (string-append "ftp://sources.redhat.com/pub/lvm2/releases/LVM2."
1422 version ".tgz"))
1423 (sha256
1424 (base32
1425 "1rv5ivg0l1w3nwzwdkqixm96h5bzg7ib4rr196ysb2lw42jmpjbv"))
1426 (modules '((guix build utils)))
1427 (snippet
1428 '(begin
1429 (use-modules (guix build utils))
1430
1431 ;; Honor sysconfdir.
1432 (substitute* "make.tmpl.in"
1433 (("confdir = .*$")
1434 "confdir = @sysconfdir@\n")
1435 (("DEFAULT_SYS_DIR = @DEFAULT_SYS_DIR@")
1436 "DEFAULT_SYS_DIR = @sysconfdir@"))))))
1437 (build-system gnu-build-system)
1438 (native-inputs
1439 `(("pkg-config" ,pkg-config)
1440 ("procps" ,procps))) ;tests use 'pgrep'
1441 (inputs
1442 `(("udev" ,udev)))
1443 (arguments
1444 '(#:phases (alist-cons-after
1445 'configure 'set-makefile-shell
1446 (lambda _
1447 ;; Use 'sh', not 'bash', so that '. lib/utils.sh' works as
1448 ;; expected.
1449 (setenv "SHELL" (which "sh"))
1450
1451 ;; Replace /bin/sh with the right file name.
1452 (patch-makefile-SHELL "make.tmpl"))
1453 %standard-phases)
1454
1455 #:configure-flags (list (string-append "--sysconfdir="
1456 (assoc-ref %outputs "out")
1457 "/etc/lvm")
1458 "--enable-udev_sync"
1459 "--enable-udev_rules"
1460
1461 ;; Make sure programs such as 'dmsetup' can
1462 ;; find libdevmapper.so.
1463 (string-append "LDFLAGS=-Wl,-rpath="
1464 (assoc-ref %outputs "out")
1465 "/lib"))
1466
1467 ;; The tests use 'mknod', which requires root access.
1468 #:tests? #f))
1469 (home-page "http://sourceware.org/lvm2/")
1470 (synopsis "Logical volume management for Linux")
1471 (description
1472 "LVM2 is the logical volume management tool set for Linux-based systems.
1473This package includes the user-space libraries and tools, including the device
1474mapper. Kernel components are part of Linux-libre.")
1475
1476 ;; Libraries (liblvm2, libdevmapper) are LGPLv2.1.
1477 ;; Command-line tools are GPLv2.
1478 (license (list gpl2 lgpl2.1))))
1479
1480(define-public wireless-tools
1481 (package
1482 (name "wireless-tools")
1483 (version "30.pre9")
1484 (source (origin
1485 (method url-fetch)
1486 (uri (string-append "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools."
1487 version ".tar.gz"))
1488 (sha256
1489 (base32
1490 "0qscyd44jmhs4k32ggp107hlym1pcyjzihiai48xs7xzib4wbndb"))))
1491 (build-system gnu-build-system)
1492 (arguments
1493 `(#:phases (alist-replace
1494 'configure
1495 (lambda* (#:key outputs #:allow-other-keys)
1496 (setenv "PREFIX" (assoc-ref outputs "out")))
1497 %standard-phases)
1498 #:tests? #f))
1499 (synopsis "Tools for manipulating Linux Wireless Extensions")
1500 (description "Wireless Tools are used to manipulate the Linux Wireless
1501Extensions. The Wireless Extension is an interface allowing you to set
1502Wireless LAN specific parameters and get the specific stats.")
1503 (home-page "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html")
1504 (license gpl2+)))
1505
1506(define-public lm-sensors
1507 (package
1508 (name "lm-sensors")
1509 (version "3.3.5")
1510 (source (origin
1511 (method url-fetch)
1512 (uri (string-append
1513 "http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-"
1514 version ".tar.bz2"))
1515 (sha256
1516 (base32
1517 "1ksgrynxgrq590nb2fwxrl1gwzisjkqlyg3ljfd1al0ibrk6mbjx"))
1518 (patches (list (search-patch "lm-sensors-hwmon-attrs.patch")))))
1519 (build-system gnu-build-system)
1520 (inputs `(("rrdtool" ,rrdtool)
1521 ("perl" ,perl)
1522 ("kmod" ,kmod)
1523 ("gnuplot" ,gnuplot)))
1524 (native-inputs `(("pkg-config" ,pkg-config)
1525 ("flex" ,flex)
1526 ("bison" ,bison)
1527 ("which" ,which)))
1528 (arguments
1529 `(#:tests? #f ; no 'check' target
1530 #:make-flags (list (string-append "PREFIX=" %output)
1531 (string-append "ETCDIR=" %output "/etc")
1532 (string-append "MANDIR=" %output "/share/man"))
1533 #:phases
1534 (alist-delete
1535 'configure
1536 (alist-cons-before
1537 'build 'patch-exec-paths
1538 (lambda* (#:key inputs outputs #:allow-other-keys)
1539 (substitute* "prog/detect/sensors-detect"
1540 (("`uname")
1541 (string-append "`" (assoc-ref inputs "coreutils")
1542 "/bin/uname"))
1543 (("(`|\")modprobe" all open-quote)
1544 (string-append open-quote
1545 (assoc-ref inputs "kmod")
1546 "/bin/modprobe")))
1547 (substitute* '("prog/pwm/pwmconfig"
1548 "prog/pwm/fancontrol")
1549 (("gnuplot")
1550 (string-append (assoc-ref inputs "gnuplot")
1551 "/bin/gnuplot"))
1552 (("cat ")
1553 (string-append (assoc-ref inputs "coreutils")
1554 "/bin/cat "))
1555 (("egrep ")
1556 (string-append (assoc-ref inputs "grep")
1557 "/bin/egrep "))
1558 (("sed -e")
1559 (string-append (assoc-ref inputs "sed")
1560 "/bin/sed -e"))
1561 (("cut -d")
1562 (string-append (assoc-ref inputs "coreutils")
1563 "/bin/cut -d"))
1564 (("sleep ")
1565 (string-append (assoc-ref inputs "coreutils")
1566 "/bin/sleep "))
1567 (("readlink -f")
1568 (string-append (assoc-ref inputs "coreutils")
1569 "/bin/readlink -f"))))
1570 %standard-phases))))
1571 (home-page "http://www.lm-sensors.org/")
1572 (synopsis "Utilities to read temperature/voltage/fan sensors")
1573 (description
1574 "Lm-sensors is a hardware health monitoring package for Linux. It allows
1575you to access information from temperature, voltage, and fan speed sensors.
1576It works with most newer systems.")
1577 (license gpl2+)))
1578
1579(define-public xsensors
1580 (package
1581 (name "xsensors")
1582 (version "0.70")
1583 (source (origin
1584 (method url-fetch)
1585 (uri (string-append
1586 "http://www.linuxhardware.org/xsensors/xsensors-"
1587 version ".tar.gz"))
1588 (sha256
1589 (base32
1590 "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh"))))
1591 (build-system gnu-build-system)
1592 (inputs `(("lm-sensors" ,lm-sensors)
1593 ("gtk" ,gtk+-2)))
1594 (native-inputs `(("pkg-config" ,pkg-config)))
1595 (arguments
1596 `(#:phases (alist-cons-before
1597 'configure 'enable-deprecated
1598 (lambda _
1599 (substitute* "src/Makefile.in"
1600 (("-DGDK_DISABLE_DEPRECATED") "")
1601 (("-DGTK_DISABLE_DEPRECATED") "")))
1602 (alist-cons-before
1603 'configure 'remove-Werror
1604 (lambda _
1605 (substitute* '("configure" "src/Makefile.in")
1606 (("-Werror") "")))
1607 %standard-phases))))
1608 (home-page "http://www.linuxhardware.org/xsensors/")
1609 (synopsis "Hardware health information viewer")
1610 (description
1611 "Xsensors reads data from the libsensors library regarding hardware
1612health such as temperature, voltage and fan speed and displays the information
1613in a digital read-out.")
1614 (license gpl2+)))
1615
1616(define-public perf
1617 (package
1618 (name "perf")
1619 (version (package-version linux-libre))
1620 (source (package-source linux-libre))
1621 (build-system gnu-build-system)
1622 (arguments
1623 '(#:phases (alist-replace
1624 'configure
1625 (lambda* (#:key inputs #:allow-other-keys)
1626 (setenv "SHELL_PATH" (which "bash"))
1627 (chdir "tools/perf"))
1628 %standard-phases)
1629 #:make-flags (list (string-append "DESTDIR="
1630 (assoc-ref %outputs "out"))
1631 "WERROR=0")
1632 #:tests? #f)) ;no tests
1633 (native-inputs
1634 `(("pkg-config" ,pkg-config)
1635 ("bison" ,bison)
1636 ("flex" ,flex)
1637
1638 ;; There are build scripts written in these languages.
1639 ("perl" ,perl)
1640 ("python" ,python-2)))
1641 (inputs
1642 `(;; ("slang" ,slang)
1643 ;; ("newt" ,newt)
1644 ("elfutils" ,elfutils)
1645
1646 ;; FIXME: Documentation.
1647 ;; ("libxslt" ,libxslt)
1648 ;; ("docbook-xml" ,docbook-xml)
1649 ;; ("docbook-xsl" ,docbook-xsl)
1650 ;; ("xmlto" ,xmlto)
1651 ;; ("asciidoc" ,asciidoc)
1652 ))
1653 (home-page "https://perf.wiki.kernel.org/")
1654 (synopsis "Linux profiling with performance counters")
1655 (description
1656 "perf is a tool suite for profiling using hardware performance counters,
1657with support in the Linux kernel. perf can instrument CPU performance
1658counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable
1659of lightweight profiling. This package contains the user-land tools and in
1660particular the 'perf' command.")
1661 (license (package-license linux-libre))))