Strange, It doesn't work for me, even when I try a different network.
Just out of curiosity, have you been successful in running the complete
manifest file? For my part, I'm still getting an error of the type :
"Could not resolve host: github.com"
#+BEGIN_SRC
(define-module (rzine)
#:use-module (guix)
#:use-module (guix profiles)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (gnu packages statistics)
#:use-module (gnu packages cran)
#:use-module (gnu packages rust)
#:use-module (guix-cran packages c)
#:use-module (guix-cran packages d)
#:use-module (guix-cran packages e)
#:use-module (guix-cran packages g)
#:use-module (guix-cran packages m)
#:use-module (guix-cran packages r)
#:use-module (gnu packages texinfo)
#:use-module (guix build-system copy)
#:use-module (guix build-system cargo)
#:use-module (guix build-system r))
(define r-rzine
(package
(name "r-rzine")
(version "1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.huma-num.fr/rzine/package")
(commit "")))
(file-name (git-file-name name version))
(sha256
(base32
"1nm60qjliqz78g2cba20q65122w0dpfl934gyvcylb7hj5wmmvf2"))))
(build-system r-build-system)
(propagated-inputs (list r-rmarkdown r-knitr r-bookdown r-htmltools
r-kableextra r-sessioninfo))
(home-page "https://hypergeo.eu/")
(synopsis "Hello, GNU world: An example GNU package")
(description "Guess what GNU Hello prints!")
(license license:gpl3)))
;; 2021
(define-public rzine-documentation
(let ((commit "1b52ccf6c7fc1413ecb2483e155082593953c71a")
(revision "1"))
(package
(name "rzine-documentation")
(version (git-version "1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rzine-reviews/documentation/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1wcc0al31k965m2mn4zn6ql1h1avgqk8211509n067dffikbgxlb"))))
(build-system copy-build-system)
(native-inputs (list r-minimal r-rmarkdown
r-rzine))
(arguments
(list
#:install-plan ''(("index.html" "share/doc/rzine-
documentation.html"))
#:phases
#~(modify-phases %standard-phases
(add-before 'install 'build
(lambda _
(invoke "R" "-e"
"library(rmarkdown); render(\"index.Rmd\")"))))))
(home-page "https://doi.org/10.48645/HJVQ-YP94")
(synopsis "Processus de rédaction, soumission et relecture d'une
fiche Rzine")
(description "Fiche Rzine élaboré pour tenter de faciliter
l'utilisation de Github
dans le cadre du dépôt d'une fiche sur Rzine")
(license license:gpl3))))
(define-public rzine-github
(let ((commit "a604a4236d5d41972a831717696fe4b570dd825e")
(revision "1"))
(package
(name "rzine-github")
(version (git-version "1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url
"https://github.com/rzine-reviews/github_fiche_rzine.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0973lwi3809z8mwbwmsqnxvigdisllqva3y0nylqqrrs3z9zk2jw"))))
(build-system copy-build-system)
(native-inputs (list r-minimal r-rmarkdown
r-rzine r-rmdformats))
(arguments
(list
#:install-plan ''(("index.html" "share/doc/rzine-github.html"))
#:phases
#~(modify-phases %standard-phases
(add-before 'install 'build
(lambda _
(invoke "R" "-e"
"library(rmarkdown); render(\"rzine_tuto_github.Rmd\")"))))))
(home-page "https://doi.org/10.48645/HJVQ-YP94")
(synopsis "Ancalaire")
(description "Fiche Rzine élaboré pour tenter de faciliter
l'utilisation de Github
dans le cadre du dépôt d'une fiche sur Rzine")
(license license:gpl3))))
;; Analyse territoriale multiscalaire
;;
;; Application à la concentration de l’emploi dans la Métropole du
;; Grand Paris
;;
;; Ronan Ysebaert (UMS RIATE, Univ. de Paris) et Claude Grasland (FR
;; CIST, UMR Géographie-cités, Univ. de Paris)
;;
(define-public rzine-mta
(let ((commit "717d03f1d85dfa09341dfa44d3783251aa91c537")
(revision "1"))
(package
(name "rzine-mta")
(version (git-version "1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rzine-reviews/mta_rzine.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1g02h3z11q8syl360jjc3w7lpfmnfr9frvhd9j23wlr351lz9jx7"))
(patches (list "patches/mta-index.patch"))))
(build-system copy-build-system)
(native-inputs (list r-minimal r-rmarkdown
r-rzine r-sf r-mapsf
r-cartography r-readxl
r-flextable r-ineq
r-spdep r-mta r-dplyr))
(arguments
(list
#:install-plan ''(("index.html" "share/doc/rzine-mta.html"))
#:phases
#~(modify-phases %standard-phases
(add-before 'install 'build
(lambda _
(invoke "R" "-e"
"library(rmarkdown); render(\"index.Rmd\")"))))))
(home-page "https://doi.org/10.48645/HJVQ-YP94")
(synopsis "Analyse territoriale multiscalaire")
(description "Cet article" )
(license license:gpl3))))
(packages->manifest (list rzine-documentation rzine-github rzine-mta))
#+END_SRC
Mattia
Le lundi 20 juillet 2026 à 16:48 +0200, Cayetano Santos a écrit :
>
> > lun. 20 juil. 2026 at 16:41, Mattia Bunel <[email protected]>
> > wrote:
>
> > Whoops, I forgot a dependency in the manifest.
> >
> > This is the correct manifest.scm.
>
> No problem now:
>
> r-selectr-0.4-2
> 393KiB 15.6MiB/s
> 00:00 [##################] 100.0%
> r-sessioninfo-1.2.2
> 255KiB 13.8MiB/s 00:00
> [##################] 100.0%
> r-svglite-2.1.1
> 746KiB 17.2MiB/s
> 00:00 [##################] 100.0%
> r-sys-3.4.1
> 51KiB 4.6MiB/s
> 00:00 [##################] 100.0%
> r-systemfonts-1.0.4
> 2.0MiB 5.2MiB/s 00:00
> [##################] 100.0%
> r-tibble-3.1.8
> 660KiB 11.8MiB/s
> 00:00 [##################] 100.0%
> r-utf8-1.2.3
> 204KiB 12.2MiB/s
> 00:00 [##################] 100.0%
> r-viridislite-0.4.1
> 1.2MiB 4.0MiB/s 00:00
> [##################] 100.0%
> r-webshot-0.5.4
> 181KiB 10.4MiB/s
> 00:00 [##################] 100.0%
> r-withr-2.5.0
> 223KiB 13.9MiB/s
> 00:00 [##################] 100.0%
> r-xml2-1.3.3
> 631KiB 16.6MiB/s
> 00:00 [##################] 100.0%
> applying 2 grafts for curl-7.84.0 ...
> applying 5 grafts for git-minimal-2.39.2 ...
> building /gnu/store/5n5l1bynp15rlvkp9lbbmj1491rabj90-r-rzine-1.0-
> checkout.drv...
> killing process 2068351
> building /gnu/store/nivjbrcyx2bb048w1h19cj5b19nrmmwr-r-rzine-
> 1.0.drv...
> building /gnu/store/ps6hsng5im31sj6qjssv87s2j1ihi70a-rzine-
> documentation-1.0-1.1b52ccf.drv...
> substitute: looking for substitutes on
> 'https://bordeaux.guix.gnu.org'... 100.0%
> substitute: looking for substitutes on 'https://ci.guix.gnu.org'...
> 100.0%
> The following derivations will be built:
> /gnu/store/jb30xjrbi1k3gabjszqs9fzigyxx0mk0-profile.drv
> /gnu/store/3dzvnamgk22pppj524vfw713glm7z3h8-module-import-
> compiled.drv
>
> 0.1 MB will be downloaded
> module-import-compiled
> 56KiB 1.7MiB/s 00:00
> [##################] 100.0%
> module-import-compiled
> 46KiB 1.7MiB/s 00:00
> [##################] 100.0%
> applying 1 graft for libfontenc-1.1.4 ...
> applying 1 graft for libpng-1.6.37 ...
> building /gnu/store/3dzvnamgk22pppj524vfw713glm7z3h8-module-import-
> compiled.drv...
> applying 2 grafts for freetype-2.10.4 ...
> applying 1 graft for pandoc-2.19.2 ...
> applying 4 grafts for mkfontscale-1.2.2 ...
> applying 1 graft for rzine-documentation-1.0-1.1b52ccf ...
> applying 1 graft for mkfontdir-1.0.7 ...
> building CA certificate bundle...
> listing Emacs sub-directories...
> building fonts directory...
> building directory of Info manuals...
> building profile with 1 package...
>
> Maybe you got a punctual issue with your network ?
>
> C.
signature.asc
Description: This is a digitally signed message part
