aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: lziprecover: Fix cross-compilation.fix-lziprecover-cross-compilationChristopher Baines2022-10-13
| | | | | * gnu/packages/comression.scm (lziprecover)[arguments]: Set CXX when cross compiling.
* gnu: entr: Update to 5.2.jgart2022-10-13
| | | | | | * gnu/packages/entr.scm (entr): Update to 5.2. Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: micropython: Update to 1.19.jgart2022-10-13
| | | | | | | | * gnu/packages/python.scm (micropython): Update to 1.19. v2 adds my copyright declaration. thnx! Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: cantata: Update to 2.5.0.Simon Streit2022-10-13
| | | | | | | * gnu/packages/mpd.scm (cantata): Update to 2.5.0. [inputs]: Add "avahi" and "musicbrainz". Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: nheko: Update to 0.10.2.Michael Rohleder2022-10-13
| | | | | | * gnu/packages/messaging.scm (nheko): Update to 0.10.2. Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: Add go-github-com-savsgio-gotils.Adam Kandur2022-10-13
| | | | | | * gnu/packages/golang.scm (go-github-com-savsgio-gotils): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: libfido2: Install udev rules.Nicolas Graves2022-10-13
| | | | | | | * gnu/packages/security-token.scm (libfido2)[arguments]: Add a configure flag specifying the installation directory of the udev rule. Signed-off-by: Christopher Baines <mail@cbaines.net>
* services: nginx: Add reload action.EuAndreh2022-10-13
| | | | | | | | | | In a new "reload" shepherd-action, send a SIGHUP to the NGINX master process, so that it can re-read the configuration file and start new worker processes. * gnu/services/web.scm (nginx-shepherd-service): Add the "reload" shepherd-action. Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: emacs-emacsql: Update to 3.1.0.Nicolas Goaziou2022-10-13
| | | | * gnu/packages/emacs-xyz.scm (emacs-emacsql): Update to 3.1.0.
* gnu: emacs-lcr: Update to 1.5.Nicolas Goaziou2022-10-13
| | | | * gnu/packages/emacs-xyz.scm (emacs-lcr): Update to 1.5.
* gnu: mgba: Update to 0.10.0.Nicolas Goaziou2022-10-13
| | | | * gnu/packages/emulators.scm (mgba): Update to 0.10.0.
* gnu: emacs-taxy-magit-section: Update to 0.12.Nicolas Goaziou2022-10-13
| | | | * gnu/packages/emacs-xyz.scm (emacs-taxy-magit-section): Update to 0.12.
* gnu: emacs-project: Update to 0.8.2.Nicolas Goaziou2022-10-13
| | | | * gnu/packages/emacs-xyz.scm (emacs-project): Update to 0.8.2.
* gnu: epiphany: Use 'librsvg-for-system'.Denis 'GNUtoo' Carikli2022-10-13
| | | | | | | | | | This adds support for non x86_64 architectures. * gnu/packages/gnome.scm (epiphany)[inputs]: Use 'librsvg-for-system' instead of 'librsvg'. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: Add ghc-open-browser.jgart2022-10-13
| | | | | | * gnu/packages/haskell-xyz.scm (ghc-open-browser): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: Add hiredis.Thomas Albers2022-10-13
| | | | | | * gnu/packages/databases.scm (hiredis): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
* gnu: guix-build-coordinator: Update to 0-63.b15be71.Christopher Baines2022-10-13
| | | | | * gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-63.b15be71.
* gnu: linux: Add powerpc64le-linux as a supported system.Christopher Baines2022-10-13
| | | | | | | | | | | To the generic kernel packages. I noticed this was lacking because of a test failure when building the guix package for powerpc64le-linux, but it should be a generally useful change. * gnu/packages/linux.scm (linux-libre-5.19, linux-libre-5.15, linux-libre-5.10, linux-libre-5.4, linux-libre-4.19, linux-libre-4.14, linux-libre-4.9): Include powerpc64le-linux as a supported system.
* NEWS: Update it.Mathieu Othacehe2022-10-13
| | | | * NEWS: Add an entry about 'guix shell' --emulate-fhs option.
* installer: partition: Add a confirmation page before formatting.Mathieu Othacehe2022-10-13
| | | | | | | | | | Fixes: <https://issues.guix.gnu.org/57232>. * gnu/installer/newt/partition.scm (run-label-confirmation-page): New procedure. (run-label-page): Call the above procedure before proceeding. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* news: Add entry for 'guix shell --emulate-fhs'.Ludovic Courtès2022-10-13
| | | | * etc/news.scm: Add entry.
* environment: Add '--emulate-fhs'.John Kehayias2022-10-13
| | | | | | | | | | | | | | | | | | | | * guix/scripts/environment.scm (show-environment-options-help, %options): Add '--emulate-fhs'. (setup-fhs): New procedure. Setup for the Filesystem Hierarchy Standard (FHS) container. Defines and uses FHS-SYMLINKS and LINK-CONTENTS to create FHS expected directories and creates /etc/ld.so.conf. (launch-environment): Add 'emulate-fhs?' key and implement it to set $PATH and generate /etc/ld.so.cache before calling COMMAND. (launch-environment/container): Add 'emulate-fhs?' and 'setup-hook' keys and implement them. Define and use FHS-MAPPINGS, to set up additional bind mounts in the container to follow FHS expectations. (guix-environment*): Add glibc-for-fhs to the container packages when 'emulate-fhs?' key is in OPTS. * doc/guix.texi (Invoking guix shell): Document '--emulate-fhs'. (Invoking guix environment): Document '--emulate-fhs'. * tests/guix-environment-container.sh: Add tests for '--emulate-fhs'. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add glibc-for-fhs.John Kehayias2022-10-13
| | | | | | | * gnu/packages/base.scm (glibc-for-fhs): New variable. Hidden package for use in forthcoming --emulate-fhs option for guix containers. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add ydotool.Nicolas Graves via Guix-patches via2022-10-13
| | | | | | * gnu/packages/xdisorg.scm (ydotool): New variable. Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu: home: Add home-dbus-service-type.( via Guix-patches via2022-10-13
| | | | | | | | * gnu/home/services/desktop.scm (home-dbus-service-type): New variable. (home-dbus-configuration): New record type. * doc/guix.texi: Document them. Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu: mcg: Cleanup style.Liliana Marie Prikler2022-10-12
| | | | | | * gnu/packages/mpd.scm (mcg)[source]: Indent as with ‘guix style’. [arguments]: Convert to list of G-Expressions. [inputs, native-inputs]: Move below arguments.
* gnu: mcg: Update to 3.1.Simon Streit2022-10-12
| | | | | | | | | | | | | * gnu/packages/mpd.scm (mcg): Update to 3.1. [native-inputs]: Use the new inputs style. Add desktop-file-utils, gettext-minimal and gtk+:bin. [inputs]: Add python. [build-system]: Change to meson-build-system. [arguments]<#:imported-modules,#:modules>: Remove. <#:glib-or-gtk?>: Set to #t. <#:phases>: Delete ‘glib-or-gtk-wrap’. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
* gnu: mcg: Use new input style.Liliana Marie Prikler2022-10-12
| | | | | * gnu/packages/mpd.scm (mcg)[inputs]: Re-indent according to ‘guix style’. [native-inputs]: Drop labels.
* gnu: cool-retro-term: Fixes font loading.Eric Bavier2022-10-12
| | | | | | | This addresses <https://issues.guix.gnu.org/58451> * gnu/packages/terminals.scm (cool-retro-term)[source]: In snippet for font handling, adjust regexp to account for possible presence of whitespace.
* gnu: Register (gnu packages bqn) in build infrastructure.Marius Bakke2022-10-12
| | | | | | This is a follow-up to commit 9aa2a41b475ff04ed32cc450e8a9120e18720e83. * gnu/local.mk (GNU_SYSTEM_MODULES): Add gnu/packages/bqn.scm.
* gnu: ungoogled-chromium: Update to 106.0.5249.103-1.Marius Bakke2022-10-12
| | | | | * gnu/packages/chromium.scm (%chromium-version): Set to 106.0.5249.103. (%ungoogled-origin, ungoogled-chromium): Update hashes.
* guix-install.sh: Restore compatibility with "yes" invocation.Maxim Cournoyer2022-10-11
| | | | | | | | | | | | | | | | Commit 6a2e303d3a had modified prompt_yes_no to only read a single character, aiming to ease the user experience. This was, in retrospect, a bad idea, as it makes user input error more likely and introduces complexity. This commit reverts to line-oriented input, while preserving the default yes value so that a user can simply hit 'Enter' at the prompt in place of typing "yes". * etc/guix-install.sh (_flush): Delete function. (prompt_yes_no): Restore line-oriented read. Remove loop. Make anything else than yes means no. Use Bash features to streamline definition. Reported-by: Lars-Dominik Braun <lars@6xq.net> and others.
* gnu: Add libskk.mirlan2022-10-11
| | | | | | * gnu/packages/language.scm (libskk): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: profanity: Update to 0.13.0.Tanguy Le Carrour2022-10-11
| | | | | | * gnu/packages/messaging.scm (profanity): Update to 0.13.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: libstrophe: Update to 0.12.2.Tanguy Le Carrour2022-10-11
| | | | | | * gnu/packages/messaging.scm (libstrophe): Update to 0.12.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: mmg: Add dependency on Perl.Ludovic Courtès2022-10-11
| | | | * gnu/packages/graphics.scm (mmg)[native-inputs]: Add PERL.
* gnu: gtkwave: Update to 3.3.113.jgart2022-10-11
| | | | | | | | * gnu/packages/fpga.scm (gtkwave): Update to 3.3.113. [inputs]: Use new style. [arguments]: Use gexp. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: python-pydyf: Update to 0.3.0.Michael Rohleder2022-10-11
| | | | | | | | * gnu/packages/pdf.scm (python-pydyf): Update to 0.3.0. [arguments]: Add phases to replace build and install phases. [native-inputs]: Add python-flit-core, python-pypa-build. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: emacs-guix: Remove input labels.Ludovic Courtès2022-10-11
| | | | * gnu/packages/emacs-xyz.scm (emacs-guix)[inputs]: Remove labels.
* gnu: emacs-guix: Update to cf5b7a4.Ludovic Courtès2022-10-11
| | | | | * gnu/packages/emacs-xyz.scm (emacs-guix): Update to cf5b7a4. [home-page]: Update.
* Revert "guix system: Remove unused 'read-operating-system' procedure."Ludovic Courtès2022-10-11
| | | | | | This reverts commit d11a432adffe9308eafec6b77cddd3145029109e. The 'read-operating-system' is used in Emacs-Guix.
* git: Factorize 'commit-id?' predicate.Ludovic Courtès2022-10-11
| | | | | | * guix/git.scm (commit-id?): New procedure, copied from (guix swh). (resolve-reference): Use it instead of inline code. * guix/inferior.scm (channel-full-commit): Likewise.
* guix import: Add a blank line after each package definition.Ludovic Courtès2022-10-11
| | | | | | | | | | Starting from commit 371a83b764c4993d198666e1674454eecbefcdf1, 'guix import crate -r' (or similar) would no longer print a blank line in between definitions. This patch fixes it. Reported by jgart <jgart@dismail.de>. * guix/scripts/import.scm (guix-import): Add second 'newline' call.
* system: operating-system: Make the timezone field default to Etc/UTC.Maxim Cournoyer2022-10-11
| | | | * gnu/system.scm (<operating-system>) [timezone]: Default to "Etc/UTC".
* services: slim-service-type: Do not extend profile with xterm.Maxim Cournoyer2022-10-11
| | | | | | | | | | | This is not done for gdm-service-type, so do not do it here either, for consistency. Perhaps that change had been motivated by the fact that using ratpoison without a default terminal makes for a poor user experience (one cannot even view the help screen without a terminal); this was fixed with the preceding commit. * gnu/services/xorg.scm (slim-service-type) [profile-service-type]: Remove extension.
* gnu: ratpoison: Reference xterm absolutely.Maxim Cournoyer2022-10-11
| | | | | | * gnu/packages/ratpoison.scm (ratpoison) [configure-flags]: Specify the '--with-xterm' configure flag. [inputs]: Add xterm.
* gnu: ratpoison: Use gexps and remove input labels.Maxim Cournoyer2022-10-11
| | | | | * gnu/packages/ratpoison.scm (ratpoison) [phases]: Use gexps. [inputs, native-inputs]: Remove input labels.
* gnu: icedove: Use gexps.Maxim Cournoyer2022-10-11
| | | | | * gnu/packages/gnuzilla.scm (icedove) [arguments]: Use gexps, adjusting phases as needed.
* gnu: libreoffice: Move inputs below arguments and fix indentation.Maxim Cournoyer2022-10-11
| | | | | | * gnu/packages/libreoffice.scm (libreoffice) Fix indentation. [native-inputs, inputs]: Move below... [arguments]: ... this field.
* gnu: Update guile-eris to 1.0.0.pukkamustard2022-10-11
| | | | | | * gnu/packages/guile-xyz.scm (guile-eris): Update to 1.0.0. Signed-off-by: Christopher Baines <mail@cbaines.net>