all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: myglc2 <myglc2@gmail.com>
To: guix-devel@gnu.org
Subject: GNU Guix diagram
Date: Thu, 03 Mar 2016 22:31:47 -0500	[thread overview]
Message-ID: <87oaauj4v0.fsf@gmail.com> (raw)

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

Upon installing GuixSD a month ago I found it difficult to get a grip on
GNU Guix' stucture. Because I like pictures I made a diagram showing
what I think I now understand about how GNU Guix' works. I am thinking
it might be helpful to Guix newcomers. Comments &/or corrections would
be most welcome. - George

[-- Attachment #2: gnuguix2.dot --]
[-- Type: application/octet-stream, Size: 1966 bytes --]

// Overview of GNU Guix
digraph G {
	compound=true
	size="12,12"
	edge [fontname = helvetica]
	graph [fontname = helvetica]
	node  [fontname = helvetica]
	{ node [shape=box style = filled fillcolor="white" color = transparent]
		pkgsource [label = "Source"]
		substitutes [label = "Prebuilt\nPackage"]
	}
	{ node [shape=box style = filled fillcolor=pink color = transparent]		
		spkgs [label = "System Packages\nInstall: 'sudo guix system reconfigure CONFIG.scm'\nUpdate: 'sudo guix pull && guix system reconfigure CONFIG.scm'"]
	}
	{ node [shape=box style ="filled,rounded" fillcolor=pink color = transparent]		
		guixd [label = " guix-daemon "]
	}
	{ node [shape=box style ="filled,rounded" fillcolor=lightblue color = transparent]		
		user1 [label = "user1"]
	}
	{ node [shape=box style ="filled" fillcolor=lightblue color = transparent]		
		u1pkgs [label = "user1 Packages\nInstall: 'guix package -i PACKAGE'\nUpdate: 'guix pull'"]
		guix2 [label="user1 guix\nUpdate: 'guix pull'"]
	}
	subgraph cluster_pkgsource {
		label = "Developer"
		labelloc = "t"
		style = filled fillcolor= azure2 color = transparent
		pkgsource
	}
	subgraph cluster_hydra {
		label = "Guix  Hydra"
		style = filled fillcolor= azure2 color = transparent
		substitutes
	}
	subgraph cluster_guixSD {
		label = "Computer Running GNU Guix"
		labelloc = "t"
		style = filled fillcolor= azure2 color = transparent
		user1 -> spkgs  [ label = " /run/current-system/profile  "]
		user1 -> guix2  [ label = " ~/.config/guix/latest  " ]
		user1 -> u1pkgs  [ label = " ~/.guix-profile  " ]
		subgraph cluster_guixstore {
			label = "Guix Package Store /gnu/store"
			labelloc = "b"
			style = filled fillcolor= tan color = transparent
			u1pkgs
			guix2
			spkgs
		}
		guixd
		spkgs -> guixd  [dir = back ltail=cluster_guixstore ]
	}
	pkgsource -> substitutes [lhead=cluster_hydra ltail=cluster_pkgsource]
	pkgsource -> guixd [ltail=cluster_pkgsource]
	substitutes -> guixd [ltail=cluster_hydra]
}

[-- Attachment #3: gnuguix2.png --]
[-- Type: image/png, Size: 51753 bytes --]

             reply	other threads:[~2016-03-04  3:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-04  3:31 myglc2 [this message]
2016-03-04 10:21 ` GNU Guix diagram Adam Pribyl
2016-03-04 12:36 ` Amirouche Boubekki
2016-03-04 17:52   ` myglc2
2016-03-04 13:22 ` John Darrington

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=87oaauj4v0.fsf@gmail.com \
    --to=myglc2@gmail.com \
    --cc=guix-devel@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.