all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: brettg@posteo.net
To: help-guix <help-guix@gnu.org>
Subject: Scheme package installation script
Date: Fri, 18 Jan 2019 03:47:56 +0100	[thread overview]
Message-ID: <56e17fb7593a095a3da1720f596cc488@posteo.net> (raw)

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)))

             reply	other threads:[~2019-01-18  2:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-18  2:47 brettg [this message]
2019-01-18  3:23 ` Scheme package installation script Carlo Zancanaro
2019-01-18  7:55 ` Gábor Boskovits
  -- strict thread matches above, loose matches on Subject: below --
2019-01-18  3:28 brettg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56e17fb7593a095a3da1720f596cc488@posteo.net \
    --to=brettg@posteo.net \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.