gnu: dirvish: Import the correct set of modules.

* gnu/packages/backup.scm (dirvish) [arguments] <modules>: Replace
%default-gnu-imported-modules with %default-gnu-modules.  Delete trailing #t.

Change-Id: I041a65441055a21f141bb7ea4a563e2624cd783c
This commit is contained in:
Maxim Cournoyer 2023-10-09 11:20:28 -04:00 committed by Ludovic Courtès
parent a800c68672
commit d2f10fa2b5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -843,7 +843,7 @@ (define-public dirvish
"1kbxa1irszp2zw8hd5qzqnrrzb4vxfivs1vn64yxnj0lak1jjzvb"))))
(arguments
`(#:modules ((ice-9 match) (ice-9 rdelim)
,@%default-gnu-imported-modules)
,@%default-gnu-modules)
#:phases
;; This mostly mirrors the steps taken in the install.sh that ships
;; with dirvish, but simplified because we aren't prompting interactively
@ -919,8 +919,7 @@ (define write-man
;; Write out executables
(for-each write-pl executables)
;; Write out man pages
(for-each write-man man-pages)
#t))))))
(for-each write-man man-pages)))))))
(inputs
(list perl rsync perl-libtime-period perl-libtime-parsedate))
(home-page "http://dirvish.org/")