~ruther/guix-local

28abe1dc09a74e78197e615cd9b1d1b9c03631ac — Cayetano Santos 7 months ago ae873c2
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 <dannym@friendly-machines.com>
1 files changed, 3 insertions(+), 4 deletions(-)

M gnu/packages/machine-learning.scm
M gnu/packages/machine-learning.scm => gnu/packages/machine-learning.scm +3 -4
@@ 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