diff options
author | David Elsing <david.elsing@posteo.net> | 2022-10-13 21:04:16 +0000 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-10-15 12:01:34 +0200 |
commit | 3cbb634a8900f1cb0a9bb057c06fcac3079b7bea (patch) | |
tree | 07b98e6bdb76697ab5c6867e9b4a98ef75501a1d /gnu/packages/cpp.scm | |
parent | fd4342728db7969106d2b1eecce0ba369e2e01a3 (diff) | |
download | guix-3cbb634a8900f1cb0a9bb057c06fcac3079b7bea.tar.gz |
gnu: Add sajson-for-gemmi.
* gnu/packages/cpp.scm (sajson-for-gemmi): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 7cf7269f7f..c8df516834 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -2102,6 +2102,22 @@ different floating point sizes and complex transformations.") parsing with only a single memory allocation.") (license license:expat)))) +(define-public sajson-for-gemmi + (package/inherit sajson + (name "sajson-for-gemmi") + (source (origin + (inherit (package-source sajson)) + (patches (cons + (search-patch + "sajson-for-gemmi-numbers-as-strings.patch") + (origin-patches (package-source sajson)))))) + (arguments + (substitute-keyword-arguments (package-arguments sajson) + ;; This is a modified version used in gemmi, in which numbers are kept + ;; as strings. Building the tests fails with the modification. + ((#:tests? _ #f) #f))) + (properties '((hidden? . #t))))) + (define-public optionparser (package (name "optionparser") |