mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
maint: Reduce the package set for "i586-gnu".
* etc/release-manifest.scm (%base-packages/hurd): New variable. (%base-manifest): Use it when SYSTEM is "i586-gnu".
This commit is contained in:
parent
ae0fe289d3
commit
19e2898c80
1 changed files with 9 additions and 1 deletions
|
@ -49,6 +49,12 @@ (define %base-packages
|
||||||
'("bootstrap-tarballs" "gcc-toolchain" "nss-certs"
|
'("bootstrap-tarballs" "gcc-toolchain" "nss-certs"
|
||||||
"openssh" "emacs" "vim" "python" "guile" "guix")))
|
"openssh" "emacs" "vim" "python" "guile" "guix")))
|
||||||
|
|
||||||
|
(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")))
|
||||||
|
|
||||||
(define %system-packages
|
(define %system-packages
|
||||||
;; Key packages proposed by the Guix System installer.
|
;; Key packages proposed by the Guix System installer.
|
||||||
(append (map specification->package
|
(append (map specification->package
|
||||||
|
@ -94,7 +100,9 @@ (define %base-manifest
|
||||||
(manifest
|
(manifest
|
||||||
(append-map (lambda (system)
|
(append-map (lambda (system)
|
||||||
(map (cut package->manifest-entry* <> system)
|
(map (cut package->manifest-entry* <> system)
|
||||||
%base-packages))
|
(if (string=? system "i586-gnu")
|
||||||
|
%base-packages/hurd
|
||||||
|
%base-packages)))
|
||||||
%hydra-supported-systems)))
|
%hydra-supported-systems)))
|
||||||
|
|
||||||
(define %system-manifest
|
(define %system-manifest
|
||||||
|
|
Loading…
Reference in a new issue