diff options
author | Greg Hogan <code@greghogan.com> | 2025-03-08 19:58:15 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 16:28:28 +0000 |
commit | 2b5b244fd01110a6103c99feaf74fc3c9674eba2 (patch) | |
tree | 96ea4245fc0d7751cb57bddd56e9077c062315e9 | |
parent | fc1140f0cb99b36f1c230ffd8be871dcfb941c02 (diff) |
gnu: Add jsoncpp/pinned.
* gnu/packages/serialization.scm (jsoncpp/pinned): New variable.
Change-Id: Ib786d68833fb4cadbf80d25673433111982e4430
-rw-r--r-- | gnu/packages/serialization.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index d202d9361f..8fbe29844d 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -655,6 +655,20 @@ preserve existing comment in unserialization/serialization steps, making it a convenient format to store user input files.") (license license:expat))) +(define-public jsoncpp/pinned + (hidden-package + ;; Version that rarely changes, depended on by CMake. + (package/inherit jsoncpp + (version "1.9.6") + (source + (origin + (method git-fetch) + (uri (git-reference (url (package-home-page jsoncpp)) (commit version))) + (file-name (git-file-name (package-name jsoncpp) version)) + (sha256 + (base32 + "070xg4i52z3yv5b9bw5k95qskw0daivh0njka87mzj0d3zf1qsyy"))))))) + ;; Tensorflow does not build with jsoncpp 1.8.x. It is built with commit ;; 4356d9bba191e1e16ce7a92073cbf3e63564e973, which lies between version 1.7.2 ;; and 1.7.3. |