all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* GNU Guix diagram
@ 2016-03-04  3:31 myglc2
  2016-03-04 10:21 ` Adam Pribyl
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: myglc2 @ 2016-03-04  3:31 UTC (permalink / raw)
  To: guix-devel

[-- 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 --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-03-04 17:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-04  3:31 GNU Guix diagram myglc2
2016-03-04 10:21 ` Adam Pribyl
2016-03-04 12:36 ` Amirouche Boubekki
2016-03-04 17:52   ` myglc2
2016-03-04 13:22 ` John Darrington

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.