diff options
author | Tomas Volf <~@wolfsden.cz> | 2025-01-25 00:46:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-02-09 18:20:42 +0100 |
commit | b4b14a49cd2438d58f99787f768523bff080cdfd (patch) | |
tree | 6fad602f8025833e4f2f9bbbd231a87e0d83450c /gnu/packages/guile-xyz.scm | |
parent | f8743d4b24acdf009e3bfdeb9fd12c9794d5fdb2 (diff) |
gnu: mcron: Re-indent (arguments).
The more common formatting style for arguments seems to be to align the value
under the keyword. This commit adjusts the definition to match that style.
* gnu/packages/guile-xyz.scm (mcron)[arguments]: Re-indent.
Change-Id: I5d3be19e41828db43af70207cb28b14c35d13419
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 1677914682..21eb8c3414 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3294,21 +3294,22 @@ is no support for parsing block and inline level HTML.") #:configure-flags #~(list "--with-sendmail=/run/privileged/bin/sendmail -t") - #:phases #~(modify-phases %standard-phases - (add-before 'check 'adjust-tests - (lambda _ - (substitute* "tests/job-specifier.scm" - ;; (getpw) fails with "entry not found" in the build - ;; environment, so pass an argument. - (("\\(getpw\\)") - "(getpwnam (getuid))") - ;; The build environment lacks an entry for root in - ;; /etc/passwd. - (("\\(getpw 0\\)") - "(getpwnam \"nobody\")") - ;; FIXME: Skip the 4 faulty tests (see above). - (("\\(test-equal \"next-year\"" all) - (string-append "(test-skip 4)\n" all)))))))) + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'adjust-tests + (lambda _ + (substitute* "tests/job-specifier.scm" + ;; (getpw) fails with "entry not found" in the build + ;; environment, so pass an argument. + (("\\(getpw\\)") + "(getpwnam (getuid))") + ;; The build environment lacks an entry for root in + ;; /etc/passwd. + (("\\(getpw 0\\)") + "(getpwnam \"nobody\")") + ;; FIXME: Skip the 4 faulty tests (see above). + (("\\(test-equal \"next-year\"" all) + (string-append "(test-skip 4)\n" all)))))))) (native-inputs (list autoconf automake guile-3.0 ;for 'guild compile' |