summaryrefslogtreecommitdiff
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* gnu: Add miniflux-service-type.add-miniflux-serviceRodion Goritskov32 hours2-0/+272
| | | | | | | * gnu/services/feed.scm (miniflux-service-type): New variable. * gnu/tests/feed.scm (%test-miniflux): Add test. Change-Id: I4a336e677ec8b46aed632f0ded9cc11c2d38975f
* home: Add log rotation to ‘%base-home-services’.Ludovic Courtès33 hours1-1/+1
| | | | | | | | * gnu/home.scm (%base-home-services): Add instance of ‘home-log-rotation-service-type’. * doc/guix.texi (Shepherd Home Service): Document it. Change-Id: I00a98da100e3a07fe409f3c44d8ab88e743a8e3e
* home: Define ‘%base-home-services’.Ludovic Courtès33 hours1-2/+9
| | | | | | | | | | | | | | | | | * gnu/home.scm (%base-home-services): New variable. (<home-environment>)[services]: Change default to ‘%base-home-services’. * guix/scripts/home/import.scm (manifest+configuration-files->code): Use ‘%base-home-services’ by default. * tests/home-import.scm (match-home-environment-no-services) (match-home-environment-transformations) (match-home-environment-no-services-nor-packages) (match-home-environment-bash-service) (match-home-environment-bash-service-with-alias): Adjust accordingly. * doc/he-config-bare-bones.scm: Use ‘%base-home-services’. * doc/guix.texi (Declaring the Home Environment): Add index entry for ‘%base-home-services’. Change-Id: Id95ede62b97a976aad138bfc4b63fc0bdf37c7de
* home: services: Add log rotation service.Ludovic Courtès33 hours2-0/+32
| | | | | | | | * gnu/home/services/admin.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * doc/guix.texi (Shepherd Home Service): Document it. Change-Id: I37ac171147c236b05d6d3b226e9072ab7524dfe9
* services: rottlog: Deprecate.Ludovic Courtès33 hours1-2/+7
| | | | | | | * gnu/services/admin.scm (rottlog-service-type): Deprecate. * doc/guix.texi (Log Rotation): Add deprecation warning. Change-Id: I661666ff3de64a69ff4f4982d7f432fd575c36df
* services: Switch from mcron + Rottlog to Shepherd’s log rotation.Ludovic Courtès33 hours8-151/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/services/admin.scm (unattended-upgrade-log-rotations): Remove. (unattended-upgrade-service-type): Remove ‘rottlog-service-type’ extension. * gnu/services/audio.scm (mpd-log-rotation): Remove. (mpd-service-type): Remove ‘rottlog-service-type’ extension. (mympd-log-rotation): Remove. (mympd-service-type): Remove rottlog-service-type’ extension. * gnu/services/base.scm (%guix-publish-log-rotations): Remove. (guix-publish-service-type): Remove ‘rottlog-service-type’ extension. (%base-services): Instantiate ‘log-rotation-service-type’ instead of ‘rottlog-service-type’. (%default-syslog-files): New variable. (syslog-service-type): Extend ‘log-rotation-service-type’. * gnu/services/cuirass.scm (cuirass-log-rotations): Remove. (cuirass-service-type): Remove ‘rottlog-service-type’ extension. (cuirass-remote-worker-log-rotations): Remove. (cuirass-remote-worker-service-type): Remove ‘rottlog-service-type’ extension. * gnu/services/file-sharing.scm (%transmission-daemon-log-rotations): Remove. (transmission-daemon-service-type): Remove ‘rottlog-service-type’ extension. * gnu/services/linux.scm (%earlyoom-log-rotation): Remove. (earlyoom-service-type): Remove ‘rottlog-service-type’ extension. * gnu/services/networking.scm (%ntp-log-rotation): Remove. (ntp-service-type): Remove ‘rottlog-service-type’ extension. (openntpd-service-type): Likewise. (%connman-log-rotation): Remove. (connman-service-type): Remove ‘rottlog-service-type’ extension. (%hostapd-log-rotation): Remove. (hostapd-service-type): Remove ‘rottlog-service-type’ extension. (%pagekite-log-rotation): Remove. (pagekite-service-type): Remove ‘rottlog-service-type’ extension. (%yggdrasil-log-rotation): Remove. (yggdrasil-service-type): Remove ‘rottlog-service-type’ extension. (%ipfs-log-rotation): Remove. (ipfs-service-type): Remove ‘rottlog-service-type’ extension. (%keepalived-log-rotation): Remove. (keepalived-service-type): Remove ‘rottlog-service-type’ extension. * gnu/services/web.scm (%hpcguix-web-log-rotations): Remove. (hpcguix-web-service-type): Remove ‘rottlog-service-type’ extension. (%mumi-log-rotations): Remove. (mumi-service-type): Remove ‘rottlog-service-type’ extension. * doc/guix.texi (Log Rotation): Adjust text regarding which one is in ‘%base-services’. Change-Id: I8802d4c2337a1e08e3c084d6217f76527d7ee1fb
* services: unattended-upgrade: Rewrite as a Shepherd timer.Ludovic Courtès33 hours1-31/+38
| | | | | | | | | | | | | | | | | | This is a semi-incompatible change: gexps previously provided in the ‘schedule’ field will no longer work. * gnu/services/admin.scm (unattended-upgrade-mcron-jobs): Rename to… (unattended-upgrade-shepherd-services): … this. Return a list of one Shepherd service. Remove custom logging and time limitation facilities from ‘code’. (unattended-upgrade-service-type): Extend ‘shepherd-root-service-type’ instead of ‘mcron-service-type’. (<unattended-upgrade-configuration>)[services-to-restart]: Change default. * doc/guix.texi (Unattended Upgrades): Adjust ‘schedule’ and ‘services-to-restart’ documentation. Change-Id: I1b239c5946e71cf9e2af9b24fe4b01366b57fb7a
* services: log-cleanup: Rewrite as a Shepherd timer.Ludovic Courtès33 hours1-6/+19
| | | | | | | | | | | | | | This is a semi-incompatible change: gexps previously provided in the ‘schedule’ field will no longer work. * gnu/services/admin.scm (log-cleanup-mcron-jobs): Remove. (log-cleanup-shepherd-services): New procedure. (log-cleanup-service-type): Extend SHEPHERD-ROOT-SERVICE-TYPE instead of MCRON-SERVICE-TYPE. * doc/guix.texi (Log Rotation): Adjust ‘schedule’ documentation accordingly. Change-Id: I2a3beb7dffbc9992b714a29423674db9c7dc6cab
* services: Add ‘log-rotation-service-type’.Ludovic Courtès33 hours1-7/+109
| | | | | | | | | | * gnu/services/admin.scm (%default-log-rotation-calendar-event): New variable. (<log-rotation-configuration>): New record type. (log-rotation-shepherd-services): New procedure. (log-rotation-service-type): New variable. Change-Id: I4400035f3b6065ec147ac932110b690120d739c2
* system: Add zstd to ‘%base-packages’.Ludovic Courtès33 hours1-2/+3
| | | | | | | | | This is particularly useful now that log files are going to be zstd-compressed by default, among other uses of zstd. * gnu/system.scm (%base-packages-utils): Add ‘zstd’. Change-Id: I766791fea3bc3fca2519a7cd6ac472550be386dd
* gnu: shepherd@1.0: Add dependency on gzip and zstd.Ludovic Courtès33 hours1-2/+14
| | | | | | | * gnu/packages/admin.scm (shepherd-1.0)[arguments]: New field. [inputs]: New field. Change-Id: If21f876bbf3fba933a8d997a95db91b961adfca3
* gnu: yt-dlp: Update to 2025.01.15.Thanos Apollo34 hours1-2/+2
| | | | | | | * gnu/packages/video.scm (yt-dlp): Update to 2024.12.23. Change-Id: I61444694f016e865a6163fb42603e422b9815c7d Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: Add python-pathspec.jgart37 hours1-0/+18
| | | | | | * gnu/packages/python-xyz.scm (python-pathspec): New variable. Change-Id: I8576103866117aa46ef3d5fc7274926b8a4878d9
* gnu: viewnior: Support image formats out of the box.Florian Pelz41 hours1-8/+21
| | | | | | | | | | | * gnu/packages/image-viewers.scm (viewnior) [inputs]: Add 'webp-pixbuf-loader' for WebP support. [arguments]: Enable 'glib-or-gtk?' to make available GDK_PIXBUF_MODULE_FILE. Wrap viewnior to use it instead of the image loaders installed by the user. Fixes: <https://issues.guix.gnu.org/63427> Change-Id: I86b7c2845af2fc1d3fdf4032b2208493a6868546
* gnu: Add r-rpanglaodb.Navid Afkhami42 hours1-0/+21
| | | | | | | * gnu/packages/cran.scm (r-rpanglaodb): New variable. Change-Id: I526a9bc52b77c97c3c85fbe4fd235cb53254495c Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: gcide: Update to 0.54.Andy Tai42 hours1-2/+2
| | | | | | * gnu/packages/dictionaries.scm (gcide): Update to 0.54. Change-Id: Id5444ac5b36be1b368b88572745166fd9c96b72f
* gnu: doxygen: Remove now unnecessary Hurd patch.Ludovic Courtès43 hours3-40/+1
| | | | | | | | | | * gnu/packages/documentation.scm (doxygen)[arguments]: Remove ‘apply-patch’ phase. * gnu/packages/patches/doxygen-hurd.patch: Remove. * gnu/local.mk (dist_patch_DATA): Remove it. Reported-by: yelninei Change-Id: Ifa5eca19e0504b9c5df1f7a57c4d5c355049a41f
* gnu: libgpg-error: Remove now unnecessary x86_64-gnu patch.Ludovic Courtès43 hours3-98/+3
| | | | | | | | | | * gnu/packages/gnupg.scm (libgpg-error)[arguments]: Remove ‘apply-hurd64-patch’ phases. * gnu/packages/patches/libgpg-error-hurd64.patch: Remove. * gnu/local.mk (dist_patch_DATA): Remove it. Reported-by: yelninei Change-Id: I2c5a5c19ba673f7d8946f755207fc260b7d452b9
* services: dns: Minor cleanup of unbound service.Sören Tempel43 hours1-13/+11
| | | | | | | | | | | | In #68757, v3 instead of v4 of the patchset was committed by accident. This patch revives the (minor) changes made in the v4. * gnu/service/dns.scm: Remove exports of no longer existing names. (unbound-service-type): Fix at typo (unbound -> Unbound). (unbound-shepherd-service): Run after user processes. (unbound-account-service): Determine shell based on shadow package. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* services: Add xe-guest-utilities-service-type.Karl Hallsby43 hours1-1/+81
| | | | | | | | | * gnu/services/virtualization.scm (xe-guest-utilities-configuration, xe-guest-utilities-service-type): New variables. * doc/guix.texi: Document them. Change-Id: Ife4e79fa6d1a9d5a21bf7479488884f2a5cf8d56 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add xe-guest-utilities.Karl Hallsby43 hours1-0/+60
| | | | | | | * gnu/packages/virtualization.scm (xe-guest-utilities): Init at 8.4.0 Change-Id: I4daf19dc1964be00554e1c598ef88897081f5d52 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: gp2c: Update to 0.0.14.Andreas Enge44 hours1-2/+2
| | | | | | * gnu/packages/algebra.scm (gp2c): Update to 0.0.14. Change-Id: Ia45f9fae34f0a63a434ab5f7120cf1fba943161b
* gnu: pari-gp: Update to 2.17.0.Andreas Enge44 hours3-2/+22
| | | | | | | | * gnu/packages/algebra.scm (pari-gp): Update to 2.17.0. * gnu/packages/patches/pari-gp-qfcvp.patch: New file. * gnu/local.mk (dist_patch_DATA): Register patch. Change-Id: If0ea83651ae7aa4cb5de61dfaa5ec2b11051eaab
* gnu: Add python-ngesh.Navid Afkhami45 hours1-1/+28
| | | | | | | * gnu/packages/bioinformatics.scm (python-ngesh): New variable. Change-Id: If51f3075037647e319efa9468331677a845b30cb Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: Add python-radian.Jonas Freimuth46 hours1-0/+51
| | | | | | | * gnu/packages/statistics.scm (python-radian): New variable. Change-Id: Ibb4c642387591c14a0744cc52c57dbafa2f7f015 Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: Add python-rchitect.Jonas Freimuth46 hours1-0/+31
| | | | | | | * gnu/packages/statistics.scm (python-rchitect): New variable. Change-Id: I45fe6f8803f953168b275ea28e444d4ece3912ec Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: seahorse: Update to 47.0.1.Liliana Marie Prikler47 hours1-2/+2
| | | | * gnu/packages/gnome.scm (seahorse): Update to 47.0.1.
* gnu: orchis-theme: Update to 2024-11-03.Liliana Marie Prikler47 hours1-4/+3
| | | | | * gnu/packages/gnome-xyz.scm (orchis-theme): Update to 2024-11-03. [#:configure-flags]: Remove “--radio-color”.
* gnu: matcha-theme: Update to 2024-05-01.Liliana Marie Prikler47 hours1-2/+2
| | | | * gnu/packages/gnome-xyz.scm (matcha-theme): Update to 2024-05-01.
* gnu: emacs-slite: Fix description.gemmaro2 days1-1/+1
| | | | | | | | * gnu/packages/lisp-xyz.scm (emacs-slite)[description]: Fix Texinfo code markup. Change-Id: Ic3c4be16ed18b1c7ffba949f81746f91eed1d029 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: emacs-eimp: Fix description.gemmaro2 days1-1/+1
| | | | | | | | * gnu/packages/emacs-xyz.scm (emacs-eimp)[description]: Fix Texinfo code markup. Change-Id: If457277254dbbdf3ba50b14ff0c2a74c6ddb94d6 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: emacs-howm: Fix description.gemmaro2 days1-2/+2
| | | | | | | | * gnu/packages/emacs-xyz.scm (emacs-howm)[description]: Fix Texinfo code markup. Change-Id: I44e352da17d48fe8f71421ad66c31d1c68442b61 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: python-pylibmc: Fix description.gemmaro2 days1-1/+2
| | | | | | | | * gnu/packages/databases.scm (python-pylibmc)[description]: Fix Texinfo code markup. Change-Id: I71cff32e5c2c739de26e0473d57f7fc13e669426 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: ghc-xmobar: Update to 0.48.1.hiecaq2 days1-3/+4
| | | | | | | | | * gnu/packages/wm.scm (ghc-xmobar): Update to 0.48.1. [inputs]: Add ghc-extra. [home-page]: Point to the actual project home-page. Change-Id: I4a43c774a00853eb15a0874d5228729867d0606e Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: ghc-xmonad-contrib: Update to 0.18.1.hiecaq2 days1-5/+2
| | | | | | | | * gnu/packages/wm.scm (ghc-xmonad-contrib): Update to 0.18.1. [arguments]: Remove field. Change-Id: I4cc6c613be3c15cdd326fde90b4689beec629d36 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: xmonad: Update to 0.18.0.hiecaq2 days1-20/+17
| | | | | | | | | * gnu/packages/wm.scm (xmonad): Update to 0.18.0. [home-page]: Use https. [arguments]<#:phases>: Use make-desktop-entry-file. Change-Id: Ia3d4a350c1e8eb82d8e11e151dd83b5a10c22ff5 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: openfpgaloader: Update to 0.13.1.Cayetano Santos2 days1-2/+2
| | | | | | | * gnu/packages/fpga.scm (openfpgaloader): Update to 0.13.1. Change-Id: Ib7f221848e5ac701b03405d02ab21dbd686f73f6 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
* gnu: fastfetch: Add more configure flags.Dariqq2 days1-1/+11
| | | | | | | | | | | | | | | Use dynamic linking for dependencies instead of dlopening them at runtime which requries a wrapper with LD_LIBRARY_PATH. Additionally provide custom paths to pci-ids and amdgpu-ids. * gnu/packages/admin.scm (fastfetch) [#:configure-flags]: Enable dynamic linking and disable directx-headers. Set custom paths to hwdata and libdrm. [inputs]: Add hwdata and libdrm for the custom paths. Change-Id: I9f86b49f0a116bcee91ca15b6e77cfbb3867e290 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
* gnu: fastfetch: Update to 2.34.1.Dariqq2 days1-4/+14
| | | | | | | | | | | | * gnu/packages/admin.scm (fastfetch): Update to 2.34.1. [origin]: Add snippet to remove third party code. [#:configure-flags]: Disable bundled yyjson, disable flashfetch, enable tests and skip installing license. [native-inputs]: Add python-minimal. [inputs]: Add yyjson. Change-Id: I52d5cf244726bf4362f658f818094a483e3b3d01 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
* gnu: Add yyjson.Dariqq2 days1-0/+44
| | | | | | | * gnu/packages/c.scm (yyjson): New variable. Change-Id: Ica9ff2e1b6676aa8761eb33cbab76154f17e443f Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
* gnu: Add emacs-org-sticky-header.Danny Milosavljevic2 days1-0/+18
| | | | | | * gnu/packages/emacs-xyz.scm (emacs-org-sticky-header): New variable. Change-Id: I0f1f87efb9617c91281424967f52be77e83dc993
* gnu: sslh: Use GEXPs.Artyom V. Poptsov2 days1-32/+29
| | | | | | * gnu/packages/networking.scm (sslh): Use GEXPs. Change-Id: I5b31afdfeb1f1f9b2e5f86290adc405f3a90a367
* gnu: sslh: Update to 2.1.2.Artyom V. Poptsov2 days1-10/+18
| | | | | | | | | | | * gnu/packages/networking.scm (sslh): Update to 2.1.2. [native-inputs]: Add pcre2. [inputs]: Remove tcp-wrappers and libcap. Add libev. [arguments]<phases>: Patch tests; disable a failing test. <make-flags>: Disable USELIBCAP as it leads to "permission denied" errors. Disable USELIBWRAP as it leads to linker errors. Add USELIBCONFIG. Change-Id: I20ba6e5ec1af4c7666d2b1f9870c850207e9c2c9
* gnu: emacs-xenops: Update to 0.0.1.Danny Milosavljevic2 days1-29/+25
| | | | | | * gnu/packages/emacs-xyz.scm (emacs-xenops): Update to 0.0.1. Change-Id: I9ee91d166b6414e53686a4627f5c5d77debe3987
* gnu: xaos: Update to 4.3.3.Artyom V. Poptsov2 days1-3/+3
| | | | | | * gnu/packages/maths.scm (xaos): Update to 4.3.3. Change-Id: I6ff66c937320b081e60ed05f334c99de7e2b2713
* service: plasma: Allow access bluetooth devices in "System Settings".Raven Hallsby3 days2-1/+6
| | | | | | | | | | | This adds the Bluetooth section back to KDE Plasma 6's System Settings menu. * gnu/packages/kde-plasma.scm (bluedevil): Propagate bluez-qt. * gnu/packages/kde-plasma.scm (plasma)[inputs]: Add bluedevil. * gnu/services/desktop.scm (plasma-dbus-service): Add bluedevil as dbus-based application. Change-Id: If6a740c88e81bac4ccc220e918c17045eaa8e597
* gnu: Add corectrl.Ashvith Shetty3 days3-0/+103
| | | | | | | | | * gnu/packages/admin.scm (corectrl): New variable. * gnu/packages/patches/corectrl-polkit-install-dir.patch: New file. * gnu/local.mk (dist_patch_DATA): Add reference to it. Change-Id: I7b0f85c917eb58d7518d7ee7c5b22ef2debde7d9
* gnu: rust-sequoia-cert-store-0.6: Update to 0.6.2.Efraim Flashner3 days1-3/+3
| | | | | | | | * gnu/packages/sequoia.scm (rust-sequoia-cert-store-0.6): Update to 0.6.2. [cargo-inputs]: Replace rust-sequoia-net-0.28 with 0.29. Change-Id: I44a0dc4272a54e881e6966400df70637c5399136
* gnu: Add sequoia-chameleon-gnupg.Efraim Flashner3 days1-0/+147
| | | | | | * gnu/packages/sequoia.scm (sequoia-chameleon-gnupg): New variable. Change-Id: Ia5e759c55f94e9daf52a3ad56a1dfc34d6a1bef6
* gnu: Add rust-sequoia-gpg-agent-0.4.Efraim Flashner3 days1-0/+34
| | | | | | * gnu/packages/sequoia.scm (rust-sequoia-gpg-agent-0.4): New variable. Change-Id: I7ef44782382c1983058685a28a0f5a77f03f2e38