Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / gnu / packages / base.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
5 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
6 ;;; Copyright © 2014 Alex Kost <alezost@gmail.com>
7 ;;; Copyright © 2014, 2015 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
8 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
9 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
10 ;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
11 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
12 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
13 ;;;
14 ;;; This file is part of GNU Guix.
15 ;;;
16 ;;; GNU Guix is free software; you can redistribute it and/or modify it
17 ;;; under the terms of the GNU General Public License as published by
18 ;;; the Free Software Foundation; either version 3 of the License, or (at
19 ;;; your option) any later version.
20 ;;;
21 ;;; GNU Guix is distributed in the hope that it will be useful, but
22 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;;; GNU General Public License for more details.
25 ;;;
26 ;;; You should have received a copy of the GNU General Public License
27 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
28
29 (define-module (gnu packages base)
30 #:use-module ((guix licenses)
31 #:select (gpl3+ lgpl2.0+ lgpl3+ public-domain))
32 #:use-module (gnu packages)
33 #:use-module (gnu packages acl)
34 #:use-module (gnu packages bash)
35 #:use-module (gnu packages ed)
36 #:use-module (gnu packages guile)
37 #:use-module (gnu packages multiprecision)
38 #:use-module (gnu packages compression)
39 #:use-module (gnu packages perl)
40 #:use-module (gnu packages linux)
41 #:use-module (gnu packages texinfo)
42 #:use-module (gnu packages hurd)
43 #:use-module (gnu packages pkg-config)
44 #:use-module (gnu packages gettext)
45 #:use-module (guix utils)
46 #:use-module (guix packages)
47 #:use-module (guix download)
48 #:use-module (guix git-download)
49 #:use-module (guix build-system gnu)
50 #:use-module (guix build-system trivial)
51 #:use-module (ice-9 match)
52 #:export (glibc
53 libiconv-if-needed))
54
55 ;;; Commentary:
56 ;;;
57 ;;; Base packages of the Guix-based GNU user-land software distribution.
58 ;;;
59 ;;; Code:
60
61 (define-public hello
62 (package
63 (name "hello")
64 (version "2.10")
65 (source (origin
66 (method url-fetch)
67 (uri (string-append "mirror://gnu/hello/hello-" version
68 ".tar.gz"))
69 (sha256
70 (base32
71 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
72 (build-system gnu-build-system)
73 (synopsis "Hello, GNU world: An example GNU package")
74 (description
75 "GNU Hello prints the message \"Hello, world!\" and then exits. It
76 serves as an example of standard GNU coding practices. As such, it supports
77 command-line arguments, multiple languages, and so on.")
78 (home-page "https://www.gnu.org/software/hello/")
79 (license gpl3+)))
80
81 (define-public grep
82 (package
83 (name "grep")
84 (version "3.0")
85 (source (origin
86 (method url-fetch)
87 (uri (string-append "mirror://gnu/grep/grep-"
88 version ".tar.xz"))
89 (sha256
90 (base32
91 "1dcasjp3a578nrvzrcn38mpizb8w1q6mvfzhjmcqqgkf0nsivj72"))
92 (patches (search-patches "grep-timing-sensitive-test.patch"
93 "grep-gnulib-lock.patch"))))
94 (build-system gnu-build-system)
95 (native-inputs `(("perl" ,perl))) ;some of the tests require it
96 (arguments
97 `(#:phases
98 (modify-phases %standard-phases
99 (add-after 'install 'fix-egrep-and-fgrep
100 ;; Patch 'egrep' and 'fgrep' to execute 'grep' via its
101 ;; absolute file name instead of searching for it in $PATH.
102 (lambda* (#:key outputs #:allow-other-keys)
103 (let* ((out (assoc-ref outputs "out"))
104 (bin (string-append out "/bin")))
105 (substitute* (list (string-append bin "/egrep")
106 (string-append bin "/fgrep"))
107 (("^exec grep")
108 (string-append "exec " bin "/grep")))
109 #t))))))
110 (synopsis "Print lines matching a pattern")
111 (description
112 "grep is a tool for finding text inside files. Text is found by
113 matching a pattern provided by the user in one or many files. The pattern
114 may be provided as a basic or extended regular expression, or as fixed
115 strings. By default, the matching text is simply printed to the screen,
116 however the output can be greatly customized to include, for example, line
117 numbers. GNU grep offers many extensions over the standard utility,
118 including, for example, recursive directory searching.")
119 (license gpl3+)
120 (home-page "https://www.gnu.org/software/grep/")))
121
122 (define-public sed
123 (package
124 (name "sed")
125 (version "4.4")
126 (source (origin
127 (method url-fetch)
128 (uri (string-append "mirror://gnu/sed/sed-" version
129 ".tar.xz"))
130 (sha256
131 (base32
132 "0fv88bcnraixc8jvpacvxshi30p5x9m7yb8ns1hfv07hmb2ypmnb"))))
133 (build-system gnu-build-system)
134 (synopsis "Stream editor")
135 (arguments
136 `(#:phases
137 (modify-phases %standard-phases
138 (add-after 'unpack 'dont-rebuild-sed.1
139 (lambda _
140 ;; Make sure we do not attempt to rebuild 'doc/sed.1', which does
141 ;; not work when cross-compiling because we cannot run 'sed'.
142 ;; This is fixed upstream as commit a0a25e3.
143 (substitute* "Makefile.in"
144 (("^doc/sed\\.1:.*")
145 "doc/sed.1:\n"))
146 #t))
147 (add-before 'patch-source-shebangs 'patch-test-suite
148 (lambda* (#:key inputs #:allow-other-keys)
149 (patch-makefile-SHELL "testsuite/Makefile.tests")
150 (substitute* '("testsuite/bsd.sh"
151 "testsuite/bug-regex9.c")
152 (("/bin/sh")
153 (which "sh")))
154 #t)))))
155 (description
156 "Sed is a non-interactive, text stream editor. It receives a text
157 input from a file or from standard input and it then applies a series of text
158 editing commands to the stream and prints its output to standard output. It
159 is often used for substituting text patterns in a stream. The GNU
160 implementation offers several extensions over the standard utility.")
161 (license gpl3+)
162 (home-page "https://www.gnu.org/software/sed/")))
163
164 (define-public tar
165 (package
166 (name "tar")
167 (version "1.29")
168 (source (origin
169 (method url-fetch)
170 (uri (string-append "mirror://gnu/tar/tar-"
171 version ".tar.xz"))
172 (sha256
173 (base32
174 "097hx7sbzp8qirl4m930lw84kn0wmxhmq7v1qpra3mrg0b8cyba0"))
175 (patches (search-patches "tar-CVE-2016-6321.patch"
176 "tar-skip-unreliable-tests.patch"))))
177 (build-system gnu-build-system)
178 ;; Note: test suite requires ~1GiB of disk space.
179 (arguments
180 '(#:phases (modify-phases %standard-phases
181 (add-before 'build 'set-shell-file-name
182 (lambda* (#:key inputs #:allow-other-keys)
183 ;; Do not use "/bin/sh" to run programs.
184 (let ((bash (assoc-ref inputs "bash")))
185 (substitute* "src/system.c"
186 (("/bin/sh")
187 (string-append bash "/bin/sh")))
188 #t))))))
189
190 ;; When cross-compiling, the 'set-shell-file-name' phase needs to be able
191 ;; to refer to the target Bash.
192 (inputs (if (%current-target-system)
193 `(("bash" ,bash))
194 '()))
195
196 (synopsis "Managing tar archives")
197 (description
198 "Tar provides the ability to create tar archives, as well as the
199 ability to extract, update or list files in an existing archive. It is
200 useful for combining many files into one larger file, while maintaining
201 directory structure and file information such as permissions and
202 creation/modification dates. GNU tar offers many extensions over the
203 standard utility.")
204 (license gpl3+)
205 (home-page "https://www.gnu.org/software/tar/")))
206
207 (define-public patch
208 (package
209 (name "patch")
210 (version "2.7.5")
211 (source (origin
212 (method url-fetch)
213 (uri (string-append "mirror://gnu/patch/patch-"
214 version ".tar.xz"))
215 (sha256
216 (base32
217 "16d2r9kpivaak948mxzc0bai45mqfw73m113wrkmbffnalv1b5gx"))
218 (patches (search-patches "patch-hurd-path-max.patch"))))
219 (build-system gnu-build-system)
220 (native-inputs `(("ed" ,ed)))
221 (synopsis "Apply differences to originals, with optional backups")
222 (description
223 "Patch is a program that applies changes to files based on differences
224 laid out as by the program \"diff\". The changes may be applied to one or more
225 files depending on the contents of the diff file. It accepts several
226 different diff formats. It may also be used to revert previously applied
227 differences.")
228 (license gpl3+)
229 (home-page "https://savannah.gnu.org/projects/patch/")))
230
231 (define-public diffutils
232 (package
233 (name "diffutils")
234 (version "3.6")
235 (source (origin
236 (method url-fetch)
237 (uri (string-append "mirror://gnu/diffutils/diffutils-"
238 version ".tar.xz"))
239 (sha256
240 (base32
241 "1mivg0fy3a6fcn535ln8nkgfj6vxh5hsxxs5h6692wxmsjyyh8fn"))))
242 (build-system gnu-build-system)
243 (synopsis "Comparing and merging files")
244 (description
245 "GNU Diffutils is a package containing tools for finding the
246 differences between files. The \"diff\" command is used to show how two files
247 differ, while \"cmp\" shows the offsets and line numbers where they differ.
248 \"diff3\" allows you to compare three files. Finally, \"sdiff\" offers an
249 interactive means to merge two files.")
250 (license gpl3+)
251 (home-page "https://www.gnu.org/software/diffutils/")))
252
253 (define-public findutils
254 (package
255 (name "findutils")
256 (version "4.6.0")
257 (source (origin
258 (method url-fetch)
259 (uri (string-append "mirror://gnu/findutils/findutils-"
260 version ".tar.gz"))
261 (sha256
262 (base32
263 "178nn4dl7wbcw499czikirnkniwnx36argdnqgz4ik9i6zvwkm6y"))
264 (patches (search-patches
265 "findutils-localstatedir.patch"
266 "findutils-test-xargs.patch"
267 ;; test-lock has performance issues on multi-core
268 ;; machines, it hangs or takes a long time to complete.
269 ;; This is a commit from gnulib to fix this issue.
270 "findutils-gnulib-multi-core.patch"))))
271 (build-system gnu-build-system)
272 (arguments
273 `(#:configure-flags (list
274 ;; Tell 'updatedb' to write to /var.
275 "--localstatedir=/var"
276
277 ;; Work around cross-compilation failure. See
278 ;; <http://savannah.gnu.org/bugs/?27299#comment1>.
279 ,@(if (%current-target-system)
280 '("gl_cv_func_wcwidth_works=yes")
281 '()))))
282 (synopsis "Operating on files matching given criteria")
283 (description
284 "Findutils supplies the basic file directory searching utilities of the
285 GNU system. It consists of two primary searching utilities: \"find\"
286 recursively searches for files in a directory according to given criteria and
287 \"locate\" lists files in a database that match a query. Two auxiliary tools
288 are included: \"updatedb\" updates the file name database and \"xargs\" may be
289 used to apply commands with arbitrarily long arguments.")
290 (license gpl3+)
291 (home-page "https://www.gnu.org/software/findutils/")))
292
293 (define-public coreutils
294 (package
295 (name "coreutils")
296 (version "8.27")
297 (source (origin
298 (method url-fetch)
299 (uri (string-append "mirror://gnu/coreutils/coreutils-"
300 version ".tar.xz"))
301 (sha256
302 (base32
303 "0sv547572iq8ayy8klir4hnngnx92a9nsazmf1wgzfc7xr4x74c8"))
304 (patches (search-patches "coreutils-cut-huge-range-test.patch"))))
305 (build-system gnu-build-system)
306 (inputs `(("acl" ,acl) ; TODO: add SELinux
307 ("gmp" ,gmp) ;bignums in 'expr', yay!
308
309 ;; Drop the dependency on libcap when cross-compiling since it's
310 ;; not quite cross-compilable.
311 ,@(if (%current-target-system)
312 '()
313 `(("libcap" ,libcap))))) ;capability support is 'ls', etc.
314 (native-inputs
315 ;; Perl is needed to run tests in native builds, and to run the bundled
316 ;; copy of help2man. However, don't pass it when cross-compiling since
317 ;; that would lead it to try to run programs to get their '--help' output
318 ;; for help2man.
319 (if (%current-target-system)
320 '()
321 `(("perl" ,perl))))
322 (outputs '("out" "debug"))
323 (arguments
324 `(#:parallel-build? #f ; help2man may be called too early
325 #:phases (alist-cons-before
326 'build 'patch-shell-references
327 (lambda* (#:key inputs #:allow-other-keys)
328 (let ((bash (assoc-ref inputs "bash")))
329 ;; 'split' uses either $SHELL or /bin/sh. Set $SHELL so
330 ;; that tests pass, since /bin/sh isn't in the chroot.
331 (setenv "SHELL" (which "sh"))
332
333 (substitute* (find-files "gnulib-tests" "\\.c$")
334 (("/bin/sh")
335 (format #f "~a/bin/sh" bash)))
336 (substitute* (find-files "tests" "\\.sh$")
337 (("#!/bin/sh")
338 (format #f "#!~a/bin/sh" bash)))))
339 %standard-phases)))
340 (synopsis "Core GNU utilities (file, text, shell)")
341 (description
342 "GNU Coreutils includes all of the basic command-line tools that are
343 expected in a POSIX system. These provide the basic file, shell and text
344 manipulation functions of the GNU system. Most of these tools offer extended
345 functionality beyond that which is outlined in the POSIX standard.")
346 (license gpl3+)
347 (home-page "https://www.gnu.org/software/coreutils/")))
348
349 (define-public coreutils-minimal
350 ;; Coreutils without its optional dependencies.
351 (package
352 (inherit coreutils)
353 (name "coreutils-minimal")
354 (outputs '("out"))
355 (inputs '())))
356
357 (define-public gnu-make
358 (package
359 (name "make")
360 (version "4.2.1")
361 (source (origin
362 (method url-fetch)
363 (uri (string-append "mirror://gnu/make/make-" version
364 ".tar.bz2"))
365 (sha256
366 (base32
367 "12f5zzyq2w56g95nni65hc0g5p7154033y2f3qmjvd016szn5qnn"))
368 (patches (search-patches "make-impure-dirs.patch"))))
369 (build-system gnu-build-system)
370 (native-inputs `(("pkg-config" ,pkg-config))) ; to detect Guile
371 (inputs `(("guile" ,guile-2.0)))
372 (outputs '("out" "debug"))
373 (arguments
374 '(#:phases
375 (modify-phases %standard-phases
376 (add-before 'build 'set-default-shell
377 (lambda* (#:key inputs #:allow-other-keys)
378 ;; Change the default shell from /bin/sh.
379 (let ((bash (assoc-ref inputs "bash")))
380 (substitute* "job.c"
381 (("default_shell =.*$")
382 (format #f "default_shell = \"~a/bin/sh\";\n"
383 bash)))))))))
384 (synopsis "Remake files automatically")
385 (description
386 "Make is a program that is used to control the production of
387 executables or other files from their source files. The process is
388 controlled from a Makefile, in which the developer specifies how each file is
389 generated from its source. It has powerful dependency resolution and the
390 ability to determine when files have to be regenerated after their sources
391 change. GNU make offers many powerful extensions over the standard utility.")
392 (license gpl3+)
393 (home-page "https://www.gnu.org/software/make/")))
394
395 (define-public binutils
396 (package
397 (name "binutils")
398 (version "2.28")
399 (source (origin
400 (method url-fetch)
401 (uri (string-append "mirror://gnu/binutils/binutils-"
402 version ".tar.bz2"))
403 (sha256
404 (base32
405 "0wiasgns7i8km8nrxas265sh2dfpsw93b3qw195ipc90w4z475v2"))
406 (patches (search-patches "binutils-ld-new-dtags.patch"
407 "binutils-loongson-workaround.patch"))))
408 (build-system gnu-build-system)
409
410 ;; TODO: Add dependency on zlib + those for Gold.
411 (arguments
412 `(#:configure-flags '(;; Add `-static-libgcc' to not retain a dependency
413 ;; on GCC when bootstrapping.
414 "LDFLAGS=-static-libgcc"
415
416 ;; Don't search under /usr/lib & co.
417 "--with-lib-path=/no-ld-lib-path"
418
419 ;; Install BFD. It ends up in a hidden directory,
420 ;; but it's here.
421 "--enable-install-libbfd"
422
423 ;; Make sure 'ar' and 'ranlib' produce archives in a
424 ;; deterministic fashion.
425 "--enable-deterministic-archives")))
426
427 (synopsis "Binary utilities: bfd gas gprof ld")
428 (description
429 "GNU Binutils is a collection of tools for working with binary files.
430 Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.
431 Other tools include programs to display binary profiling information, list
432 the strings in a binary file, and utilities for working with archives. The
433 \"bfd\" library for working with executable and object formats is also
434 included.")
435 (license gpl3+)
436 (home-page "https://www.gnu.org/software/binutils/")))
437
438 (define* (make-ld-wrapper name #:key
439 (target (const #f))
440 binutils
441 (guile (canonical-package guile-2.2))
442 (bash (canonical-package bash))
443 (guile-for-build guile))
444 "Return a package called NAME that contains a wrapper for the 'ld' program
445 of BINUTILS, which adds '-rpath' flags to the actual 'ld' command line. The
446 wrapper uses GUILE and BASH.
447
448 TARGET must be a one-argument procedure that, given a system type, returns a
449 cross-compilation target triplet or #f. When the result is not #f, make a
450 wrapper for the cross-linker for that target, called 'TARGET-ld'."
451 ;; Note: #:system->target-triplet is a procedure so that the evaluation of
452 ;; its result can be delayed until the 'arguments' field is evaluated, thus
453 ;; in a context where '%current-system' is accurate.
454 (package
455 (name name)
456 (version "0")
457 (source #f)
458 (build-system trivial-build-system)
459 (inputs `(("binutils" ,binutils)
460 ("guile" ,guile)
461 ("bash" ,bash)
462 ("wrapper" ,(search-path %load-path
463 "gnu/packages/ld-wrapper.in"))))
464 (arguments
465 (let ((target (target (%current-system))))
466 `(#:guile ,guile-for-build
467 #:modules ((guix build utils))
468 #:builder (begin
469 (use-modules (guix build utils)
470 (system base compile))
471
472 (let* ((out (assoc-ref %outputs "out"))
473 (bin (string-append out "/bin"))
474 (ld ,(if target
475 `(string-append bin "/" ,target "-ld")
476 '(string-append bin "/ld")))
477 (go (string-append ld ".go")))
478
479 (setvbuf (current-output-port) _IOLBF)
480 (format #t "building ~s/bin/ld wrapper in ~s~%"
481 (assoc-ref %build-inputs "binutils")
482 out)
483
484 (mkdir-p bin)
485 (copy-file (assoc-ref %build-inputs "wrapper") ld)
486 (substitute* ld
487 (("@SELF@")
488 ld)
489 (("@GUILE@")
490 (string-append (assoc-ref %build-inputs "guile")
491 "/bin/guile"))
492 (("@BASH@")
493 (string-append (assoc-ref %build-inputs "bash")
494 "/bin/bash"))
495 (("@LD@")
496 (string-append (assoc-ref %build-inputs "binutils")
497 ,(if target
498 (string-append "/bin/"
499 target "-ld")
500 "/bin/ld"))))
501 (chmod ld #o555)
502 (compile-file ld #:output-file go))))))
503 (synopsis "The linker wrapper")
504 (description
505 "The linker wrapper (or 'ld-wrapper') wraps the linker to add any
506 missing '-rpath' flags, and to detect any misuse of libraries outside of the
507 store.")
508 (home-page "https://www.gnu.org/software/guix//")
509 (license gpl3+)))
510
511 (export make-ld-wrapper)
512
513 (define-public glibc/linux
514 (package
515 (name "glibc")
516 (version "2.25")
517 (source (origin
518 (method url-fetch)
519 (uri (string-append "mirror://gnu/glibc/glibc-"
520 version ".tar.xz"))
521 (sha256
522 (base32
523 "1813dzkgw6v8q8q1m4v96yfis7vjqc9pslqib6j9mrwh6fxxjyq6"))
524 (snippet
525 ;; Disable 'ldconfig' and /etc/ld.so.cache. The latter is
526 ;; required on LFS distros to avoid loading the distro's libc.so
527 ;; instead of ours.
528 '(substitute* "sysdeps/unix/sysv/linux/configure"
529 (("use_ldconfig=yes")
530 "use_ldconfig=no")))
531 (modules '((guix build utils)))
532 (patches (search-patches "glibc-ldd-x86_64.patch"
533 "glibc-versioned-locpath.patch"
534 "glibc-o-largefile.patch"
535 "glibc-memchr-overflow-i686.patch"))))
536 (build-system gnu-build-system)
537
538 ;; Glibc's <limits.h> refers to <linux/limit.h>, for instance, so glibc
539 ;; users should automatically pull Linux headers as well.
540 (propagated-inputs `(("kernel-headers" ,linux-libre-headers)))
541
542 (outputs '("out" "debug"))
543
544 (arguments
545 `(#:out-of-source? #t
546
547 ;; The libraries have an empty RUNPATH, but some, such as the versioned
548 ;; libraries (libdl-2.24.so, etc.) have ld.so marked as NEEDED. Since
549 ;; these libraries are always going to be found anyway, just skip
550 ;; RUNPATH checks.
551 #:validate-runpath? #f
552
553 #:configure-flags
554 (list "--enable-add-ons"
555 "--sysconfdir=/etc"
556
557 ;; Installing a locale archive with all the locales is to
558 ;; expensive (~100 MiB), so we rely on users to install the
559 ;; locales they really want.
560 ;;
561 ;; Set the default locale path. In practice, $LOCPATH may be
562 ;; defined to point whatever locales users want. However, setuid
563 ;; binaries don't honor $LOCPATH, so they'll instead look into
564 ;; $libc_cv_complocaledir; we choose /run/current-system/locale/X.Y,
565 ;; with the idea that it is going to be populated by the sysadmin.
566 ;; The "X.Y" sub-directory is because locale data formats are
567 ;; incompatible across libc versions; see
568 ;; <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
569 ;;
570 ;; `--localedir' is not honored, so work around it.
571 ;; See <http://sourceware.org/ml/libc-alpha/2013-03/msg00093.html>.
572 (string-append "libc_cv_complocaledir=/run/current-system/locale/"
573 ,version)
574
575 (string-append "--with-headers="
576 (assoc-ref ,(if (%current-target-system)
577 '%build-target-inputs
578 '%build-inputs)
579 "kernel-headers")
580 "/include")
581
582 ;; This is the default for most architectures as of GNU libc 2.21,
583 ;; but we specify it explicitly for clarity and consistency. See
584 ;; "kernel-features.h" in the GNU libc for details.
585 "--enable-kernel=2.6.32"
586
587 ;; Use our Bash instead of /bin/sh.
588 (string-append "BASH_SHELL="
589 (assoc-ref %build-inputs "bash")
590 "/bin/bash")
591
592 ;; XXX: Work around "undefined reference to `__stack_chk_guard'".
593 "libc_cv_ssp=no" "libc_cv_ssp_strong=no")
594
595 #:tests? #f ; XXX
596 #:phases (modify-phases %standard-phases
597 (add-before
598 'configure 'pre-configure
599 (lambda* (#:key inputs native-inputs outputs
600 #:allow-other-keys)
601 (let* ((out (assoc-ref outputs "out"))
602 (bin (string-append out "/bin"))
603 ;; FIXME: Normally we would look it up only in INPUTS
604 ;; but cross-base uses it as a native input.
605 (bash (or (assoc-ref inputs "static-bash")
606 (assoc-ref native-inputs "static-bash"))))
607 ;; Install the rpc data base file under `$out/etc/rpc'.
608 ;; FIXME: Use installFlags = [ "sysconfdir=$(out)/etc" ];
609 (substitute* "sunrpc/Makefile"
610 (("^\\$\\(inst_sysconfdir\\)/rpc(.*)$" _ suffix)
611 (string-append out "/etc/rpc" suffix "\n"))
612 (("^install-others =.*$")
613 (string-append "install-others = " out "/etc/rpc\n")))
614
615 (substitute* "Makeconfig"
616 ;; According to
617 ;; <http://www.linuxfromscratch.org/lfs/view/stable/chapter05/glibc.html>,
618 ;; linking against libgcc_s is not needed with GCC
619 ;; 4.7.1.
620 ((" -lgcc_s") ""))
621
622 ;; Have `system' use that Bash.
623 (substitute* "sysdeps/posix/system.c"
624 (("#define[[:blank:]]+SHELL_PATH.*$")
625 (format #f "#define SHELL_PATH \"~a/bin/bash\"\n"
626 bash)))
627
628 ;; Same for `popen'.
629 (substitute* "libio/iopopen.c"
630 (("/bin/sh")
631 (string-append bash "/bin/sh")))
632
633 ;; Same for the shell used by the 'exec' functions for
634 ;; scripts that lack a shebang.
635 (substitute* (find-files "." "^paths\\.h$")
636 (("#define[[:blank:]]+_PATH_BSHELL[[:blank:]].*$")
637 (string-append "#define _PATH_BSHELL \""
638 bash "/bin/sh\"\n")))
639
640 ;; Nscd uses __DATE__ and __TIME__ to create a string to
641 ;; make sure the client and server come from the same
642 ;; libc. Use something deterministic instead.
643 (substitute* "nscd/nscd_stat.c"
644 (("static const char compilation\\[21\\] =.*$")
645 (string-append
646 "static const char compilation[21] = \""
647 (string-take (basename out) 20) "\";\n")))
648
649 ;; Make sure we don't retain a reference to the
650 ;; bootstrap Perl.
651 (substitute* "malloc/mtrace.pl"
652 (("^#!.*")
653 ;; The shebang can be omitted, because there's the
654 ;; "bilingual" eval/exec magic at the top of the file.
655 "")
656 (("exec @PERL@")
657 "exec perl"))))))))
658
659 (inputs `(("static-bash" ,static-bash)))
660
661 ;; To build the manual, we need Texinfo and Perl. Gettext is needed to
662 ;; install the message catalogs, with 'msgfmt'.
663 (native-inputs `(("texinfo" ,texinfo)
664 ("perl" ,perl)
665 ("gettext" ,gettext-minimal)))
666
667 (native-search-paths
668 ;; Search path for packages that provide locale data. This is useful
669 ;; primarily in build environments. Use 'GUIX_LOCPATH' rather than
670 ;; 'LOCPATH' to avoid interference with the host system's libc on foreign
671 ;; distros.
672 (list (search-path-specification
673 (variable "GUIX_LOCPATH")
674 (files '("lib/locale")))))
675
676 (synopsis "The GNU C Library")
677 (description
678 "Any Unix-like operating system needs a C library: the library which
679 defines the \"system calls\" and other basic facilities such as open, malloc,
680 printf, exit...
681
682 The GNU C library is used as the C library in the GNU system and most systems
683 with the Linux kernel.")
684 (license lgpl2.0+)
685 (home-page "https://www.gnu.org/software/libc/")))
686
687 (define-public glibc/hurd
688 ;; The Hurd's libc variant.
689 (package (inherit glibc/linux)
690 (name "glibc-hurd")
691 (version "2.23")
692 (source (origin
693 (method url-fetch)
694 (uri (string-append "http://alpha.gnu.org/gnu/hurd/glibc-"
695 version "-hurd+libpthread-20161218" ".tar.gz"))
696 (sha256
697 (base32
698 "0vpdv05j6j3ria5bw8gp468i64gij94cslxkxj9xkfgi6p615b8p"))))
699
700 ;; Libc provides <hurd.h>, which includes a bunch of Hurd and Mach headers,
701 ;; so both should be propagated.
702 (propagated-inputs `(("hurd-core-headers" ,hurd-core-headers)))
703 (native-inputs
704 `(,@(package-native-inputs glibc/linux)
705 ("mig" ,mig)
706 ("perl" ,perl)))
707
708 (arguments
709 (substitute-keyword-arguments (package-arguments glibc/linux)
710 ((#:phases original-phases)
711 ;; Add libmachuser.so and libhurduser.so to libc.so's search path.
712 ;; See <http://lists.gnu.org/archive/html/bug-hurd/2015-07/msg00051.html>.
713 `(modify-phases ,original-phases
714 (add-after 'install 'augment-libc.so
715 (lambda* (#:key outputs #:allow-other-keys)
716 (let* ((out (assoc-ref outputs "out")))
717 (substitute* (string-append out "/lib/libc.so")
718 (("/[^ ]+/lib/libc.so.0.3")
719 (string-append out "/lib/libc.so.0.3" " libmachuser.so" " libhurduser.so"))))
720 #t))
721 (add-after 'pre-configure 'pre-configure-set-pwd
722 (lambda _
723 ;; Use the right 'pwd'.
724 (substitute* "configure"
725 (("/bin/pwd") "pwd"))
726 #t))
727 (replace 'build
728 (lambda _
729 ;; Force mach/hurd/libpthread subdirs to build first in order to avoid
730 ;; linking errors.
731 ;; See <https://lists.gnu.org/archive/html/bug-hurd/2016-11/msg00045.html>
732 (let ((-j (list "-j" (number->string (parallel-job-count)))))
733 (let-syntax ((make (syntax-rules ()
734 ((_ target)
735 (zero? (apply system* "make" target -j))))))
736 (and (make "mach/subdir_lib")
737 (make "hurd/subdir_lib")
738 (make "libpthread/subdir_lib")
739 (zero? (apply system* "make" -j)))))))))
740 ((#:configure-flags original-configure-flags)
741 `(append (list "--host=i586-pc-gnu"
742
743 ;; We need this to get a working openpty() function.
744 "--enable-pt_chown"
745
746 ;; <https://lists.gnu.org/archive/html/bug-hurd/2016-10/msg00033.html>
747 "--disable-werror"
748
749 ;; nscd fails to build for GNU/Hurd:
750 ;; <https://lists.gnu.org/archive/html/bug-hurd/2014-07/msg00006.html>.
751 ;; Disable it.
752 "--disable-nscd")
753 (filter (lambda (flag)
754 (not (string-prefix? "--enable-kernel=" flag)))
755 ,original-configure-flags)))))
756 (synopsis "The GNU C Library (GNU Hurd variant)")
757 (supported-systems %hurd-systems)))
758
759 (define* (glibc-for-target #:optional
760 (target (or (%current-target-system)
761 (%current-system))))
762 "Return the glibc for TARGET, GLIBC/LINUX for a Linux host or
763 GLIBC/HURD for a Hurd host"
764 (match target
765 ((or "i586-pc-gnu" "i586-gnu") glibc/hurd)
766 (_ glibc/linux)))
767
768 (define-syntax glibc
769 (identifier-syntax (glibc-for-target)))
770
771 ;; Below are old libc versions, which we use mostly to build locale data in
772 ;; the old format (which the new libc cannot cope with.)
773
774 (define-public glibc-2.24
775 (package
776 (inherit glibc)
777 (version "2.24")
778 (source (origin
779 (inherit (package-source glibc))
780 (uri (string-append "mirror://gnu/glibc/glibc-"
781 version ".tar.xz"))
782 (sha256
783 (base32
784 "1lxmprg9gm73gvafxd503x70z32phwjzcy74i0adfi6ixzla7m4r"))))))
785
786 (define-public glibc-2.23
787 (package
788 (inherit glibc)
789 (version "2.23")
790 (source (origin
791 (inherit (package-source glibc))
792 (uri (string-append "mirror://gnu/glibc/glibc-"
793 version ".tar.xz"))
794 (sha256
795 (base32
796 "1s8krs3y2n6pzav7ic59dz41alqalphv7vww4138ag30wh0fpvwl"))))))
797
798 (define-public glibc-2.22
799 (package
800 (inherit glibc)
801 (version "2.22")
802 (source (origin
803 (inherit (package-source glibc))
804 (uri (string-append "mirror://gnu/glibc/glibc-"
805 version ".tar.xz"))
806 (sha256
807 (base32
808 "0j49682pm2nh4qbdw35bas82p1pgfnz4d2l7iwfyzvrvj0318wzb"))
809 (patches (search-patches "glibc-ldd-x86_64.patch"))))
810 (arguments
811 (substitute-keyword-arguments (package-arguments glibc)
812 ((#:phases phases)
813 `(modify-phases ,phases
814 (add-before 'configure 'fix-pwd
815 (lambda _
816 ;; Use `pwd' instead of `/bin/pwd' for glibc-2.21
817 (substitute* "configure"
818 (("/bin/pwd") "pwd"))))))))))
819
820 (define-public glibc-2.21
821 (package
822 (inherit glibc-2.22)
823 (version "2.21")
824 (source (origin
825 (inherit (package-source glibc))
826 (uri (string-append "mirror://gnu/glibc/glibc-"
827 version ".tar.xz"))
828 (sha256
829 (base32
830 "1f135546j34s9bfkydmx2nhh9vwxlx60jldi80zmsnln6wj3dsxf"))
831 (patches (search-patches "glibc-ldd-x86_64.patch"))))))
832
833 (define-public glibc-locales
834 (package
835 (inherit glibc)
836 (name "glibc-locales")
837 (source (origin (inherit (package-source glibc))
838 (patches (cons (search-patch "glibc-locales.patch")
839 (origin-patches (package-source glibc))))))
840 (synopsis "All the locales supported by the GNU C Library")
841 (description
842 "This package provides all the locales supported by the GNU C Library,
843 more than 400 in total. To use them set the 'LOCPATH' environment variable to
844 the 'share/locale' sub-directory of this package.")
845 (outputs '("out")) ;110+ MiB
846 (native-search-paths '())
847 (arguments
848 (let ((args `(#:tests? #f #:strip-binaries? #f
849 ,@(package-arguments glibc))))
850 (substitute-keyword-arguments args
851 ((#:phases phases)
852 `(alist-replace
853 'build
854 (lambda* (#:key outputs #:allow-other-keys)
855 (zero? (system* "make" "localedata/install-locales"
856 "-j" (number->string (parallel-job-count)))))
857 (alist-delete 'install ,phases)))
858 ((#:configure-flags flags)
859 `(append ,flags
860 ;; Use $(libdir)/locale/X.Y as is the case by default.
861 (list (string-append "libc_cv_complocaledir="
862 (assoc-ref %outputs "out")
863 "/lib/locale/"
864 ,(package-version glibc))))))))))
865
866 (define-public glibc-utf8-locales
867 (package
868 (name "glibc-utf8-locales")
869 (version (package-version glibc))
870 (source #f)
871 (build-system trivial-build-system)
872 (arguments
873 `(#:modules ((guix build utils))
874 #:builder (begin
875 (use-modules (srfi srfi-1)
876 (guix build utils))
877
878 (let* ((libc (assoc-ref %build-inputs "glibc"))
879 (gzip (assoc-ref %build-inputs "gzip"))
880 (out (assoc-ref %outputs "out"))
881 (localedir (string-append out "/lib/locale/"
882 ,version)))
883 ;; 'localedef' needs 'gzip'.
884 (setenv "PATH" (string-append libc "/bin:" gzip "/bin"))
885
886 (mkdir-p localedir)
887 (every (lambda (locale)
888 (define file
889 ;; Use the "normalized codeset" by
890 ;; default--e.g., "en_US.utf8".
891 (string-append localedir "/" locale ".utf8"))
892
893 (and (zero? (system* "localedef" "--no-archive"
894 "--prefix" localedir
895 "-i" locale
896 "-f" "UTF-8" file))
897 (begin
898 ;; For backward compatibility with Guix
899 ;; <= 0.8.3, add "xx_YY.UTF-8".
900 (symlink (string-append locale ".utf8")
901 (string-append localedir "/"
902 locale ".UTF-8"))
903 #t)))
904
905 ;; These are the locales commonly used for
906 ;; tests---e.g., in Guile's i18n tests.
907 '("de_DE" "el_GR" "en_US" "fr_FR" "tr_TR"))))))
908 (inputs `(("glibc" ,glibc)
909 ("gzip" ,gzip)))
910 (synopsis "Small sample of UTF-8 locales")
911 (description
912 "This package provides a small sample of UTF-8 locales mostly useful in
913 test environments.")
914 (home-page (package-home-page glibc))
915 (license (package-license glibc))))
916
917 (define-public which
918 (package
919 (name "which")
920 (version "2.21")
921 (source (origin
922 (method url-fetch)
923 (uri (string-append "mirror://gnu/which/which-"
924 version ".tar.gz"))
925 (sha256
926 (base32
927 "1bgafvy3ypbhhfznwjv1lxmd6mci3x1byilnnkc7gcr486wlb8pl"))))
928 (build-system gnu-build-system)
929 (home-page "https://gnu.org/software/which/")
930 (synopsis "Find full path of shell commands")
931 (description
932 "The which program finds the location of executables in PATH, with a
933 variety of options. It is an alternative to the shell \"type\" built-in
934 command.")
935 (license gpl3+))) ; some files are under GPLv2+
936
937 (define-public glibc/hurd-headers
938 (package (inherit glibc/hurd)
939 (name "glibc-hurd-headers")
940 (outputs '("out"))
941 (propagated-inputs `(("gnumach-headers" ,gnumach-headers)
942 ("hurd-headers" ,hurd-headers)))
943 (arguments
944 (substitute-keyword-arguments (package-arguments glibc/hurd)
945 ;; We just pass the flags really needed to build the headers.
946 ((#:configure-flags _)
947 `(list "--enable-add-ons"
948 "--host=i586-pc-gnu"
949 "--enable-obsolete-rpc"))
950 ((#:phases _)
951 '(alist-replace
952 'install
953 (lambda* (#:key outputs #:allow-other-keys)
954 (and (zero? (system* "make" "install-headers"))
955
956 ;; Make an empty stubs.h to work around not being able to
957 ;; produce a valid stubs.h and causing the build to fail. See
958 ;; <http://lists.gnu.org/archive/html/guix-devel/2014-04/msg00233.html>.
959 (let ((out (assoc-ref outputs "out")))
960 (close-port
961 (open-output-file
962 (string-append out "/include/gnu/stubs.h"))))))
963
964 ;; Nothing to build.
965 (alist-delete
966 'build
967
968 (alist-cons-before
969 'configure 'pre-configure
970 (lambda _
971 ;; Use the right 'pwd'.
972 (substitute* "configure"
973 (("/bin/pwd") "pwd")))
974 %standard-phases))))))))
975
976 (define-public tzdata
977 (package
978 (name "tzdata")
979 (version "2017b")
980 (source (origin
981 (method url-fetch)
982 (uri (string-append
983 "https://www.iana.org/time-zones/repository/releases/tzdata"
984 version ".tar.gz"))
985 (sha256
986 (base32
987 "11l0s43vx33dcs78p80122i8s5s9l1sjwkzzwh66njd35r92l97q"))))
988 (build-system gnu-build-system)
989 (arguments
990 '(#:tests? #f
991 #:make-flags (let ((out (assoc-ref %outputs "out"))
992 (tmp (getenv "TMPDIR")))
993 (list (string-append "TOPDIR=" out)
994 (string-append "TZDIR=" out "/share/zoneinfo")
995
996 ;; Discard zic, dump, and tzselect, already
997 ;; provided by glibc.
998 (string-append "ETCDIR=" tmp "/etc")
999
1000 ;; Likewise for the C library routines.
1001 (string-append "LIBDIR=" tmp "/lib")
1002 (string-append "MANDIR=" tmp "/man")
1003
1004 "AWK=awk"
1005 "CC=gcc"))
1006 #:modules ((guix build utils)
1007 (guix build gnu-build-system)
1008 (srfi srfi-1))
1009 #:phases
1010 (modify-phases %standard-phases
1011 (replace 'unpack
1012 (lambda* (#:key source inputs #:allow-other-keys)
1013 (and (zero? (system* "tar" "xvf" source))
1014 (zero? (system* "tar" "xvf" (assoc-ref inputs "tzcode"))))))
1015 (add-after 'install 'post-install
1016 (lambda* (#:key outputs #:allow-other-keys)
1017 ;; Move data in the right place.
1018 (let ((out (assoc-ref outputs "out")))
1019 (symlink (string-append out "/share/zoneinfo")
1020 (string-append out "/share/zoneinfo/posix"))
1021 (delete-file-recursively
1022 (string-append out "/share/zoneinfo-posix"))
1023 (copy-recursively (string-append out "/share/zoneinfo-leaps")
1024 (string-append out "/share/zoneinfo/right"))
1025 (delete-file-recursively
1026 (string-append out "/share/zoneinfo-leaps")))))
1027 (delete 'configure))))
1028 (inputs `(("tzcode" ,(origin
1029 (method url-fetch)
1030 (uri (string-append
1031 "http://www.iana.org/time-zones/repository/releases/tzcode"
1032 version ".tar.gz"))
1033 (sha256
1034 (base32
1035 "0h1d567gn8l3iqgyadcswwdy2yh07nhz3lfl8ds8saz2ajxka5sd"))))))
1036 (home-page "https://www.iana.org/time-zones")
1037 (synopsis "Database of current and historical time zones")
1038 (description "The Time Zone Database (often called tz or zoneinfo)
1039 contains code and data that represent the history of local time for many
1040 representative locations around the globe. It is updated periodically to
1041 reflect changes made by political bodies to time zone boundaries, UTC offsets,
1042 and daylight-saving rules.")
1043 (license public-domain)))
1044
1045 ;;; A "fixed" version of tzdata, which is used in the test suites of
1046 ;;; glib and R. We can update this whenever we are able to rebuild
1047 ;;; thousands of packages (for example, in a core-updates rebuild).
1048 (define-public tzdata-2017a
1049 (package
1050 (inherit tzdata)
1051 (version "2017a")
1052 (source
1053 (origin
1054 (method url-fetch)
1055 (uri (string-append "https://www.iana.org/time-zones/repository"
1056 "/releases/tzdata" version ".tar.gz"))
1057 (sha256
1058 (base32
1059 "1mmv4rvcs12lrvgghw4fidczvb69yv69cmzknghcvw1c196mqfnz"))))
1060 (inputs `(("tzcode" ,(origin
1061 (method url-fetch)
1062 (uri (string-append
1063 "http://www.iana.org/time-zones/repository/releases/tzcode"
1064 version ".tar.gz"))
1065 (sha256
1066 (base32
1067 "1b1q7gnlsh5hjgs5065pvajd37rmbc3k9b8cgzad1vcrifswdwh2"))))))))
1068
1069
1070 (define-public libiconv
1071 (package
1072 (name "libiconv")
1073 (version "1.15")
1074 (source (origin
1075 (method url-fetch)
1076 (uri (string-append "mirror://gnu/libiconv/libiconv-"
1077 version ".tar.gz"))
1078 (sha256
1079 (base32
1080 "0y1ij745r4p48mxq84rax40p10ln7fc7m243p8k8sia519i3dxfc"))
1081 (modules '((guix build utils)))
1082 (snippet
1083 ;; Work around "declared gets" error on glibc systems (fixed by
1084 ;; Gnulib commit 66712c23388e93e5c518ebc8515140fa0c807348.)
1085 '(substitute* "srclib/stdio.in.h"
1086 (("^#undef gets") "")
1087 (("^_GL_WARN_ON_USE \\(gets.*") "")))))
1088 (build-system gnu-build-system)
1089 (synopsis "Character set conversion library")
1090 (description
1091 "libiconv provides an implementation of the iconv function for systems
1092 that lack it. iconv is used to convert between character encodings in a
1093 program. It supports a wide variety of different encodings.")
1094 (home-page "https://www.gnu.org/software/libiconv/")
1095 (license lgpl3+)))
1096
1097 (define* (libiconv-if-needed #:optional (target (%current-target-system)))
1098 "Return either a libiconv package specification to include in a dependency
1099 list for platforms that have an incomplete libc, or the empty list. If a
1100 package needs iconv ,@(libiconv-if-needed) should be added."
1101 ;; POSIX C libraries provide iconv. Platforms with an incomplete libc
1102 ;; without iconv, such as MinGW, must return the then clause.
1103 (if (target-mingw? target)
1104 `(("libiconv" ,libiconv))
1105 '()))
1106
1107 (define-public (canonical-package package)
1108 ;; Avoid circular dependency by lazily resolving 'commencement'.
1109 (let* ((iface (resolve-interface '(gnu packages commencement)))
1110 (proc (module-ref iface 'canonical-package)))
1111 (proc package)))
1112
1113 (define-public (%final-inputs)
1114 "Return the list of \"final inputs\"."
1115 ;; Avoid circular dependency by lazily resolving 'commencement'.
1116 (let ((iface (resolve-interface '(gnu packages commencement))))
1117 (module-ref iface '%final-inputs)))
1118
1119 ;;; base.scm ends here