guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

GNOME minimal


From: Pierre Neidhardt
Subject: GNOME minimal
Date: Tue, 09 Jun 2020 14:21:39 +0200

Hi!

I've defined a minimal GNOME this way:

--8<---------------cut here---------------start------------->8---
(define-public gnome-minimal
  (package
    (inherit gnome)
    (name "gnome-minimal")
    (propagated-inputs
     ;; Keep nautilus.
     (fold alist-delete (package-propagated-inputs gnome)
           '("baobab"
             "cheese"
             "eog"
             "epiphany"
             "evince"                   
             "file-roller"
             "gedit"
             "gnome-boxes"
             "gnome-calculator"
             "gnome-calendar"
             "gnome-characters"
             "gnome-clocks"
             "gnome-contacts"
             "gnome-disk-utility"
             "gnome-font-viewer"
             "gnome-maps"
             ;; "gnome-music"
             ;; "gnome-photos"
             "gnome-screenshot"
             "gnome-system-monitor"
             "gnome-terminal"
             "gnome-weather"
             "simple-scan"
             "totem")))))
--8<---------------cut here---------------end--------------->8---

Then I modified my GNOME service:

--8<---------------cut here---------------start------------->8---
(operating-system
 ...
 (services (cons* (service gnome-desktop-service-type
                             (gnome-desktop-configuration
                              (gnome gnome-minimal)))
                    %my/services))
--8<---------------cut here---------------end--------------->8---

But building it fails with

--8<---------------cut here---------------start------------->8---
Backtrace:
           1 (primitive-load "/home/ambrevar/.config/guix/current/bin/guix")
In guix/ui.scm:
  1945:12  0 (run-guix-command _ . _)

guix/ui.scm:1945:12: In procedure run-guix-command:
Throw to key `match-error' with args `("match" "no matching pattern" #f)'.
--8<---------------cut here---------------end--------------->8---

Any idea?

As a side note, would it make sense to include it in Guix?
Maybe just include the above example in the documentation?

Cheers!

-- 
Pierre Neidhardt
https://ambrevar.xyz/

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]