mbakke pushed a commit to branch core-updates
in repository guix.

commit 01e1cf6fcfd71bfa5f5225d4a4dbf856c6083a21
Author: Marius Bakke <[email protected]>
AuthorDate: Thu Jun 30 22:30:06 2022 +0200

    gnu: [email protected]: Fix build failure.
    
    This is a follow-up to commit 2ada32cc3963afd7f195cb82eade3baf0df2cf1f.
    
    * gnu/packages/serialization.scm (jsoncpp-for-tensorflow)[build-system]: Set
    to CMAKE-BUILD-SYSTEM.
    [arguments]: Restore.
---
 gnu/packages/serialization.scm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index d0e5425f8a..3ff90deb87 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2015, 2017, 2019, 2020, 2021 Ricardo Wurmus 
<[email protected]>
 ;;; Copyright © 2016 Lukas Gradl <[email protected]>
 ;;; Copyright © 2016 David Craven <[email protected]>
-;;; Copyright © 2016, 2019, 2020 Marius Bakke <[email protected]>
+;;; Copyright © 2016, 2019, 2020, 2022 Marius Bakke <[email protected]>
 ;;; Copyright © 2016, 2018, 2019, 2021 Efraim Flashner <[email protected]>
 ;;; Copyright © 2017 Corentin Bocquillon <[email protected]>
 ;;; Copyright © 2017 Gregor Giesen <[email protected]>
@@ -30,6 +30,7 @@
 
 (define-module (gnu packages serialization)
   #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix gexp)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix hg-download)
@@ -447,7 +448,14 @@ it a convenient format to store user input files.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1180ln8blrb0mwzpcf78k49hlki6di65q77rsvglf83kfcyh4d7z"))))))
+                "1180ln8blrb0mwzpcf78k49hlki6di65q77rsvglf83kfcyh4d7z"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:configure-flags
+           #~'("-DBUILD_SHARED_LIBS:BOOL=YES"
+               #$@(if (%current-target-system)
+                      #~("-DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF")
+                      #~()))))))
 
 (define-public json.sh
   (let ((commit "0d5e5c77365f63809bf6e77ef44a1f34b0e05840") ;no releases

Reply via email to