;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2023 Janneke Nieuwenhuizen ;;; ;;; 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 media) #:use-module (srfi srfi-26) #:use-module (gnu home services) #:use-module (gnu home services shepherd) #:use-module (gnu packages kodi) #:use-module (gnu services configuration) #:use-module (gnu services shepherd) #:use-module (guix records) #:use-module (guix gexp) #:export (home-kodi-configuration home-kodi-service-type)) ;;; ;;; Kodi. ;;; (define-record-type* home-kodi-configuration make-home-kodi-configuration home-kodi-configuration? (kodi home-kodi-kodi ;file-like (default kodi)) (extra-options home-kodi-extra-options ;list of string (default '()))) (define (home-kodi-services config) "Return a for kodi with CONFIG." (match-record config (kodi extra-options) (let* ((kodi (file-append kodi "/bin/kodi")) (command #~'(#$kodi "-fs" #$@extra-options)) (log-file #~(string-append %user-log-dir "/kodi.log"))) (list (shepherd-service (documentation "Run the kodi media center.") (provision '(kodi)) (modules '((shepherd support))) ;for '%user-log-dir' (start #~(make-forkexec-constructor #$command #:log-file #$log-file)) (stop #~(make-kill-destructor))))))) (define home-kodi-service-type (service-type (name 'home-kodi) (default-value (home-kodi-configuration)) (extensions (list (service-extension home-shepherd-service-type home-kodi-services))) (description "Install and configure the Kodi media center so that it runs as a Shepherd service."))) nu/packages/gnucash.scm?id=dde8ec55b73f423eb6abb8f9a4c62045ca8dc792&showmsg=1'>Expand)Author 2024-10-02gnu: gnucash: Update to 5.9....* gnu/packages/gnucash.scm (gnucash): Update to 5.9. Change-Id: Ic12647f5d9f0f35786875967dc618fff0ceb6c13 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> gemmaro 2024-09-03gnu: gnucash: Fix tests....* gnu/packages/finance.scm (gnucash)[native-inputs]: Add '(libc-utf8-locales-for-target)'. Change-Id: I74a6f79b070a76bf1cebe537d689df54224381ae Guillaume Le Vaillant 2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer 2024-07-10gnu: gnucash: Update to 5.8....* gnu/packages/gnucash.scm (gnucash): Update to 5.8. Change-Id: I1b0aa8c037c3d10d7a87acbdaa5fb27dd3dff556 Signed-off-by: Ludovic Courtès <ludo@gnu.org> gemmaro 2024-05-04gnu: gnucash: Update to 5.6....* gnu/packages/gnucash.scm (gnucash): Update to 5.6. Change-Id: I3646082d628470327fbd9deec6111de8c1eec921 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Steve George 2024-05-04gnu: aqbanking: Update to 6.5.4....* gnu/packages/gnucash (aqbanking): Update to 6.5.4. Change-Id: I8d10562e1fc8517bee946792ad1ac901a26137d5 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Steve George 2024-05-04gnu: gwenhywfar: Update to 5.10.2....* gnu/packages/gnucash.scm (gwenhywfar): Update to 5.10.2. [inputs]: add libxml2. [arguments]: <configure-flags>: Remove flag that's not recognised --with-openssl-includes; add --with-libxml2-code, --enable-system-certs and --disable-binreloc Change-Id: I4085779e3ed7ecb621dd3d0b5427e92962466033 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Steve George 2024-04-23gnu: gnucash: Update to 5.6....* gnu/packages/gnucash.scm (gnucash): Update to 5.6. Reviewed-by: Julian Flake <flake@uni-koblenz.de> Signed-off-by: Christopher Baines <mail@cbaines.net> Change-Id: I5fb5195f4f1a401dd66ebcdd7251cd14d83bb974 Andy Tai 2024-02-28gnu: gnucash: Update to 5.5....* gnu/packages/gnucash.scm (gnucash): Update to 5.5. (gnucash-docs): Update to 5.5. Change-Id: I3c188c952afde07fce80648a5f99c84648ec6a3a Efraim Flashner