diff options
author | Peepo Froggings <peepofroggings@tutanota.de> | 2024-08-21 10:47:29 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-08-21 10:47:29 +0200 |
commit | 127592bc0fd7f5deb79ea05dd9e7d3bfdb3c2a1d (patch) | |
tree | 51269d5fce5a1445ac61b381a023658a53531e56 /gnu | |
parent | 2db3b5d6b86f86c9c4486af7ddba39167aa5c073 (diff) | |
download | guix-127592bc0fd7f5deb79ea05dd9e7d3bfdb3c2a1d.tar.gz guix-127592bc0fd7f5deb79ea05dd9e7d3bfdb3c2a1d.zip |
gnu: Add biblesync.
* gnu/packages/cpp.scm (biblesync): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I48ae683824214a2609b83e1b0af2880b4ac46d44
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cpp.scm | 70 |
1 files changed, 52 insertions, 18 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index c1c2a4028b..7dca7a2d02 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -40,7 +40,8 @@ ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> ;;; Copyright © 2023 Paul A. Patience <paul@apatience.com> ;;; Copyright © 2024 dan <i@dan.games> -;;; +;;; Copyright © 2024 Peepo Froggings <peepofroggings@tutanota.de> + ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it @@ -188,36 +189,69 @@ allocator that makes it easy to generate complex code without a significant development effort.") (license license:zlib)))) -(define-public castxml +(define-public biblesync (package - (name "castxml") - (version "0.6.4") + (name "biblesync") + (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/CastXML/CastXML") - (commit (string-append "v" version)))) + (url "https://github.com/karlkleinpaste/biblesync") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0l5ys9zmllfgwhjrm897akbsf38iswfcarhxg27xfhiy0bmzcwsg")))) + (base32 + "0prmd12jq2cjdhsph5v89y38j7hhd51dr3r1hivgkhczr3m5hf4s")))) (build-system cmake-build-system) (arguments (list + #:tests? #f ;FIXME: Not sure how to run tests, if any #:configure-flags - #~(list - (string-append "-DCLANG_RESOURCE_DIR=" - #$(this-package-native-input "clang") "/lib/clang/" - #$(version-major - (package-version (this-package-native-input "clang"))))))) - (inputs (list libffi)) - (native-inputs (list clang-17 llvm-17)) - (home-page "https://github.com/CastXML/CastXML") - (synopsis "C-family abstract syntax tree XML output") - (description "CastXML is a C-family abstract syntax tree XML output tool. + #~(list (string-append "-DBUILD_SHARED_LIBS=TRUE")))) + (inputs (list `(,util-linux "lib"))) + (synopsis "C++ library implementing the BibleSync protocol") + (description + "BibleSync is a multicast protocol to support Bible software shared +co-navigation. The premise is that there is a local network over which to +multicast Bible navigation, and someone, possibly several someones, will +transmit, and others will receive. The library implementing the protocol is +a single C++ class providing a complete yet minimal public interface to +support mode setting, setup for packet reception, transmit on local +navigation, and handling of incoming packets.") + (home-page "https://github.com/karlkleinpaste/biblesync") + (license license:public-domain))) + +(define-public castxml +(package + (name "castxml") + (version "0.6.4") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/CastXML/CastXML") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l5ys9zmllfgwhjrm897akbsf38iswfcarhxg27xfhiy0bmzcwsg")))) + (build-system cmake-build-system) + (arguments + (list + #:configure-flags + #~(list + (string-append "-DCLANG_RESOURCE_DIR=" + #$(this-package-native-input "clang") "/lib/clang/" + #$(version-major + (package-version (this-package-native-input "clang"))))))) + (inputs (list libffi)) + (native-inputs (list clang-17 llvm-17)) + (home-page "https://github.com/CastXML/CastXML") + (synopsis "C-family abstract syntax tree XML output") + (description "CastXML is a C-family abstract syntax tree XML output tool. This project is maintained by Kitware in support of ITK, the Insight Segmentation and Registration Toolkit.") - (license license:asl2.0))) + (license license:asl2.0))) (define-public range-v3 (package |