mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: cat-avatar-generator: Remove imports for (srfi *).
This would import (srfi srfi-1) and (srfi srfi-26) from the host Guile, leading to discrepancies among users, and in particular when the host Guile is 3.0. Reported by Julien Lepiller <julien@lepiller.eu> in <https://bugs.gnu.org/39369>. * gnu/packages/web.scm (cat-avatar-generator): Remove (srfi *) from #:modules.
This commit is contained in:
parent
8534c9491d
commit
895363e4cf
1 changed files with 3 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2013 Aljosha Papsch <misc@rpapsch.de>
|
||||
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2018 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
|
||||
|
@ -6806,14 +6806,13 @@ (define-public cat-avatar-generator
|
|||
"0s7b5whqsmfa57prbgl66ym551kg6ly0z14h5dgrlx4lqm70y2yw"))))
|
||||
(build-system trivial-build-system)
|
||||
(arguments
|
||||
`(#:modules ((guix build utils)
|
||||
(srfi srfi-1)
|
||||
(srfi srfi-26))
|
||||
`(#:modules ((guix build utils))
|
||||
#:builder
|
||||
(begin
|
||||
(use-modules (guix build utils)
|
||||
(srfi srfi-1)
|
||||
(srfi srfi-26))
|
||||
|
||||
(let ((source (assoc-ref %build-inputs "source"))
|
||||
(php-dir (string-append %output "/share/web/" ,name "/")))
|
||||
;; The cache directory must not be in the store, but in a writable
|
||||
|
|
Loading…
Reference in a new issue