guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 28abe1dc09a74e78197e615cd9b1d1b9c03631ac
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Aug 27 16:47:33 2025 +0200

    gnu: dmlc-core: Improve style.
    
    * gnu/packages/machine-learning.scm (dmlc-core)[arguments]: Use
    G-Expressions.
    [native-inputs]: Modernize.
    
    Change-Id: I9c43a02bc9575a971dd717de606cb800f295add4
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/machine-learning.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 9bc1403f9f..d1e6f3f621 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4076,11 +4076,10 @@ devices.")
         (base32 "1x4ad1jhn84fywlk031fmv1kxyiscclmrqn9hhj8gz0mh7z9vcrh"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:configure-flags
-       (list "-DGOOGLE_TEST=ON")))
+     (list
+      #:configure-flags #~(list "-DGOOGLE_TEST=ON")))
     (native-inputs
-     `(("googletest" ,googletest)
-       ("python" ,python-wrapper)))
+     (list googletest python-wrapper))
     (home-page "https://github.com/dmlc/dmlc-core";)
     (synopsis "Common bricks library for machine learning")
     (description

Reply via email to