From mboxrd@z Thu Jan 1 00:00:00 1970 From: brettg@posteo.net Subject: Scheme package installation script Date: Fri, 18 Jan 2019 03:47:56 +0100 Message-ID: <56e17fb7593a095a3da1720f596cc488@posteo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:51887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gkKCQ-0007EG-3X for help-guix@gnu.org; Thu, 17 Jan 2019 21:48:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gkKCO-0005Xr-JH for help-guix@gnu.org; Thu, 17 Jan 2019 21:48:02 -0500 Received: from mout01.posteo.de ([185.67.36.65]:48444) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gkKCO-0005V2-4S for help-guix@gnu.org; Thu, 17 Jan 2019 21:48:00 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 0ECEA16005D for ; Fri, 18 Jan 2019 03:47:56 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 43gljm3vNTz6tm8 for ; Fri, 18 Jan 2019 03:47:56 +0100 (CET) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix Hi all. I maintain my own emacs configuration designed to be integrated into guix. One of the parts of maintaining a configuration is package management, which I of course rely on Guix to do (rather than pulling from MELPA directly). There are many packages that need to be installed before my configuration can work, so naturally I devised a meta-package of sorts. The issue with this meta package is that I am inheriting the hello base package because I am not sure how to bypass needing a source to pull from. There is likely a better way to do this meta-package sort of deal. Does anybody have any ideas? (define-public emacs-configuration (package (name "emacs-configuration") (version "0.0.4") (source (origin (inherit (package-source hello)))) (build-system gnu-build-system) (inputs `(,@(package-inputs hello))) (propagated-inputs `(("bear" ,bear) ("cquery" ,cquery) ("emacs" ,emacs) ("emacs-all-the-icons" ,emacs-all-the-icons) ("emacs-cider" ,emacs-cider) ("emacs-clojure-mode" ,emacs-clojure-mode) ("emacs-company" ,emacs-company) ("emacs-company-irony" ,emacs-company-irony) ("emacs-company-lsp" ,emacs-company-lsp) ("emacs-company-quickhelp" ,emacs-company-quickhelp) ("emacs-cquery" ,emacs-cquery) ("emacs-diff-hl" ,emacs-diff-hl) ("emacs-dired-k" ,emacs-dired-k) ("emacs-doom-modeline" ,emacs-doom-modeline) ("emacs-doom-theme" ,emacs-doom-themes) ("emacs-ess" ,emacs-ess) ("emacs-flycheck" ,emacs-flycheck) ("emacs-flycheck-irony" ,emacs-flycheck-irony) ("emacs-geiser" ,emacs-geiser) ("emacs-gitpatch" ,emacs-gitpatch) ("emacs-guix" ,emacs-guix) ("emacs-helm" ,emacs-helm) ("emacs-helm-bibtex" ,emacs-helm-bibtex) ("emacs-helm-c-yasnippet" ,emacs-helm-c-yasnippet) ("emacs-helm-flycheck" ,emacs-helm-flycheck) ("emacs-hl-todo" ,emacs-hl-todo) ("emacs-lsp-mode" ,emacs-lsp-mode) ("emacs-lsp-ui" ,emacs-lsp-ui) ("emacs-magit" ,emacs-magit) ("emacs-magit-org-todos-el" ,emacs-magit-org-todos-el)) (home-page "https://git.sr.ht/~brettgilio/.emacs.d") (synopsis "N/A") (description "N/A") (license #f)))