From 01e1cf6fcfd71bfa5f5225d4a4dbf856c6083a21 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 30 Jun 2022 22:30:06 +0200 Subject: gnu: jsoncpp@1.7.3: 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(-) (limited to 'gnu/packages/serialization.scm') 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 ;;; Copyright © 2016 Lukas Gradl ;;; Copyright © 2016 David Craven -;;; Copyright © 2016, 2019, 2020 Marius Bakke +;;; Copyright © 2016, 2019, 2020, 2022 Marius Bakke ;;; Copyright © 2016, 2018, 2019, 2021 Efraim Flashner ;;; Copyright © 2017 Corentin Bocquillon ;;; Copyright © 2017 Gregor Giesen @@ -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 -- cgit v1.2.3