all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Counting Packages yields wrong result
@ 2016-08-22 21:10 Björn Höfling
  2016-08-23 10:56 ` Alex Kost
  0 siblings, 1 reply; 3+ messages in thread
From: Björn Höfling @ 2016-08-22 21:10 UTC (permalink / raw)
  To: Guix-Help

I tried to count the number of packages in GuixSD for myself, but my
result differs from the package list on the home page
(https://www.gnu.org/software/guix/packages/). Why?

Here is how I did it:

#!/run/current-system/profile/bin/guile -s
!#

; Counting number of packages in current system.
; This also includes packages with the same name,
; but different version string.

(use-modules (gnu))
(use-modules (guix))

(display "Number of packages: ")
(define cnt
  (fold-packages
    (lambda (pkg ctr)
      (+ 1 ctr))
    0))
(display cnt)
(newline)

Is that the correct way to walk through the list of packages anyway?

I always get the number 3747 back, even after a guix pull. The homepage
gives me 3881, and counting.

guix --version give me:

20160822.18


Looking at %load-path I figured out that

/run/current-system/profile/share/guile/site/2.0/guix

points to the ...guix-0.11.0-1 store path.

Is that my problem? How can I script over the newest pull?

Thank you,

Björn

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

end of thread, other threads:[~2016-08-25 20:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-22 21:10 Counting Packages yields wrong result Björn Höfling
2016-08-23 10:56 ` Alex Kost
2016-08-25 20:01   ` Björn Höfling

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.