civodul pushed a commit to branch master
in repository guix.

commit dfe848c9dce16070988e66dac40def29616eb4bd
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Sep 1 13:55:27 2022 +0200

    gnu: ilmbase: Switch to gexps.
    
    * gnu/packages/graphics.scm (ilmbase)[arguments]: Use a gexp.
---
 gnu/packages/graphics.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 931a558e8a..f1588bac8b 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015, 2016, 2021 Ludovic Courtès <[email protected]>
+;;; Copyright © 2015, 2016, 2021, 2022 Ludovic Courtès <[email protected]>
 ;;; Copyright © 2015 Tomáš Čech <[email protected]>
 ;;; Copyright © 2016, 2019 Leo Famulari <[email protected]>
 ;;; Copyright © 2016, 2017, 2019 Ricardo Wurmus <[email protected]>
@@ -771,11 +771,11 @@ applications, including the \"half\" 16-bit 
floating-point type.")
               (patches (search-patches "ilmbase-fix-tests.patch"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:phases (modify-phases %standard-phases
-                  (add-after 'unpack 'change-directory
-                    (lambda _
-                      (chdir "IlmBase")
-                      #t)))))
+     (list #:phases #~(modify-phases %standard-phases
+                        (add-after 'unpack 'change-directory
+                          (lambda _
+                            (chdir "IlmBase")
+                            #t)))))
     (home-page "https://www.openexr.com/";)
     (synopsis "Utility C++ libraries for threads, maths, and exceptions")
     (description

Reply via email to