mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: clusterssh: Add bash-minimal to inputs.
* gnu/packages/admin.scm (clusterssh) [inputs]: Add bash-minimal. [arguments]: Delete trailing #t. Change-Id: Icb6e0833e2dba3145c63294d003554c2de6bb169
This commit is contained in:
parent
9a7b55d976
commit
41cfdd7e50
1 changed files with 5 additions and 7 deletions
|
@ -1803,8 +1803,7 @@ (define-public clusterssh
|
||||||
(substitute* (list "lib/App/ClusterSSH/Config.pm"
|
(substitute* (list "lib/App/ClusterSSH/Config.pm"
|
||||||
"t/15config.t")
|
"t/15config.t")
|
||||||
(("xterm")
|
(("xterm")
|
||||||
(which "xterm")))
|
(which "xterm")))))
|
||||||
#t))
|
|
||||||
(add-before 'check 'delete-failing-tests
|
(add-before 'check 'delete-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
;; This checks whether all code is nicely formatted. The above
|
;; This checks whether all code is nicely formatted. The above
|
||||||
|
@ -1812,8 +1811,7 @@ (define-public clusterssh
|
||||||
(delete-file "t/perltidy.t")
|
(delete-file "t/perltidy.t")
|
||||||
;; Update the manifest so t/manifest.t happily passes.
|
;; Update the manifest so t/manifest.t happily passes.
|
||||||
(substitute* "MANIFEST"
|
(substitute* "MANIFEST"
|
||||||
(("t/perltidy.t\n") ""))
|
(("t/perltidy.t\n") ""))))
|
||||||
#t))
|
|
||||||
(add-after 'install 'augment-library-path
|
(add-after 'install 'augment-library-path
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -1838,8 +1836,7 @@ (define-public clusterssh
|
||||||
"perl-try-tiny"
|
"perl-try-tiny"
|
||||||
"perl-x11-protocol"
|
"perl-x11-protocol"
|
||||||
"perl-x11-protocol-other")))))))
|
"perl-x11-protocol-other")))))))
|
||||||
(find-files "." ".*")))
|
(find-files "." ".*")))))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl-cpan-changes
|
(list perl-cpan-changes
|
||||||
perl-file-slurp
|
perl-file-slurp
|
||||||
|
@ -1854,7 +1851,8 @@ (define-public clusterssh
|
||||||
perl-test-trap
|
perl-test-trap
|
||||||
perltidy))
|
perltidy))
|
||||||
(inputs
|
(inputs
|
||||||
(list perl-exception-class
|
(list bash-minimal ;for wrap-program
|
||||||
|
perl-exception-class
|
||||||
perl-sort-naturally
|
perl-sort-naturally
|
||||||
perl-tk
|
perl-tk
|
||||||
perl-try-tiny
|
perl-try-tiny
|
||||||
|
|
Loading…
Reference in a new issue