all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "brettg@posteo.net" <brettg@posteo.net>
To: Timothy Sample <samplet@ngyro.com>
Cc: help-guix <help-guix@gnu.org>,
	Help-Guix <help-guix-bounces+brettg=posteo.net@gnu.org>
Subject: Re: Removing prop-inputs
Date: Fri, 11 Jan 2019 21:08:13 -0600	[thread overview]
Message-ID: <gsdrlgqnplesu54gi901uv7f.1547262479084@email.lge.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1607 bytes --]

Perfect! My appreciation!
Sent from my Sprint Phone.
------ Original message------From: Timothy SampleDate: Fri, Jan 11, 2019 8:50 PMTo: brettg@posteo.net;Cc: help-guix;Help-Guix;Subject:Re: Removing prop-inputs
Hi brettg,

brettg@posteo.net writes:

> On 12.01.2019 02:25, brettg@posteo.net wrote:
>> Hi all, this is my system configuration file. I am trying to remove
>> nautilus and epiphany from the gnome-desktop-service that gets loaded.
>> So far I am not having any luck. Any ideas?
>>
>> [...]
>
> Update, I got it to work, but with some very hackish code. Any
> suggestions would still be appreciated.
>
> (define-public gnome-custom
>   (package (inherit gnome)
> 	   (name "gnome-custom")
> 	   (propagated-inputs (remove
> 				(match-lambda
> 				  ((name _)
> 				   (string=? name "epiphany")))
> 				(remove
> 				 (match-lambda
> 				   ((name _)
> 				    (string=? name "eog")))
> 				 (remove
> 				  (match-lambda
> 				    ((name _)
> 				     (string=? name "totem")))
> 				  (remove
> 				   (match-lambda
> 				     ((name _)
> 				      (string=? name "gedit")))
> 				   (remove
> 				    (match-lambda
> 				      ((name _)
> 				       (string=? name "yelp")))
> 				    (remove
> 				     (match-lambda
> 				       ((name _)
> 					(string=? name "gnome-calculator")))
> 				     (package-propagated-inputs gnome))))))))))

You could try

    (remove (match-lambda
              ((name _)
               (member name '("epiphany" "eog" ...))))
            (package-propagated-inputs gnome))

Hope that helps!


-- Tim

[-- Attachment #2: Type: text/html, Size: 2445 bytes --]

             reply	other threads:[~2019-01-12  3:08 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-12  3:08 brettg [this message]
2019-01-12 13:04 ` Removing prop-inputs swedebugia
  -- strict thread matches above, loose matches on Subject: below --
2019-01-12  1:25 brettg
2019-01-12  2:25 ` brettg
2019-01-12  2:50   ` Timothy Sample

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=gsdrlgqnplesu54gi901uv7f.1547262479084@email.lge.com \
    --to=brettg@posteo.net \
    --cc=help-guix-bounces+brettg=posteo.net@gnu.org \
    --cc=help-guix@gnu.org \
    --cc=samplet@ngyro.com \
    /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.