diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-14 14:47:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-14 16:01:05 +0200 |
commit | bab1f340b35078dcfd3cbac67ad56393b53bb46b (patch) | |
tree | c8ecdad9ad445d2cfb476e8d893f83e4d373f1a5 /etc | |
parent | 8e8d984fd6db77bb5c1bec66369e5e99470d416f (diff) | |
download | patches-bab1f340b35078dcfd3cbac67ad56393b53bb46b.tar patches-bab1f340b35078dcfd3cbac67ad56393b53bb46b.tar.gz |
maint: Ensure substitutes are available for '%default-xorg-modules'.
* etc/release-manifest.scm (%system-packages): Append
%DEFAULT-XORG-MODULES.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/release-manifest.scm | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/etc/release-manifest.scm b/etc/release-manifest.scm index ba2ab57aab..c2904c5822 100644 --- a/etc/release-manifest.scm +++ b/etc/release-manifest.scm @@ -23,6 +23,7 @@ (guix packages) (guix profiles) ((gnu ci) #:select (%cross-targets)) + ((gnu services xorg) #:select (%default-xorg-modules)) (guix utils) (srfi srfi-1) (srfi srfi-26)) @@ -49,16 +50,17 @@ TARGET." (define %system-packages ;; Key packages proposed by the Guix System installer. - (map specification->package - '("xorg-server" "xfce" "gnome" "mate" "enlightenment" - "openbox" "awesome" "i3-wm" "ratpoison" - "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" - ))) + (append (map specification->package + '("xorg-server" "xfce" "gnome" "mate" "enlightenment" + "openbox" "awesome" "i3-wm" "ratpoison" + "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)) (define %packages-to-cross-build ;; Packages that must be cross-buildable from x86_64-linux. |