all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* How to export downloaded files for a system profile?
@ 2024-11-30 23:03 wifi via
  2024-12-02 18:59 ` Simon Tournier
  0 siblings, 1 reply; 2+ messages in thread
From: wifi via @ 2024-11-30 23:03 UTC (permalink / raw)
  To: Guix Help

I'm trying to create an archive containing only the store items that were downloaded to build machine A's active system profile, bootstrapped from source with no substitutes. Machine B could be an air gapped system, machine A in the future needing a reinstall without an internet connection, etc. Machine B would be running a minimal guix installation to import that archive to.

Ideally, this archive would not contain any binaries produced by machine A to save space when machine B already contains the necessary tools to consume the archive and bootstrap it.

I've been digging around looking for a way to build a complete build dependency and runtime dependency graph of every package and their derivations, but there doesn't appear to be a straightforward way to do it. If such a complete graph could be built, it seems to be only a matter of finding the leaf nodes and exporting those from the store.

Am I on the right track?

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

* Re: How to export downloaded files for a system profile?
  2024-11-30 23:03 How to export downloaded files for a system profile? wifi via
@ 2024-12-02 18:59 ` Simon Tournier
  0 siblings, 0 replies; 2+ messages in thread
From: Simon Tournier @ 2024-12-02 18:59 UTC (permalink / raw)
  To: wifi, Guix Help

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

Hi,

On Sat, 30 Nov 2024 at 23:03, wifi via <help-guix@gnu.org> wrote:

> I've been digging around looking for a way to build a complete build
> dependency and runtime dependency graph of every package and their
> derivations, but there doesn't appear to be a straightforward way to
> do it. If such a complete graph could be built, it seems to be only a
> matter of finding the leaf nodes and exporting those from the store.

Well, I think that you can write a manifest that walks the whole graph
and find the “leaf” packages, i.e., the packages that have no
dependents: packages that do appear elsewhere in any other packages.

Maybe there is some typo, but I think this manifest builds all the leaf
packages and thus it will build the whole packages of Guix.

Assuming, there is no mistake, I count 14143 leaf packages over 32459
packages.

Hope that helps.

Cheers,
simon


[-- Attachment #2: manifest.scm --]
[-- Type: text/plain, Size: 1193 bytes --]


(use-modules (gnu packages)
             (guix packages)
             (guix sets)
             (ice-9 match)
             (ice-9 vlist)
             (srfi srfi-1))

(define all (all-packages))

(define (p->k p)
  (string-append (package-name p) "@" (package-version p)))

(define vall-packages
  (fold (lambda (package result)
          (vhash-cons (p->k package) package result))
        vlist-null
        all))

(define vleaf-packages
  (vhash-fold (lambda (key package result)
                (let loop ((dependencies (package-direct-inputs package))
                           (updated result))
                  (match dependencies
                    ('() updated)
                    ((or ((_ p) . tail)
                         ((_ p _) . tail))
                     (if (package? p)
                         (loop tail
                               (vhash-delete (p->k p) updated))
                         (loop tail updated))))))
              vall-packages
              vall-packages))

(define leaf-packages
  (vhash-fold (lambda (key package result)
                (cons package result))
              '()
              vleaf-packages))

(packages->manifest
 leaf-packages)

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

end of thread, other threads:[~2024-12-02 19:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-30 23:03 How to export downloaded files for a system profile? wifi via
2024-12-02 18:59 ` Simon Tournier

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.