From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luther Thompson Subject: bug#35064: gnome-desktop-service-type does not work Date: Sun, 31 Mar 2019 18:53:26 -0400 Message-ID: <20190331185326.37e41b75@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:35329) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hAjL1-0002ys-OC for bug-guix@gnu.org; Sun, 31 Mar 2019 18:54:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hAjL0-0006pw-Rw for bug-guix@gnu.org; Sun, 31 Mar 2019 18:54:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53306) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hAjL0-0006ph-Ly for bug-guix@gnu.org; Sun, 31 Mar 2019 18:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hAjL0-0007B1-EE for bug-guix@gnu.org; Sun, 31 Mar 2019 18:54:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:35265) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hAjKh-0002yP-Rt for bug-guix@gnu.org; Sun, 31 Mar 2019 18:53:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hAjKf-0006Yq-U4 for bug-guix@gnu.org; Sun, 31 Mar 2019 18:53:43 -0400 Received: from mail-yb1-xb2d.google.com ([2607:f8b0:4864:20::b2d]:46849) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hAjKc-0006R5-JR for bug-guix@gnu.org; Sun, 31 Mar 2019 18:53:39 -0400 Received: by mail-yb1-xb2d.google.com with SMTP id b16so2824258ybr.13 for ; Sun, 31 Mar 2019 15:53:34 -0700 (PDT) Received: from localhost ([2601:c6:cf00:1c9::c85a]) by smtp.gmail.com with ESMTPSA id g133sm2480951ywg.84.2019.03.31.15.53.33 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 31 Mar 2019 15:53:33 -0700 (PDT) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 35064@debbugs.gnu.org When doing a reconfigure, I got this message: /home/luther/config.scm:60:10: warning: 'gnome-desktop-service' is deprecat= ed, use 'gnome-desktop-service-type' instead So I changed (gnome-desktop-service) to (gnome-desktop-service-type) and got this error: guix system: error: failed to load 'config.scm': /home/luther/config.scm:60:10: Wrong type to apply: # That told me that gnome-desktop-service-type is not a function, so I removed the parentheses and got this error: ---BEGIN--- Backtrace: 13 (primitive-load "/home/luther/.config/guix/current/bin/=E2=80= =A6") In guix/ui.scm: 1660:12 12 (run-guix-command _ . _) In ice-9/boot-9.scm: 829:9 11 (catch _ _ # =E2=80=A6) 829:9 10 (catch _ _ # =E2=80=A6) In guix/scripts/system.scm: 1301:8 9 (_) In guix/status.scm: 810:4 8 (call-with-status-report _ _) In guix/scripts/system.scm: 1162:6 7 (process-action _ _ _) In guix/store.scm: 1737:24 6 (run-with-store _ _ #:guile-for-build _ #:system _ # _) In guix/scripts/system.scm: 1175:13 5 (_ _) 882:18 4 (perform-action reconfigure #< kerne=E2=80= =A6> =E2=80=A6) In gnu/system.scm: 842:19 3 (operating-system-derivation _) In gnu/services.scm: 737:6 2 (instantiate-missing-services _) In srfi/srfi-1.scm: 466:18 1 (fold # =E2=80=A6) In gnu/services.scm: 738:27 0 (_ _ _) gnu/services.scm:738:27: In procedure service-kind: Wrong type argument: #<= service-type gnome-desktop bb1960> ---END--- The manual at System Configuration > Services > Desktop Services says both = that gnome-desktop-service-type is a procedure and a variable of type gnome-desktop-configuration. Luther