;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Reily Siegel ;;; ;;; 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 (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 append) (extensions (list (service-extension home-xdg-configuration-files-service-type channels-xdg-files))) (description "Manages the per-user Guix channels specification."))) d>
AgeCommit message (Collapse)Author
2024-08-14gnu: cpu-features: Fix cross-compilation.Zheng Junjie
* gnu/packages/assembly.scm (cpu-features)[arguments]<#:configure-flags>: When cross-compilation, set CMAKE_SYSTEM_PROCESSOR. Change-Id: I8b6f9bdeac66b85ab273f81a320e4b8e0d69b5d0 Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-26gnu: Add cpu-features.Andy Tai
* gnu/packages/assembly.scm (cpu-features): New variable. Change-Id: I9f3e0340024dbdbfb6f2f2a7e0820d71e5e5ba84 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2024-06-24gnu: rgbds: Update to 0.7.0.Felix Gruber
* gnu/packages/assembly.scm (rgbds): Update to 0.7.0. Change-Id: I992e7081fdf5816cba4f0b7437e513734f554a73 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2024-06-20gnu: simde: Update to 0.8.2.宋文武
* gnu/packages/assembly.scm (simde): Update to 0.8.2. Change-Id: I07f8323ded34bb855fe2315f8d9c7822efe26719 Signed-off-by: jgart <jgart@dismail.de>
2024-06-02gnu: asl: Update to 1.42-beta-267.Simon South
* gnu/packages/assembly.scm (asl): Update to 1.42-beta-267. Change-Id: I47bddede842f3d63f993a93965df0f0302ef45d1 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-09-27gnu: Add blinkenlights.B. Wilson
* gnu/packages/assembly.scm (blinkenlights): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-09-18gnu: Add asl.Simon South
* gnu/packages/assembly.scm (asl): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-09-10gnu: lightning: Update to 2.2.2.Tobias Geerinckx-Rice
* gnu/packages/assembly.scm (lightning): Update to 2.2.2.