From 4ceece4552fb784ef5847f2b3e1dd29766ff581d Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 20 Jan 2022 11:58:46 +0100 Subject: guix: import/cran: Cast booleans. This is needed due to a change in file-hash*. * guix/import/cran.scm (description->package): Ensure that GIT? and HG? are booleans. --- guix/import/cran.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'guix/import') diff --git a/guix/import/cran.scm b/guix/import/cran.scm index b61402078d..7a73c11382 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2020 Martin Becze @@ -493,8 +493,8 @@ from the alist META, which was derived from the R package's DESCRIPTION file." ((urls ...) urls) ((? string? url) url) (_ #f))))) - (git? (assoc-ref meta 'git)) - (hg? (assoc-ref meta 'hg)) + (git? (if (assoc-ref meta 'git) #true #false)) + (hg? (if (assoc-ref meta 'hg) #true #false)) (source (download source-url #:method (cond (git? 'git) (hg? 'hg) -- cgit v1.2.3