WIP: bees service
[jackhill/guix/guix.git] / gnu / packages / hurd.scm
CommitLineData
0193c004 1;;; GNU Guix --- Functional package management for GNU
8df672aa 2;;; Copyright © 2014, 2015, 2016, 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
e62f6f77 3;;; Copyright © 2018, 2020 Ludovic Courtès <ludo@gnu.org>
fb9d6f0f 4;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
f379c665 5;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
9b943db3 6;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
706b91ea 7;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
2676579d 8;;; Copyright © 2020 Rene Saavedra <pacoon@protonmail.com>
0193c004
MR
9;;;
10;;; This file is part of GNU Guix.
11;;;
12;;; GNU Guix is free software; you can redistribute it and/or modify it
13;;; under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 3 of the License, or (at
15;;; your option) any later version.
16;;;
17;;; GNU Guix is distributed in the hope that it will be useful, but
18;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25(define-module (gnu packages hurd)
d30d3e3f 26 #:use-module ((guix licenses) #:hide (zlib))
0193c004
MR
27 #:use-module (guix download)
28 #:use-module (guix packages)
21a8fe1b 29 #:use-module (gnu packages)
f46cf8ef 30 #:use-module (guix gexp)
e1ecd50e 31 #:use-module (guix utils)
396b3c8b 32 #:use-module (guix build-system gnu)
38efbcbb 33 #:use-module (guix build-system trivial)
b37c5441 34 #:use-module (gnu build hurd-boot)
2d546858 35 #:use-module (gnu packages autotools)
d30d3e3f 36 #:use-module (gnu packages compression)
396b3c8b 37 #:use-module (gnu packages flex)
d30d3e3f 38 #:use-module (gnu packages gawk)
abbeaf54 39 #:use-module (gnu packages gnupg)
dc91c10f 40 #:use-module (gnu packages bison)
1d5fc9f7 41 #:use-module (gnu packages libdaemon)
29505c7d 42 #:use-module (gnu packages linux)
dc91c10f 43 #:use-module (gnu packages perl)
1d5fc9f7 44 #:use-module (gnu packages pkg-config)
21a8fe1b 45 #:use-module (gnu packages base)
29505c7d 46 #:use-module (gnu packages bash)
fb9d6f0f 47 #:use-module (gnu packages texinfo)
2e463d6e 48 #:use-module (gnu packages onc-rpc)
706b91ea 49 #:use-module (gnu packages xorg) ; libpciaccess
62596a15 50 #:use-module (guix git-download)
9b943db3
JN
51 #:export (hurd-system?
52 hurd-target?
53 hurd-triplet?))
62596a15
MR
54
55(define (hurd-triplet? triplet)
56 (and (string-suffix? "-gnu" triplet)
57 (not (string-contains triplet "linux"))))
0193c004 58
2d546858
LC
59(define (hurd-target?)
60 "Return true if the cross-compilation target or the current system is
61GNU/Hurd."
62 (or (and=> (%current-target-system) hurd-triplet?)
9b943db3
JN
63 (and (not (%current-target-system))
64 (and=> (%current-system) hurd-triplet?))))
65
66(define (hurd-system?)
67 "Return true if the current system is the Hurd."
68 (and=> (%current-system) hurd-triplet?))
2d546858 69
b005a37a
MR
70(define (hurd-source-url version)
71 (string-append "mirror://gnu/hurd/hurd-"
72 version ".tar.gz"))
73
0193c004 74(define-public gnumach-headers
fb9d6f0f
EF
75 (let ((commit "097f9cf735ffa1212b828682ad92f0f6c5f1c552")
76 (revision "1"))
77 (package
78 (name "gnumach-headers")
79 (version (git-version "1.8" revision commit))
80 (source
81 (origin
82 (method git-fetch)
83 (uri (git-reference
84 (url "https://git.savannah.gnu.org/git/hurd/gnumach.git")
85 (commit commit)))
86 (file-name (git-file-name "gnumach" version))
87 (sha256
88 (base32
89 "0q36z7k02bykrld90zaxbhyzxlmwlqqs4divgir6ix38zsp6icqk"))))
90 (build-system gnu-build-system)
91 (arguments
92 `(#:phases
93 (modify-phases %standard-phases
94 (replace 'install
95 (lambda _
96 (invoke "make" "install-data")))
97 (delete 'build))
0193c004 98
fb9d6f0f
EF
99 ;; GNU Mach supports only IA32 currently, so cheat so that we can at
100 ;; least install its headers.
101 ,@(if (%current-target-system)
102 '()
103 ;; See <http://lists.gnu.org/archive/html/bug-hurd/2015-06/msg00042.html>
104 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-06/msg00716.html>
105 '(#:configure-flags '("--build=i586-pc-gnu"
106 "--host=i686-linux-gnu")))
0193c004 107
fb9d6f0f
EF
108 #:tests? #f))
109 (native-inputs
110 `(("autoconf" ,autoconf)
111 ("automake" ,automake)
112 ("texinfo" ,texinfo-4)))
113 (home-page "https://www.gnu.org/software/hurd/microkernel/mach/gnumach.html")
114 (synopsis "GNU Mach kernel headers")
115 (description
116 "Headers of the GNU Mach kernel.")
117 (license gpl2+))))
396b3c8b
MR
118
119(define-public mig
120 (package
121 (name "mig")
9c9402be 122 (version "1.8")
396b3c8b
MR
123 (source
124 (origin
125 (method url-fetch)
126 (uri (string-append "mirror://gnu/mig/mig-"
127 version ".tar.gz"))
128 (sha256
129 (base32
9c9402be 130 "1gyda8sq6b379nx01hkpbd85lz39irdvz2b9wbr63gicicx8i706"))))
396b3c8b 131 (build-system gnu-build-system)
a7ecc92d
MR
132 ;; Flex is needed both at build and run time.
133 (inputs `(("gnumach-headers" ,gnumach-headers)
00410bbe
JN
134 ("flex" ,flex)
135 ("perl" ,perl)))
396b3c8b
MR
136 (native-inputs
137 `(("flex" ,flex)
138 ("bison" ,bison)))
00410bbe
JN
139 (arguments `(#:tests? #f
140 #:phases
141 (modify-phases %standard-phases
142 (add-after 'install 'patch-non-shebang-references
143 (lambda* (#:key build inputs outputs #:allow-other-keys)
144 (let ((perl (assoc-ref inputs "perl"))
145 (out (assoc-ref outputs "out")))
146 (substitute* (string-append out "/bin/mig")
147 (("perl ") (string-append perl "/bin/perl ")))
148 #t))))))
6fd52309 149 (home-page "https://www.gnu.org/software/hurd/microkernel/mach/mig/gnu_mig.html")
396b3c8b
MR
150 (synopsis "Mach 3.0 interface generator for the Hurd")
151 (description
152 "GNU MIG is the GNU distribution of the Mach 3.0 interface generator
153MIG, as maintained by the GNU Hurd developers for the GNU project.
154You need this tool to compile the GNU Mach and GNU Hurd distributions,
35b9e423 155and to compile the GNU C library for the Hurd. Also, you will need it
396b3c8b
MR
156for other software in the GNU system that uses Mach-based inter-process
157communication.")
158 (license gpl2+)))
dc91c10f 159
6530f536
LC
160(define-public mig/32-bit
161 ;; When cross-compiling from x86_64-linux to i586-gnu, we need this 32-bit
162 ;; native MIG.
163 (package
164 (inherit mig)
165 (arguments
166 (substitute-keyword-arguments (package-arguments mig)
167 ((#:system _ #f)
168 "i686-linux")))
169 (properties `((hidden? . #t)))))
170
dc91c10f 171(define-public hurd-headers
2d546858
LC
172 ;; Resort to a post-0.9 snapshot that provides the 'file_utimens' and
173 ;; 'file_exec_paths' RPCs that glibc 2.28 expects.
f379c665
MB
174 (let ((revision "1")
175 (commit "91a51672ff4cfe1f1a0712b4c542ded3081c825b"))
2d546858
LC
176 (package
177 (name "hurd-headers")
f379c665 178 (version (git-version "0.9" revision commit))
2d546858
LC
179 (source (origin
180 (method git-fetch)
181 (uri (git-reference
182 (url "https://git.savannah.gnu.org/git/hurd/hurd.git")
183 (commit commit)))
184 (sha256
185 (base32
f379c665 186 "16k9wkahz9wasviijz53n6i13nmiwa9fs64ikf1jqh8rl60hw7cz"))
2d546858
LC
187 (file-name (git-file-name name version))))
188 (build-system gnu-build-system)
189 (native-inputs
190 `(("mig" ,mig)
191 ("autoconf" ,autoconf)
192 ("automake" ,automake)))
193 (arguments
194 `(#:phases
195 (modify-phases %standard-phases
196 (replace 'install
197 (lambda _
198 (invoke "make" "install-headers" "no_deps=t")))
199 (delete 'build))
dc91c10f 200
2d546858
LC
201 #:configure-flags '( ;; Pretend we're on GNU/Hurd; 'configure' wants
202 ;; that.
203 ,@(if (%current-target-system)
204 '()
205 '("--host=i586-pc-gnu"))
206
207 ;; Reduce set of dependencies.
208 "--without-parted"
209 "--disable-ncursesw"
210 "--disable-test"
211 "--without-libbz2"
f379c665 212 "--without-libcrypt"
2d546858
LC
213 "--without-libz"
214 ;; Skip the clnt_create check because it expects
215 ;; a working glibc causing a circular dependency.
216 "ac_cv_search_clnt_create=no"
217
218 ;; Annihilate the checks for the 'file_exec_paths'
219 ;; & co. libc functions to avoid "link tests are
220 ;; not allowed after AC_NO_EXECUTABLES" error.
221 "ac_cv_func_file_exec_paths=no"
222 "ac_cv_func_exec_exec_paths=no"
223 "ac_cv_func__hurd_exec_paths=no"
224 "ac_cv_func_file_futimens=no")
225
226 #:tests? #f))
227 (home-page "https://www.gnu.org/software/hurd/hurd.html")
228 (synopsis "GNU Hurd headers")
229 (description
230 "This package provides C headers of the GNU Hurd, used to build the GNU C
dc91c10f 231Library and other user programs.")
2d546858 232 (license gpl2+))))
21a8fe1b
MR
233
234(define-public hurd-minimal
235 (package (inherit hurd-headers)
236 (name "hurd-minimal")
237 (inputs `(("glibc-hurd-headers" ,glibc/hurd-headers)))
21a8fe1b 238 (arguments
e1ecd50e
MR
239 (substitute-keyword-arguments (package-arguments hurd-headers)
240 ((#:phases _)
dc1d3cde
KK
241 '(modify-phases %standard-phases
242 (replace 'install
243 (lambda* (#:key outputs #:allow-other-keys)
244 (let ((out (assoc-ref outputs "out")))
245 ;; We need to copy libihash.a to the output directory manually,
246 ;; since there is no target for that in the makefile.
247 (mkdir-p (string-append out "/include"))
248 (copy-file "libihash/ihash.h"
249 (string-append out "/include/ihash.h"))
250 (mkdir-p (string-append out "/lib"))
251 (copy-file "libihash/libihash.a"
252 (string-append out "/lib/libihash.a"))
253 #t)))
254 (replace 'build
255 (lambda _
2d546858
LC
256 ;; Install <assert-backtrace.h> & co.
257 (invoke "make" "-Clibshouldbeinlibc"
258 "../include/assert-backtrace.h")
259
260 ;; Build libihash.
a48d22d6 261 (invoke "make" "-Clibihash" "libihash.a")))))))
6fd52309 262 (home-page "https://www.gnu.org/software/hurd/hurd.html")
21a8fe1b
MR
263 (synopsis "GNU Hurd libraries")
264 (description
a124bbd2 265 "This package provides libihash, needed to build the GNU C
21a8fe1b
MR
266Library for GNU/Hurd.")
267 (license gpl2+)))
38efbcbb
MR
268
269(define-public hurd-core-headers
270 (package
271 (name "hurd-core-headers")
272 (version (package-version hurd-headers))
273 (source #f)
274 (build-system trivial-build-system)
275 (arguments
276 '(#:modules ((guix build union))
277 #:builder (begin
26611f56
JN
278 (use-modules (srfi srfi-1)
279 (srfi srfi-26)
280 (ice-9 match)
38efbcbb 281 (guix build union))
26611f56
JN
282 (let ((inputs (filter
283 (compose (cute member <> '("gnumach-headers"
284 "hurd-headers"
285 "hurd-minimal"))
286 car)
287 %build-inputs)))
288 (match inputs
289 (((names . directories) ...)
290 (union-build (assoc-ref %outputs "out")
291 directories)
292 #t))))))
38efbcbb
MR
293 (inputs `(("gnumach-headers" ,gnumach-headers)
294 ("hurd-headers" ,hurd-headers)
295 ("hurd-minimal" ,hurd-minimal)))
296 (synopsis "Union of the Hurd headers and libraries")
297 (description
298 "This package contains the union of the Mach and Hurd headers and the
299Hurd-minimal package which are needed for both glibc and GCC.")
300 (home-page (package-home-page hurd-headers))
301 (license (package-license hurd-headers))))
8df672aa
MR
302
303(define-public gnumach
304 (package
fb9d6f0f 305 (inherit gnumach-headers)
8df672aa 306 (name "gnumach")
8df672aa 307 (arguments
e62f6f77 308 (substitute-keyword-arguments (package-arguments gnumach-headers)
29814639
LC
309 ((#:configure-flags flags ''())
310 `(cons "--enable-kdb" ,flags)) ;enable kernel debugger
e62f6f77
LC
311 ((#:phases phases '%standard-phases)
312 `(modify-phases %standard-phases
313 (add-after 'install 'produce-image
314 (lambda* (#:key outputs #:allow-other-keys)
315 (let* ((out (assoc-ref outputs "out"))
316 (boot (string-append out "/boot")))
317 (invoke "make" "gnumach.gz")
318 (install-file "gnumach.gz" boot)
319 #t)))))))
8df672aa
MR
320 (native-inputs
321 `(("mig" ,mig)
e62f6f77
LC
322 ("perl" ,perl)
323 ("autoconf" ,autoconf)
324 ("automake" ,automake)
325 ("texinfo" ,texinfo-4)))
8df672aa 326 (supported-systems (cons "i686-linux" %hurd-systems))
8df672aa
MR
327 (synopsis "Microkernel of the GNU system")
328 (description
fb9d6f0f 329 "GNU Mach is the microkernel upon which a GNU Hurd system is based.")))
cc4faa35 330
ad3bbead
LC
331(define unifont
332 ;; GNU Unifont, <http://gnu.org/s/unifont>.
333 ;; Used the the VGA driver of the Hurd's console client.
334 (origin
335 (method url-fetch)
336 (uri
337 "http://unifoundry.com/pub/unifont-7.0.06/font-builds/unifont-7.0.06.bdf.gz")
338 (sha256
339 (base32
340 "0p2vhnc18cnbmb39vq4m7hzv4mhnm2l0a2s7gx3ar277fwng3hys"))))
341
71b92e1a
RW
342(define dde-sources
343 ;; This is the current tip of the dde branch
344 (let ((commit "ac1c7eb7a8b24b7469bed5365be38a968d59a136"))
345 (origin
346 (method git-fetch)
347 (uri (git-reference
348 (url "https://git.savannah.gnu.org/git/hurd/incubator.git")
349 (commit commit)))
350 (sha256
351 (base32
352 "1vryinbg75xpydfrv9dbgfnds6knlh8l8bk2rxp32y9dc58z0692"))
353 (file-name (git-file-name "dde" commit)))))
354
cc4faa35
MR
355(define-public hurd
356 (package
357 (name "hurd")
496d607d
JN
358 (version (package-version hurd-headers))
359 (source (origin (inherit (package-source hurd-headers))
4c26229c
JN
360 (patches (search-patches "hurd-cross.patch"
361 "hurd-xattr.patch"))))
cc4faa35
MR
362 (arguments
363 `(#:phases
364 (modify-phases %standard-phases
706b91ea
RW
365 (add-after 'unpack 'prepare-dde
366 (lambda* (#:key native-inputs inputs #:allow-other-keys)
367 (substitute* "Makefile"
368 (("libbpf ")
369 "libbpf libmachdev libmachdevdde libddekit"))
370 (for-each make-file-writable (find-files "."))
371 (let ((dde (or (assoc-ref inputs "dde-sources")
372 (assoc-ref native-inputs "dde-sources"))))
373 (for-each (lambda (dir)
374 (copy-recursively
375 (string-append dde "/" dir ) dir))
376 '("libmachdev" "libmachdevdde" "libddekit")))
377 #t))
2e463d6e
RW
378 (add-after 'unpack 'find-tirpc
379 (lambda* (#:key inputs #:allow-other-keys)
380 (for-each (lambda (var)
381 (setenv var
382 (string-append (assoc-ref inputs "libtirpc")
383 "/include/tirpc:"
384 (or (getenv var) ""))))
385 '("CROSS_C_INCLUDE_PATH" "C_INCLUDE_PATH"
386 "CROSS_CPATH" "CPATH"))
387 #t))
388 (add-after 'unpack 'fix-rpc-headers
389 (lambda _
390 (substitute* "nfs/mount.c"
391 (("#undef (TRUE|FALSE)") "")
392 (("#include <rpc/pmap_prot.h>" m)
393 (string-append "#include <rpc/xdr.h>\n" m)))
394 (substitute* '("nfsd/cache.c")
395 (("#undef (TRUE|FALSE)") ""))
396 (substitute* '("nfsd/loop.c"
397 "nfsd/main.c"
398 "nfsd/ops.c")
399 (("#include <rpc/pmap_prot.h>" m)
400 (string-append "#include <rpc/types.h>\n#include <rpc/xdr.h>\n" m)))
401 #t))
cc4faa35 402 (add-before 'build 'pre-build
f46cf8ef
LC
403 (lambda _
404 ;; Don't change the ownership of any file at this time.
405 (substitute* '("daemons/Makefile" "utils/Makefile")
406 (("-o root -m 4755") ""))
407 #t))
97c94fc2
JN
408 (add-after 'unpack 'create-runsystem
409 (lambda _
410 ;; XXX Work towards having startup.c invoke the Guile rc
411 (delete-file "daemons/runsystem.sh")
412 (with-output-to-file "daemons/runsystem.sh"
413 (lambda _
414 (display "#! /bin/bash
415
416# XXX Guile needs pipe support for its finalizer thread, to start.
417# Remove this script when Linux and the Hurd have xattr patches.
418PATH=@PATH@
419
420fsck --yes --force /
421fsysopts / --writable
422
423# Note: this /hurd/ gets substituted
424settrans --create /servers/socket/1 /hurd/pflocal
97c94fc2 425
68d8c094
JN
426# parse multiboot arguments
427for i in \"$@\"; do
428 case $i in
429 (--system=*)
430 system=${i#--system=}
431 ;;
432 esac
433done
434
435echo Starting ${system}/rc...
436exec ${system}/rc \"$@\"
437")))))
b7e23a92
LC
438 (add-before 'build 'set-file-names
439 (lambda* (#:key inputs outputs #:allow-other-keys)
29505c7d
LC
440 (let* ((out (assoc-ref outputs "out"))
441 (bash (assoc-ref inputs "bash-minimal"))
442 (coreutils (assoc-ref inputs "coreutils"))
443 (sed (assoc-ref inputs "sed"))
444 (grep (assoc-ref inputs "grep"))
445 (util-linux (assoc-ref inputs "util-linux")))
446 (substitute* '("daemons/runttys.c" "daemons/getty.c" "utils/login.c")
b7e23a92 447 (("/bin/login")
29505c7d
LC
448 (string-append out "/bin/login"))
449 (("/bin/bash") (string-append bash "/bin/bash")))
97c94fc2 450 (substitute* '("startup/startup.c" "config/ttys")
29505c7d
LC
451 (("/libexec/")
452 (string-append out "/libexec/")))
2676579d
RS
453 (substitute* '("utils/uptime.sh")
454 (("/bin/w")
455 (string-append out "/bin/w")))
97c94fc2
JN
456 ;; Upon first boot the /hurd symlink does not exist; it is
457 ;; created during activation: Hard-code the .../hurd store file
458 ;; name.
459 (substitute* '("boot/boot.c"
460 "daemons/console-run.c"
461 "startup/startup.c")
29505c7d
LC
462 (("/hurd/")
463 (string-append out "/hurd/")))
97c94fc2
JN
464 (substitute* '("libdiskfs/boot-start.c"
465 "libdiskfs/opts-std-startup.c")
466 (("_HURD_STARTUP")
467 (string-append "\"" out "/hurd/startup\"")))
29505c7d 468 (substitute* '("daemons/runsystem.sh"
97c94fc2
JN
469 "utils/fakeroot.sh"
470 "utils/remap.sh"
471 "sutils/MAKEDEV.sh"
472 "sutils/losetup.sh")
29505c7d 473 (("^PATH=.*")
97c94fc2
JN
474 (string-append "PATH=" out "/bin"
475 ":" out "/sbin"
476 ":" coreutils "/bin"
477 ":" grep "/bin"
478 ":" sed "/bin"
479 ":" util-linux "/sbin\n"))
29505c7d
LC
480 (("/sbin/") (string-append out "/sbin/"))
481 (("/libexec/") (string-append out "/libexec/"))
482 (("/hurd/") (string-append out "/hurd/")))
29505c7d
LC
483 #t)))
484 (add-after 'patch-shebangs 'patch-libexec-shebangs
485 (lambda* (#:key inputs outputs #:allow-other-keys)
486 ;; XXX: Since the 'patch-shebangs' phase doesn't traverse
487 ;; /libexec, do it here.
488 (let* ((out (assoc-ref outputs "out"))
489 (bash (assoc-ref inputs "bash-minimal"))
490 (path (list (string-append bash "/bin"))))
491 (for-each (lambda (file)
492 (patch-shebang file path))
493 (find-files (string-append out "/libexec")))
b7e23a92 494 #t)))
62a3bbfd 495 (add-after 'install 'install-goodies
ad3bbead 496 (lambda* (#:key inputs outputs #:allow-other-keys)
62a3bbfd
LC
497 ;; Install additional goodies.
498 ;; TODO: Build & install *.msgids for rpctrace.
ad3bbead
LC
499 (let* ((out (assoc-ref outputs "out"))
500 (datadir (string-append out "/share/hurd")))
62a3bbfd
LC
501 ;; Install the fancy UTF-8 motd.
502 (mkdir-p (string-append out "/etc"))
503 (copy-file "console/motd.UTF8"
504 (string-append out "/etc/motd"))
ad3bbead
LC
505
506 ;; Install the BDF font for use by the console client.
507 (copy-file (assoc-ref inputs "unifont")
508 "unifont.gz")
509 (invoke "gunzip" "unifont.gz")
510 (mkdir-p datadir)
511 (copy-file "unifont"
512 (string-append datadir "/vga-system.bdf"))
f46cf8ef 513 #t))))
cc4faa35
MR
514 #:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
515 %output "/lib")
516 "--disable-ncursesw"
517 "--without-libbz2"
518 "--without-libz"
2e463d6e
RW
519 "--without-parted"
520 ;; This is needed to pass the configure check for
521 ;; clnt_create
522 "ac_func_search_save_LIBS=-ltirpc"
523 "ac_cv_search_clnt_create=false")))
cc4faa35 524 (build-system gnu-build-system)
f46cf8ef
LC
525 (inputs
526 `(("glibc-hurd-headers" ,glibc/hurd-headers)
29505c7d 527
abbeaf54 528 ("libgcrypt" ,libgcrypt) ;for /hurd/random
1d5fc9f7 529 ("libdaemon" ,libdaemon) ;for /bin/console --daemonize
ad3bbead 530 ("unifont" ,unifont)
706b91ea 531 ("libpciaccess" ,libpciaccess)
1d5fc9f7 532
2e463d6e
RW
533 ;; For NFS support
534 ("libtirpc" ,libtirpc/hurd)
535
29505c7d
LC
536 ;; Tools for the /libexec/* scripts.
537 ("bash-minimal" ,bash-minimal)
538 ("coreutils" ,coreutils)
539 ("sed" ,sed)
540 ("grep" ,grep)
541 ("util-linux" ,util-linux)))
cc4faa35 542 (native-inputs
496d607d
JN
543 `(("autoconf" ,autoconf)
544 ("automake" ,automake)
abbeaf54 545 ("libgcrypt" ,libgcrypt) ;for 'libgcrypt-config'
1d5fc9f7 546 ("pkg-config" ,pkg-config)
09ac892a
LC
547 ("mig" ,(if (%current-target-system)
548 ;; XXX: When targeting i586-pc-gnu, we need a 32-bit MiG,
549 ;; hence this hack.
6530f536 550 mig/32-bit
09ac892a 551 mig))
496d607d 552 ("perl" ,perl)
706b91ea 553 ("texinfo" ,texinfo-4)
71b92e1a 554 ("dde-sources" ,dde-sources)))
cc4faa35
MR
555 (supported-systems %hurd-systems)
556 (home-page "https://www.gnu.org/software/hurd/hurd.html")
557 (synopsis "The kernel servers for the GNU operating system")
558 (description
559 "The Hurd is the kernel for the GNU system, a replacement and
560augmentation of standard Unix kernels. It is a collection of protocols for
561system interaction (file systems, networks, authentication), and servers
562implementing them.")
563 (license gpl2+)))
d30d3e3f
RW
564
565(define-public netdde
566 (let ((commit "4a1016f130b6f2065d3f088325e5fb0b2997ae12")
567 (revision "1"))
568 (package
569 (name "netdde")
570 ;; The version prefix corresponds to the version of Linux from which the
571 ;; drivers were taken.
572 (version (git-version "2.6.32.65" revision commit))
573 (source (origin
574 (method git-fetch)
575 (uri (git-reference
576 (url "https://git.savannah.gnu.org/git/hurd/incubator.git")
577 (commit commit)))
578 (sha256
579 (base32
580 "1njv9dszq4lj05yq4v9j5v247hfghpzvvz4hzy0khjjr35mw7hr8"))
581 (file-name (git-file-name name commit))))
582 (build-system gnu-build-system)
583 (arguments
584 `(#:make-flags
585 (list (string-append "SHELL=" (assoc-ref %build-inputs "bash")
586 "/bin/bash")
587 "PKGDIR=libdde_linux26"
588 ,@(if (%current-target-system)
589 (list "CC=i586-pc-gnu-gcc"
590 "LINK_PROGRAM=i586-pc-gnu-gcc")
591 (list "CC=gcc")))
592 #:configure-flags
593 (list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
594 #:phases
595 (modify-phases %standard-phases
596 (delete 'configure)
597 (add-after 'unpack 'prepare-dde
598 (lambda* (#:key native-inputs inputs #:allow-other-keys)
599 (for-each make-file-writable (find-files "."))
600 (let ((dde (or (assoc-ref inputs "dde-sources")
601 (assoc-ref native-inputs "dde-sources"))))
602 (for-each (lambda (dir)
603 (copy-recursively
604 (string-append dde "/" dir ) dir))
605 '("libdde_linux26" "libddekit")))
606 (substitute* "libdde_linux26/mk/rel2abs.sh"
607 (("/bin/bash") (which "bash")))
608 #t))
609 (add-after 'patch-generated-file-shebangs 'build-libdde-linux26
610 (lambda* (#:key make-flags #:allow-other-keys)
611 (with-directory-excursion "libdde_linux26"
612 (apply invoke "make"
613 (delete "PKGDIR=libdde_linux26" make-flags)))))
614 (add-after 'build-libdde-linux26 'convert
615 (lambda* (#:key make-flags #:allow-other-keys)
616 (apply invoke "make" "convert" make-flags)))
617 (replace 'build
618 (lambda* (#:key make-flags #:allow-other-keys)
619 ;; no-common can be dropped with GCC 10+ where this is the
620 ;; default.
621 (apply invoke "make" "CFLAGS=-fno-common" make-flags)))
622 (replace 'install
623 (lambda* (#:key outputs #:allow-other-keys)
624 (install-file "netdde"
625 (string-append (assoc-ref outputs "out")
626 "/bin"))
627 #t)))))
628 (inputs
629 `(("hurd" ,hurd)
630 ("libpciaccess" ,libpciaccess)
631 ("zlib" ,zlib)))
632 (native-inputs
633 `(("coreutils" ,coreutils)
634 ("gawk" ,gawk)
635 ("grep" ,grep)
636 ("perl" ,perl)
637 ("sed" ,sed)
638 ("dde-sources" ,dde-sources)))
639 (supported-systems %hurd-systems)
640 (home-page "https://www.gnu.org/software/hurd/hurd.html")
641 (synopsis "Linux network drivers glued by the DDE layer")
642 (description
643 "This package provides Linux 2.6 network drivers that can be embedded
644in userland processes thanks to the DDE layer.")
645 ;; Some drivers are dually licensed with the options being GPLv2 or one
646 ;; of MPL/Expat/BSD-3 (dependent on the driver).
647 (license gpl2))))