2020-03-13 16:30:15 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2021-04-27 15:53:43 +00:00
|
|
|
|
;;; Copyright © 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
2020-10-11 10:45:00 +00:00
|
|
|
|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2020-03-13 16:30:15 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; This file returns a manifest containing release-critical bit, for all the
|
|
|
|
|
;;; supported architectures and cross-compilation targets.
|
|
|
|
|
|
|
|
|
|
(use-modules (gnu packages)
|
|
|
|
|
(guix packages)
|
|
|
|
|
(guix profiles)
|
|
|
|
|
((gnu ci) #:select (%cross-targets))
|
2020-04-14 12:47:19 +00:00
|
|
|
|
((gnu services xorg) #:select (%default-xorg-modules))
|
2020-04-04 15:35:02 +00:00
|
|
|
|
(guix utils)
|
2020-03-13 16:30:15 +00:00
|
|
|
|
(srfi srfi-1)
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
|
|
|
|
|
(define* (package->manifest-entry* package system
|
|
|
|
|
#:key target)
|
|
|
|
|
"Return a manifest entry for PACKAGE on SYSTEM, optionally cross-compiled to
|
|
|
|
|
TARGET."
|
|
|
|
|
(manifest-entry
|
|
|
|
|
(inherit (package->manifest-entry package))
|
|
|
|
|
(name (string-append (package-name package) "." system
|
|
|
|
|
(if target
|
|
|
|
|
(string-append "." target)
|
|
|
|
|
"'")))
|
|
|
|
|
(item (with-parameters ((%current-system system)
|
|
|
|
|
(%current-target-system target))
|
|
|
|
|
package))))
|
|
|
|
|
|
|
|
|
|
(define %base-packages
|
|
|
|
|
;; Packages that must be substitutable on all the platforms Guix supports.
|
|
|
|
|
(map specification->package
|
|
|
|
|
'("bootstrap-tarballs" "gcc-toolchain" "nss-certs"
|
|
|
|
|
"openssh" "emacs" "vim" "python" "guile" "guix")))
|
|
|
|
|
|
2021-04-27 20:22:15 +00:00
|
|
|
|
(define %base-packages/armhf
|
|
|
|
|
;; XXX: Relax requirements for armhf-linux for lack of enough build power.
|
|
|
|
|
(map (lambda (package)
|
|
|
|
|
(if (string=? (package-name package) "emacs")
|
|
|
|
|
(specification->package "emacs-no-x")
|
|
|
|
|
package))
|
|
|
|
|
%base-packages))
|
|
|
|
|
|
2020-11-07 22:22:11 +00:00
|
|
|
|
(define %base-packages/hurd
|
|
|
|
|
;; XXX: For now we are less demanding of "i586-gnu".
|
|
|
|
|
(map specification->package
|
|
|
|
|
'("coreutils" "grep" "findutils" "gawk" "make"
|
|
|
|
|
"gcc-toolchain" "tar" "xz")))
|
|
|
|
|
|
2020-03-13 16:30:15 +00:00
|
|
|
|
(define %system-packages
|
|
|
|
|
;; Key packages proposed by the Guix System installer.
|
2020-04-14 12:47:19 +00:00
|
|
|
|
(append (map specification->package
|
|
|
|
|
'("xorg-server" "xfce" "gnome" "mate" "enlightenment"
|
|
|
|
|
"openbox" "awesome" "i3-wm" "ratpoison"
|
2020-10-11 10:45:00 +00:00
|
|
|
|
"emacs" "emacs-exwm" "emacs-desktop-environment"
|
2020-04-14 12:47:19 +00:00
|
|
|
|
"xlockmore" "slock" "libreoffice"
|
|
|
|
|
"connman" "network-manager" "network-manager-applet"
|
|
|
|
|
"openssh" "ntp" "tor"
|
|
|
|
|
"linux-libre" "grub-hybrid"
|
|
|
|
|
;; FIXME: Add IceCat when Rust is available on i686.
|
|
|
|
|
;;"icecat"
|
|
|
|
|
))
|
|
|
|
|
%default-xorg-modules))
|
2020-03-13 16:30:15 +00:00
|
|
|
|
|
|
|
|
|
(define %packages-to-cross-build
|
|
|
|
|
;; Packages that must be cross-buildable from x86_64-linux.
|
2020-04-07 09:04:32 +00:00
|
|
|
|
;; FIXME: Add (@ (gnu packages gcc) gcc) when <https://bugs.gnu.org/40463>
|
|
|
|
|
;; is fixed.
|
2020-04-08 11:05:34 +00:00
|
|
|
|
(append (list (@ (gnu packages guile) guile-3.0/fixed))
|
2020-04-07 22:03:41 +00:00
|
|
|
|
(map specification->package
|
|
|
|
|
'("coreutils" "grep" "sed" "findutils" "diffutils" "patch"
|
|
|
|
|
"gawk" "gettext" "gzip" "xz"
|
|
|
|
|
"hello" "zlib"))))
|
2020-03-13 16:30:15 +00:00
|
|
|
|
|
2020-04-04 15:35:02 +00:00
|
|
|
|
(define %packages-to-cross-build-for-mingw
|
|
|
|
|
;; Many things don't build for MinGW. Restrict to what's known to work.
|
|
|
|
|
(map specification->package '("hello")))
|
|
|
|
|
|
2020-03-13 16:30:15 +00:00
|
|
|
|
(define %cross-bootstrap-targets
|
|
|
|
|
;; Cross-compilation triplets for which 'bootstrap-tarballs' must be
|
|
|
|
|
;; buildable.
|
|
|
|
|
'("i586-pc-gnu"
|
|
|
|
|
"arm-linux-gnueabihf"
|
|
|
|
|
"aarch64-linux-gnu"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Manifests.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %base-manifest
|
|
|
|
|
(manifest
|
|
|
|
|
(append-map (lambda (system)
|
|
|
|
|
(map (cut package->manifest-entry* <> system)
|
2021-04-27 15:53:43 +00:00
|
|
|
|
(cond ((string=? system "i586-gnu")
|
|
|
|
|
%base-packages/hurd)
|
2021-04-27 20:22:15 +00:00
|
|
|
|
((string=? system "armhf-linux")
|
|
|
|
|
;; FIXME: Drop special case when ci.guix.gnu.org
|
|
|
|
|
;; has more ARMv7 build power.
|
|
|
|
|
%base-packages/armhf)
|
2021-04-27 15:53:43 +00:00
|
|
|
|
((string=? system "powerpc64le-linux")
|
|
|
|
|
;; FIXME: Drop 'bootstrap-tarballs' until
|
|
|
|
|
;; <https://bugs.gnu.org/48055> is fixed.
|
|
|
|
|
(drop %base-packages 1))
|
|
|
|
|
(else
|
|
|
|
|
%base-packages))))
|
2021-03-10 07:48:19 +00:00
|
|
|
|
%cuirass-supported-systems)))
|
2020-03-13 16:30:15 +00:00
|
|
|
|
|
2020-04-14 13:10:24 +00:00
|
|
|
|
(define %system-manifest
|
|
|
|
|
(manifest
|
|
|
|
|
(append-map (lambda (system)
|
|
|
|
|
(map (cut package->manifest-entry* <> system)
|
|
|
|
|
%system-packages))
|
|
|
|
|
'("x86_64-linux" "i686-linux")))) ;Guix System
|
|
|
|
|
|
2020-03-13 16:30:15 +00:00
|
|
|
|
(define %cross-manifest
|
|
|
|
|
(manifest
|
|
|
|
|
(append-map (lambda (target)
|
|
|
|
|
(map (cut package->manifest-entry* <> "x86_64-linux"
|
|
|
|
|
#:target target)
|
2020-04-04 15:35:02 +00:00
|
|
|
|
(if (target-mingw? target)
|
|
|
|
|
%packages-to-cross-build-for-mingw
|
|
|
|
|
%packages-to-cross-build)))
|
|
|
|
|
;; XXX: Important bits like libsigsegv and libffi don't support
|
|
|
|
|
;; RISCV at the moment, so don't require RISCV support.
|
|
|
|
|
(delete "riscv64-linux-gnu" %cross-targets))))
|
2020-03-13 16:30:15 +00:00
|
|
|
|
|
|
|
|
|
(define %cross-bootstrap-manifest
|
|
|
|
|
(manifest
|
|
|
|
|
(map (lambda (target)
|
|
|
|
|
(package->manifest-entry*
|
|
|
|
|
(specification->package "bootstrap-tarballs")
|
|
|
|
|
"x86_64-linux" #:target target))
|
|
|
|
|
%cross-bootstrap-targets)))
|
|
|
|
|
|
|
|
|
|
;; Return the union of all three manifests.
|
|
|
|
|
(concatenate-manifests (list %base-manifest
|
2020-04-14 13:10:24 +00:00
|
|
|
|
%system-manifest
|
2020-03-13 16:30:15 +00:00
|
|
|
|
%cross-manifest
|
|
|
|
|
%cross-bootstrap-manifest))
|