aboutsummaryrefslogtreecommitdiff
path: root/gnu
AgeCommit message (Expand)Author
2024-12-24home: services: Add localhost-repo-server....* gnu/home/services/vcs.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Record 'home/services/vcs.scm'. Change-Id: I37d3c1dacc26eb31b9b7ec434ed760c7cf84cc32 Wojtek Kosior
2024-12-24gnu: Add guile-cantius....* gnu/packages/guile-xyz.scm (guile-cantius): New variable. Change-Id: Iccc7385ae5c3f762f53705c8ebe876f7ad08da00 Wojtek Kosior
2024-12-24gnu: Add guile-de-paul-records....* gnu/packages/guile-xyz.scm (guile-de-paul-records): New variable. Change-Id: I869c65666f83aedec7a34809b66396798e62e2cf Wojtek Kosior
2024-12-24gnu: Add guile-myra-test-utils....* gnu/packages/guile-xyz.scm (guile-myra-test-utils): New variable. Change-Id: I20ae86fa5fab953524786bffefa3cac9703128df Wojtek Kosior
2024-12-24gnu: Add lawrence-bolierplate....* gnu/packages/autotools.scm (lawrence-boilerplate): New variable. Change-Id: Ib29e2ef3165ee151226ac4d4bc41ec5b51df8038 Wojtek Kosior
2024-12-24system: Allow adding elsewhere-defined system users to extra groups....* gnu/system.scm (define-module): Export `operating-system-extra-groups`. (<operating-system>)[extra-groups]: New field. (operating-system-default-essential-services): Also pass extra groups to account-service. (hurd-default-essential-services): Same here. * gnu/system/accounts.scm (define-module): Use (ice-9 vlist), (srfi srfi-8) and (srfi srfi-26). Export `user-extra-groups`* and `merge-extra-groups-data`. (<user-extra-groups>): New record type. (user-account-extend): New procedure. (merge-extra-groups-data): New procedure. * gnu/system/shadow.scm (define-module): Re-export `user-extra-groups`*. (account-service-type)[extend]: Handle <user-extra-groups> records, move field intializer upward to be able to use `compose`. Change-Id: I3f489ac794d342267b7627db1d28315ea4b69db2 Wojtek Kosior
2024-12-24services: Add overlayfs-service-type....The `overlayfs-service-type` allows overlay filesystems to be automatically mounted upon boot and reconfiguration. * gnu/services/overlayfs.scm: New file. * gnu/local.ml (GNU_SYSTEM_MODULES): Add it. Change-Id: I94bb3e3a29648faa354931f3c1cebc5947ab1d5c Wojtek Kosior
2024-12-24services: certbot: Facilitate granting key read access to groups....* gnu/services/certbot.scm (certificate-configuration)[key-read-group]: New field. (certbot-deploy-hook): Ensure requested group has the right access. (certbot-command): Pass the requested group to `certbot-deploy-hook'. (set-key-access-gexp): New procedure. (generate-certificate-gexp) Ensure the requested group has the right access. Change-Id: Ia46454a7d2b042cfb682d1d8a7e04aebbc9c19da W. Kosior
2024-12-24services: certbot: Allow it to be used without Nginx....* gnu/services/certbot.scm (define-module)[#:export]: Add `certbot-sans-nginx-service-type'. (certbot-configuration)[service-reload]: Add field. (certbot-configuration)[service-requirement]: Add field. (certbot-deploy-hook): Reload requested services rather than hardcoded Nginx. (certbot-command): Pass services to reload to `certbot-deploy-hook'. (certbot-renewal-one-shot): Pass depended services to Shepherd as configured instead of passing hardcoded Nginx. (certbot-sans-nginx-service-type): New variable. (certbot-service-type): Avoid code duplication by inheriting from the above service type. Change-Id: Ic833f24989bbcdcbbc273f9c8eae4c56992aafa0 Wojtek Kosior
2024-12-24services: Add snakeoil-service-type....The `snakeoil-service-type' generates self-issued certificates for use by various system daemons. * gnu/services/ca.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Change-Id: I57bbe51f43958c0f2f437d81645ce44f9a68470b Wojtek Kosior
2024-12-24services: Update Exim service to use `privileged-program' API....Uses of deprecated `setuid-program' get replaced with new `privileged-program'. * gnu/services/mail.scm (exim-setuids): Call `privileged-program' record constructor macro. (exim-service-type): Extend `privileged-program-service-type' Change-Id: Idb00e45ddcc50a37303dc50fe1feef73a109f219 W. Kosior
2024-12-24gnu: exim: Use /etc/exim.conf as the default config file....* gnu/packages/mail.scm (exim)[arguments]<#:phases>['symlink-config-file]: New phase. Change-Id: I1be49e4a042b42e38ebff8aeff0e9cfc8724456b Wojtek Kosior
2024-12-24services: Support running Exim with setuid/setgid....In a typical configuration, Exim binary is setuid root and the Exim daemon process listens for connections under a non-root system account (usually `exim`). Upon receiving a message, it forks into a child process which re-executes the binary to regain privileges and deliver the mail to its destination (e.g. a Maildir inside user's home directory). Besides the setuid binary itself, such setup also requires the Exim configuration file to live at the path Exim considers safe. It defaults to /etc/exim.conf and changing it requires rebuilding the Exim daemon. If a configuration at unsafe path is used instead, Exim drops its privileges before reading it and becomes unable to perform certain kinds of email delivery. * gnu/services/mail.scm (<exim-configuration>)[setuid-user]: New field. (<exim-configuration>)[setgid-group]: New field. (exim-computed-config-file): Delete variable. (exim-shepherd-service)[start]: Use Exim's default config at /etc/exim.conf. (exim-activation): Atomically put Exim's current config at /etc/exim.conf and verify its syntactic correctness. (exim-setuids): New variable. (exim-service-type)[extensions]: Extend `setuid-program-service-type`. Change-Id: Ie6153baac80180d3d48f6b5a6959895df06aef0b Wojtek Kosior
2024-12-24gnu: exim: Enable Maildir delivery format....* gnu/packages/mail.scm (exim)[arguments]<#:phases>['configure]: Set `SUPPORT_MAILDIR` config option to "yes". Change-Id: Ibb2b0bcd5b4a790eedfdc12f794a43625cb88250 Wojtek Kosior
2024-12-24gnu: exim: Set `exim` as the default user....* gnu/packages/mail.scm (exim)[arguments]<#:phases>['configure]: Configure Exim to resolve uid/gid of `exim` in runtime and prevent install script from failing. Change-Id: I2571d6e5a4d4aca534ed6bdfaa3832b1ec69c1d5 Wojtek Kosior
2024-12-24services: Allow cgit footer text to be passed as a file-like object....* gnu/services/cgit.scm (cgit-configuration)[footer]: Specify type as `file-object`. Change-Id: Id5790bbdb5e09204b653bc54e1b9b60afe5a2ee0 Wojtek Kosior
2024-12-24services: Export cgit config serialization procedure....This procedure alone is useful when deploying cgit under HTTP server other than Nginx or when deploying multiple cgit instances on a single host. * gnu/services/cgit.scm (define-module): Export `serialize-cgit-configuration`. Change-Id: Ia21c5debbd54a156df703d84694c945e851cd55c Wojtek Kosior
2024-12-24gnu: pantalaimon: Fix media downloads....* gnu/packages/matrix.scm (pantalaimon)[arguments]: Patch incorrect function invokation that made downloads of attachments impossible Wojtek Kosior
2024-12-24gnu: direnv: Update to 2.35.0....* gnu/packages/shellutils.scm (direnv): Update to 2.35.0. Change-Id: I22b1769bb2c848b9f59f265d2cfc6f99224f158b Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Jordan Moore
2024-12-24gnu: cifs-utils: Update to 7.1....* gnu/packages/samba.scm (cifs-utils): Update to 7.1. Change-Id: Icfb3ca7e691928a443f54e127612f32321bdd721 Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Jordan Moore
2024-12-24gnu: cloc: Update to 2.02....* gnu/packages/code.scm (cloc): Update to 2.02. Change-Id: If442f42c207a810415acfab4d274c580fd066192 Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Jordan Moore
2024-12-24gnu: weechat: Update to 4.5.1....* gnu/packages/irc.scm (weechat): Update to 4.5.1. Change-Id: I7b76eb865e7f7fb49c6345594cb991b3c863ac25 Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Ashish SHUKLA
2024-12-24gnu: xfce4-power-manager: Enable polkit and panel plugin....* gnu/packages/xfce.scm (xfce4-power-manager)[inputs]: Add polkit and xfce4-panel. Change-Id: Ie74dde362b03b85ecf0a1cbd527c91ceafbc1c57 宋文武
2024-12-24gnu: Add modglue....* gnu/packages/patches/modglue-fix-build.patch: New file. * gnu/local.mk (dist_patch_DATA): Add reference to it. * gnu/packages/engineering.scm (modglue): New variable. Change-Id: I3ffe9e8b258f49021a21b17f088bebb44245cbad Danny Milosavljevic
2024-12-24gnu: emacs-denote: Build Info manual....* gnu/packages/emacs-xyz.scm (emacs-denote)[arguments]: Add phase to build info manual. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Change-Id: I04cb2aec3f6510e48bc7c522ea4c74897058ac80 Yuval Langer
2024-12-24gnu: emacs-eldev: Update to 1.11....* gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.11. Change-Id: Icb7d8a603e80e757b86335ed7b6e221784ca0d9b Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Suhail Singh
2024-12-24gnu: emacs-nerd-icons: Update to 0.1.0-1.4bd9795....* gnu/packages/emacs-xyz.scm (emacs-nerd-icons): Update to 0.1.0-1.4bd9795. Change-Id: If036139abab5617a33712cde50ebfbd682e9ec78 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Fredrik Salomonsson
2024-12-24gnu: Add emacs-disproject....* gnu/packages/emacs-xyz.scm (emacs-disproject): New variable. Change-Id: Ib7a56b7458a729d4893f20f89df0a75217272498 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> aurtzy
2024-12-24gnu: Add emacs-writefreely....* gnu/packages/emacs-xyz.scm (emacs-writefreely): New variable. Change-Id: I6c731afeee16944b97b493a6fba66af841b324a5 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Cayetano Santos
2024-12-24gnu: Add emacs-mistty....* gnu/packages/emacs-xyz.scm (emacs-mistty): New variable. Change-Id: I13c67437d6cb7813d1d399626e52834019cb41f0 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> gemmaro
2024-12-24gnu: emacs-chatgpt-shell: Update to 1.20.1....* gnu/packages/emacs-xyz.scm (emacs-chatgpt-shell): Update to 1.20.1. Change-Id: Icb6d714d2515b7765c4ba59ec13eec5e2e8eec24 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Rostislav Svoboda
2024-12-24gnu: emacs-meyvn: Update to 1.7....* gnu/packages/emacs-xyz.scm (emacs-meyvn): Update to 1.7. Change-Id: I5cdeb69b040c259ee2145a25d7d416bd155fc586 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Daniel Szmulewicz
2024-12-24Revert "gnu: python-nbclassic: Fix build."...This reverts commit 907b6bb51af8af15a0d6dd3ab1e33109a4ad4d2e. It wasn't enough to make jupyter actually usable again. I guess there are some bigger excavations necessary. Change-Id: I202f03ef87789b44c85e3c167c9cfc14ca172744 Danny Milosavljevic
2024-12-23gnu: hugs: Fix build with GCC....* gnu/packages/patches/hugs-fix-build.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/hugs.scm (hugs)[source]: Use it. [native-inputs]: Remove. Change-Id: I8b17f6c8a89fbc25ac9fe40b58962c83b08cbc21 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Homo
2024-12-23gnu: git: Update to 2.47.1....* gnu/packages/version-control.scm (git-minimal): Update to 2.47.1. (git)[arguments]<install-man-pages>: Update hash. Change-Id: I43b730ab22dbf3c8750936cb342f96342b9ca0b0 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Ashish SHUKLA
2024-12-23gnu: proof-general: Update to 4.5-2.d668946....* gnu/packages/coq.scm (proof-general): Update to 4.5-2.d668946. [phases] Remove unneeded phases and fix shebang fix. Change-Id: I5ce2775cf18775737853d76b5a50d461aa9d14e6 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Morgan Smith
2024-12-23gnu: passt: Update to 2024_12_11.09478d5....* gnu/packages/containers.scm (passt): Update to 2024_12_11.09478d5. Change-Id: Ib4dab58099337a711fdbca3d700804b8d251d7c7 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Tomas Volf
2024-12-23gnu: radicale: Update to 3.3.2....* gnu/packages/dav.scm (radicale): Update to 3.3.2. [build-system]: Switch to pyproject-build-system. [native-inputs]: Remove no longer used python-pytest-runner. Add python-setuptools and python-wheel. [propagated-inputs]: Remove no longer used python-dateutil. Add python-pika. Change-Id: I2fa789fb828cba01bb246e1f747cf170881fc3bb Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jonathan Brielmaier
2024-12-23gnu: Add pam-hooks....* gnu/packages/admin.scm (pam-hooks): Add variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves
2024-12-23gnu: home: Replace rename in update-symlinks scripts....* gnu/home/services/symlink-manager.scm (update-symlinks): Use copy-file and delete-file instead of rename-file to avoid an error when the target and backup are not in the same filesystem. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves
2024-12-23services: syslog: Adjust service for rsyslog compatibility....* gnu/services/base.scm (syslog-shepherd-service): Change flag for designating configuration file. The long option is not compatible with rsyslog while the short is; switch to the short one. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Baptiste Note
2024-12-23services: syslog: Add extra-options argument to syslog service....* gnu/services/base.scm (<syslog-configuration>): Add extra-options field. (syslog-shepherd-service): Use it when running the service. * doc/guix.texi: Document it. Change-Id: I540d070b9a9678b45ec9fa28d6fdc761f9b3fd9a Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Baptiste Note
2024-12-23gnu: openmpi@4: Hard-code file name of ‘ssh’ command....This patch fixes a runtime error when launching an MPI program using mpiexec/mpirun in an environment where the ssh command is not available. * gnu/packages/mpi.scm (openmpi-4)[inputs]: Add openssh-sans-x. (openmpi-4)[arguments]: Fix path in code. Change-Id: I65255186c37b6eaba3c283c7046163abc2cb38b7 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Romain GARBAGE
2024-12-23gnu: cadabra2: Fix paths....* gnu/packages/engineering.scm (cadabra2)[arguments]<#:phases>[patch-paths]: New phase. Change-Id: If22ed61f74531bd685c0e588a954982e63cb2d33 Danny Milosavljevic
2024-12-23gnu: python-nbclassic: Fix build....* gnu/packages/jupyter.scm (python-nbclassic)[propagated-inputs]: Add python-webcolors-24. Change-Id: I57158358594a6cc05814bb608bee1b268f90f6c8 Danny Milosavljevic
2024-12-23gnu: python-emoji: Propagate python-typing-extensions....The core module imports typing_extensions, so these are likely meant to be propagated. * gnu/packages/python-xyz.scm (python-emoji)[native-inputs]: Move python-typing-extensions from here… [propagated-inputs]: … to here. Signed-off-by: jgart <jgart@dismail.de> Liliana Marie Prikler
2024-12-23gnu: python-pypandoc: Use gexp style....* gnu/packages/python-xyz.scm (python-pypandoc): Use gexp style. Signed-off-by: jgart <jgart@dismail.de> Change-Id: Id1197e0683b43481ebb39bc8dd1aa55acf3ec03b jgart
2024-12-23gnu: python-pypandoc: Fix build....* gnu/packages/python-xyz.scm (python-pypandoc): Fix build. [native-inputs]: Add python-setuptools. [home-page]: Follow redirect. Signed-off-by: jgart <jgart@dismail.de> Change-Id: Id1197e0683b43481ebb39bc8dd1aa55acf3ec03b Aaron Covrig
2024-12-24gnu: elfutils: Fix cross-compilation....* gnu/packages/elf.scm (elfutils): Fix cross-compilation [arguments]: When cross-compilation, apply patch. <#:phases>: Use G-expressions. * gnu/packages/patches/elfutils-libdwfl-string-overflow.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. Change-Id: Ia1ab9c09124a140608bda34bf62f0ae80eb44f9b Zheng Junjie
2024-12-23gnu: python-pytest-qt: Update to 4.4.0....* gnu/packages/python-check.scm (python-pytest-qt): Update to 4.4.0. Change-Id: I33b8f8be6b6d7cb3e8bac1784fdf22787f24b631 Danny Milosavljevic