;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Ludovic Courtès ;;; ;;; 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 (test-home-services) #:use-module (gnu services) #:use-module (gnu home services) #:use-module (guix diagnostics) #:use-module (srfi srfi-1) #:use-module (srfi srfi-64) #:use-module (ice-9 match)) (test-begin "home-services") (test-assert "fold-home-service-types" (match (fold-home-service-types cons '()) (() #f) (lst (and (every service-type? lst) (every (lambda (type) (let ((location (service-type-location type))) (string-contains (location-file location) "gnu/home"))) lst))))) (test-eq "lookup-service-types" home-files-service-type (and (null? (lookup-home-service-types 'does-not-exist-at-all)) (match (lookup-home-service-types 'home-files) ((one) one) (x x)))) (test-end) hidden' name='id' value='4a0ffae5900bb542017f244c11b7874612714360'/>
AgeCommit message (Expand)Author
2019-10-08gnu: gpodder: Update to 3.10.11....* gnu/packages/gpodder.scm (gpodder): Update to 3.10.11. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Pierre Langlois
2019-09-28gnu: gpodder: Update to 3.10.10....* gnu/packages/gpodder.scm (gpodder): Update to 3.10.10. [inputs]: Add youtube-dl. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois
2019-06-13gnu: gpodder: Only return #t when needed....* gnu/packages/gpodder.scm (gpodder)[arguments]: Return #t from 'do-not-run-msgmerge. Don't return #t from 'install. Efraim Flashner
2019-06-13gnu: gpodder: Update to 3.10.9....* gnu/packages/gpodder.scm (gpodder): Update to 3.10.9. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Pierre Langlois
2019-03-31gnu: gpodder: Build reproducibly....* gnu/packages/gpodder.scm (gpodder)[arguments]: Add 'do-not-run-msgmerge' phase before 'install'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois
2019-03-25gnu: Add gPodder....* gnu/packages/podcast.scm (gpodder): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois
2019-03-25gnu: Add python-mygpoclient....* gnu/packages/gpodder.scm (python-mygpoclient): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois
2019-03-23gnu: Add python-podcastparser....* gnu/packages/podcast.scm (python-podcastparser): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois
2019-03-23gnu: libmygpo-qt: Move to new 'gpodder.scm' file....* gnu/packages/music.scm (libmygpo-qt): Move to 'gpodder.scm'. * gnu/packages/gpodder.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois