From 33f2e862c7bf87e45d12dbd3e87501a64d5e69fe Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Thu, 17 Feb 2022 18:09:49 +0000 Subject: gnu: umockdev: Use G-expressions. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While we're at it, remove the trailing #t. * gnu/packagers/check.scm (umockdev)[arguments]<#:phases>: Change to a G-exp. Signed-off-by: Ludovic Courtès --- gnu/packages/check.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 06adf20c36..8d422d4b85 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2885,13 +2885,12 @@ provides a simple way to achieve this.") "0xmi24ckpps32k7hc139psgbsnsf4g106sv4l9m445m46amkxggd")))) (build-system gnu-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-test - (lambda _ - (substitute* "tests/test-umockdev.c" - (("/run") "/tmp")) - #t))))) + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-test + (lambda _ + (substitute* "tests/test-umockdev.c" + (("/run") "/tmp"))))))) (native-inputs (list vala gobject-introspection -- cgit v1.2.3