all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Carlo Zancanaro <carlo@zancanaro.id.au>
To: brettg@posteo.net
Cc: help-guix <help-guix@gnu.org>
Subject: Re: Scheme package installation script
Date: Fri, 18 Jan 2019 14:23:42 +1100	[thread overview]
Message-ID: <878szizm2l.fsf@zancanaro.id.au> (raw)
In-Reply-To: <56e17fb7593a095a3da1720f596cc488@posteo.net>

Hey Brett!

On Fri, Jan 18 2019, brettg@posteo.net wrote:
> 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?

I think gnome is a similar sort of meta-package. It has the 
following structure:

(define-public gnome
  (package
    (name "gnome")
    (version (package-version gnome-shell))
    (source #f)
    (build-system trivial-build-system)
    (arguments '(#:builder (begin (mkdir %output) #t)))
    (propagated-inputs
     ... lots of inputs here ...)
    (synopsis "The GNU desktop environment")
    (home-page "https://www.gnome.org/")
    (description
     "GNOME is the graphical desktop for GNU.  It includes a wide 
     variety of
applications for browsing the web, editing text and images, 
creating
documents and diagrams, playing media, scanning, and much more.")
    (license license:gpl2+)))

I assume that will work for you, too.

Carlo

  reply	other threads:[~2019-01-18  3:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-18  2:47 Scheme package installation script brettg
2019-01-18  3:23 ` Carlo Zancanaro [this message]
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=878szizm2l.fsf@zancanaro.id.au \
    --to=carlo@zancanaro.id.au \
    --cc=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.