aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-09-14gnu: drawing: Update to 0.8.3....Vinicius Monego
2021-09-14gnu: pre-commit: Update to 2.15.0....Vinicius Monego
2021-09-14gnu: gnome-commander: Update to 1.12.2....Vinicius Monego
2021-09-14system: Add trailing newline to /etc/timezone....Ludovic Courtès
2021-09-14gnu: Add go-github-com-google-gmail-oauth2-tools-go-sendgmail....Philip McGrath
2021-09-14gnu: Add go-cloud-google-com-go-compute-metadata....Philip McGrath
2021-09-14gnu: Add python-w3lib...Pradana AUMARS
2021-09-14gnu: usbip-utils: Do not build static libraries....Ludovic Courtès
2021-09-14gnu: Add usbip-utils...Denis 'GNUtoo' Carikli
2021-09-14scripts: import: Increase column width for pretty-printer....Xinglu Chen
2021-09-14etc: Add 'disarchive-manifest.scm'....Ludovic Courtès
2021-09-14etc: Add 'source-manifest.scm'....Ludovic Courtès
2021-09-14download: Disarchive mirrors can be URL-returning procedures....Ludovic Courtès
2021-09-14download: Remove obsolete workaround....Ludovic Courtès
2021-09-14guix: Replace 'define-public'....Ludovic Courtès
2021-09-14gnu: python-asyncssh: Update to 2.7.1....Lars-Dominik Braun
2021-09-14gnu: Add emacs-notmuch....Xinglu Chen
2021-09-14gnu: notmuch: Make cross-compilable....Xinglu Chen
2021-09-14gnu: notmuch: Build Texinfo manual....Xinglu Chen
2021-09-14gnu: Add python-crontab....Pradana Aumars
2021-09-14gnu: emacs-string-inflection: Update to 1.0.15....Nicolas Goaziou
2021-09-14gnu: giac: Update to 1.7.0-31....Nicolas Goaziou
2021-09-13gnu: discrover: Update package name in texlive-union....Ricardo Wurmus
2021-09-13gnu: chez-web: Replace texlive-fonts-cm with texlive-cm....Ricardo Wurmus
2021-09-13gnu: chez-web: Add texlive-charter....Ricardo Wurmus
2021-09-13gnu: Add texlive-context....Ricardo Wurmus
2021-09-13gnu: texlive-charter: Propagate texlive-psnfss....Ricardo Wurmus
2021-09-13gnu: Add texlive-pdftex....Ricardo Wurmus
2021-09-13gnu: Add texlive-psnfss....Ricardo Wurmus
2021-09-13gnu: Add qolibri....nixo
2021-09-13gnu: Add libeb....nixo
2021-09-13gnu: cozy: Update to 1.1.2....Vinicius Monego
2021-09-13gnu: pitivi: Update to 2021.05.0....Vinicius Monego
2021-09-13gnu: emacs-telega: Install etc directory to better path....Z572
2021-09-13gnu: emacs-telega-server: use make-flags instead of modifying makefile....Z572
2021-09-13gnu: emacs-telega-server: Update to 0.7.030....Z572
2021-09-13gnu: Add emacs-caml....Xinglu Chen
2021-09-13gnu: Add fheroes2...Andrew Tropin
2021-09-13gnu: emacs-irony-mode: Update to 1.5.0....Vinicius Monego
2021-09-13gnu: Add emacs-pinyinlib....Xinglu Chen
2021-09-13gnu: emacs-emms: Update to 7.7....Xinglu Chen
2021-09-13gnu: sudo: Update to 1.9.8....Tobias Geerinckx-Rice
2021-09-13gnu: linux-libre 5.4: Update to 5.4.145....Leo Famulari
2021-09-13gnu: linux-libre 5.10: Update to 5.10.64....Leo Famulari
2021-09-13gnu: linux-libre: Update to 5.13.16....Leo Famulari
2021-09-13gnu: linux-libre 5.14: Update to 5.14.3....Leo Famulari
2021-09-13gnu: cuirass: Update to 1.1.0-4.6019040....Mathieu Othacehe
2021-09-13build/go: Support cross compiling....Efraim Flashner
2021-09-13gnu: korganizer: Allow skipping tests....Efraim Flashner
2021-09-13gnu: kleopatra: Allow skipping tests....Efraim Flashner
(format #f (G_ "External command ~s terminated by signal ~a") args term-sig)) (stop-sig (format #f (G_ "External command ~s stopped by signal ~a") args stop-sig))))) (run-textbox-page #:title (G_ "External command error") #:info-text info-text #:content command-output #:buttons-spec (list (cons "Ignore" (const #t)) (cons "Abort" (lambda () (abort-to-prompt 'installer-step 'abort))) (cons "Report" (lambda () (raise (condition ((@@ (guix build utils) &invoke-error) (program (car args)) (arguments (cdr args)) (exit-status exit-val) (term-signal term-sig) (stop-signal stop-sig))))))))))) (define (final-page result prev-steps) (run-final-page result prev-steps)) (define* (locale-page #:key supported-locales iso639-languages iso3166-territories) (run-locale-page #:supported-locales supported-locales #:iso639-languages iso639-languages #:iso3166-territories iso3166-territories)) (define (timezone-page zonetab) (run-timezone-page zonetab)) (define* (welcome-page logo #:key pci-database) (run-welcome-page logo #:pci-database pci-database)) (define (menu-page steps) (run-menu-page steps)) (define* (keymap-page layouts context) (run-keymap-page layouts #:context context)) (define (network-page) (run-network-page)) (define (substitutes-page) (run-substitutes-page)) (define (hostname-page) (run-hostname-page)) (define (user-page) (run-user-page)) (define (partition-page) (run-partitioning-page)) (define (services-page) (run-services-page)) (define (parameters-menu menu-proc) (newt-set-help-callback menu-proc)) (define (parameters-page keyboard-layout-selection) (run-parameters-page keyboard-layout-selection)) (define newt-installer (installer (name 'newt) (init init) (exit exit) (exit-error exit-error) (final-page final-page) (keymap-page keymap-page) (locale-page locale-page) (menu-page menu-page) (network-page network-page) (substitutes-page substitutes-page) (timezone-page timezone-page) (hostname-page hostname-page) (user-page user-page) (partition-page partition-page) (services-page services-page) (welcome-page welcome-page) (parameters-menu parameters-menu) (parameters-page parameters-page) (dump-page dump-page) (run-command newt-run-command) (report-page report-page)))