aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2022 Leo Famulari <leo@famulari.name>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

;;; This file returns a manifest of packages related to linux-libre.
;;; Simplistically, it selects packages whose names begin with "linux-libre".
;;; It is used to assist continuous integration of the kernel packages.

(use-modules (guix packages)
             (guix profiles)
             (gnu packages))

(manifest
  (map package->manifest-entry
       (fold-packages
         (lambda (package lst)
           (if (string-prefix? "linux-libre"
                               (package-name package))
             (cons package lst)
             lst))
         '())))
er-con......Giacomo Leidi via Guix-patches via 2024-07-05services: oci-container: Allow setting Shepherd auto-start? in oci-container-......Giacomo Leidi via Guix-patches via 2024-07-05services: oci-container: Allow setting Shepherd log-file in oci-container-con......Giacomo Leidi via Guix-patches via 2024-07-05doc: Minor changes to the OCI-backed Services documentation....Giacomo Leidi via Guix-patches via 2024-06-26services: guix: Default `channels' field to #f....Tomas Volf 2024-06-26doc: Warn about extra-special-file usage in /etc....Tomas Volf 2024-06-26services: shepherd: Support “free-form” services....Ludovic Courtès 2024-06-26doc: Introduce mumi before referring to it....Ludovic Courtès 2024-06-26services: web: Improve nginx formatting for extra-content....Richard Sent 2024-06-24doc: Add message for common error about make check-system....Richard Sent 2024-06-24doc: Improve description of nginx's configuration....Tomas Volf 2024-06-24doc: contributing: Mention 'guix git authenticate'....Simon Tournier 2024-06-24gnu: grub: Update to 2.12....Ludovic Courtès 2024-06-24doc: Prepend ISC to DHCP client references....Richard Sent 2024-06-24services: networking: Allow dhcp-client to use a config file....Richard Sent 2024-06-24doc: Fix Reviewed-by format....Tomas Volf 2024-06-23services: radicale: Use define-configuration....Juliana Sims 2024-06-22doc: Fix typo in Guix Home Service...Richard Sent 2024-06-13services: dnsmasq: Add escape hatch....Sergey Trofimov 2024-06-13doc: Use a symbol for Cuirass specification names....Ludovic Courtès 2024-06-12doc: Refer to mumi send-email in Submitting Patches....Arun Isaac 2024-06-12doc: Add mumi CLI concept index entries....Arun Isaac 2024-06-12doc: Document mumi am, compose and www subcommands....Arun Isaac 2024-06-12doc: Update field name in gitile-configuration....Nguyễn Gia Phong 2024-06-06doc: Binary Installation: Add Parabola packages....Denis 'GNUtoo' Carikli 2024-06-06doc: Binary Installation: Mention Trisquel package....Denis 'GNUtoo' Carikli 2024-06-06doc: Advise system administrators to read and follow security notices....Florian Pelz 2024-06-04services: base: Add optional delayed mount of file-systems...Richard Sent 2024-06-03nls: Update translations....Florian Pelz 2024-06-03build: Use the po4a command for the translation generation....gemmaro 2024-06-03doc: cookbook: Fix direnv example....Florian Pelz 2024-06-02services: nscd: ‘log-file’ defaults to #f....Ludovic Courtès 2024-06-02Revert "services: home: Use pairs instead of lists."...Andrew Tropin 2024-06-02services: home: Use pairs instead of lists....Andrew Tropin 2024-05-30home: services: Add home-startx-command-service-type....Tomas Volf 2024-05-30services: xorg: Add startx-command-service-type....Tomas Volf 2024-05-30services: xorg: Add xorg-start-command-xinit procedure....Tomas Volf 2024-05-29gnu: linux: Turn %default-extra-linux-options into a procedure....Maxim Cournoyer 2024-05-27gnu: Use new ovmf firmware packages....Efraim Flashner 2024-05-27doc: Replace 'specification->package+output' with 'specifications->packages'....宋文武 2024-05-25configure.ac: Set default value for the 'prefix' variable....Maxim Cournoyer 2024-05-25maint: Suggest ‘guix git authenticate’ for initial authentication....Ludovic Courtès 2024-05-25doc: Document ‘assume-valid-file-name’ in ‘local-file’....Richard Sent 2024-05-25gnu: docker: Allow passing tarballs for images in oci-container-configuration....Giacomo Leidi 2024-05-25gnu: docker: Allow setting Shepherd dependencies in oci-container-configuration....Giacomo Leidi 2024-05-25gnu: docker: Allow setting host environment variables in oci-container-config......Giacomo Leidi