;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Reily Siegel ;;; Copyright © 2024 Nicolas Graves ;;; ;;; 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 . (define-module (gnu home services guix) #:use-module (gnu home services) #:use-module (guix channels) #:use-module (guix gexp) #:use-module (ice-9 pretty-print) #:use-module (srfi srfi-1) #:export (home-channels-service-type)) (define (extend-channel-list initial new) (delete-duplicates (append initial new) (lambda (channel1 channel2) (eq? (channel-name channel1) (channel-name channel2))))) (define (channels-xdg-files channels) `(("guix/channels.scm" ,(plain-file "channels.scm" (call-with-output-string (lambda (port) (pretty-print (cons 'list (map channel->code channels)) port))))))) (define home-channels-service-type (service-type (name 'home-channels) (default-value %default-channels) (compose concatenate) (extend extend-channel-list) (extensions (list (service-extension home-xdg-configuration-files-service-type channels-xdg-files))) (description "Manages the per-user Guix channels specification.")))
AgeCommit message (Expand)Author
2023-11-19gnu: hplip: Update to 3.23.12....* gnu/packages/cups.scm (hplip): Update to 3.23.12. Change-Id: If27e2cfcd0b4e3667ba399569a24df976d6aa41d Tobias Geerinckx-Rice
2023-11-19gnu: cups-minimal/fixed: Update to 2.4.7....* gnu/packages/cups.scm (cups-minimal/fixed): Update to 2.4.7. Change-Id: I47b34356c53715462e1750e1b639b9768f2c3287 Tobias Geerinckx-Rice
2023-10-26gnu: cups: Fix cross-compiling....* gnu/packages/cups.scm (cups-filters)[native-inputs]: When cross-compiling add cups-minimal. (cups-minimal)[native-inputs]: When cross-compiling add this-package. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Change-Id: Ifcc34f09d0a5afb3a1b95be51715c509b8ef5ed4 Zheng Junjie
2023-10-25gnu: hplip: Fix USB timeouts....* gnu/packages/patches/hplip-usb-timeout.patch: New file. * gnu/local.mk: Register it. * gnu/packages/cups.scm (hplip): Use it. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Bruno Victal
2023-09-24gnu: hplip: Update to 3.23.8....* gnu/packages/cups.scm (hplip): Update to 3.23.8. Tobias Geerinckx-Rice