On 2023-01-04 at 02:33+00:00, jgart wrote:
> How would you approach writing a script that installs
> every Guix package exhaustively for your current revision?

I don't want to know why you'd like to do that,
but you can start from here:

repo=https://data.guix.gnu.org/repository/1/branch/master
path=latest-processed-revision/packages.json
guix shell curl -- curl $repo/$path?all_results=on |
  guix shell jq -- jq -r '.packages[] | .name' |
  guix shell findutils -- xargs guix shell

Reply via email to