diff options
author | Greg Hogan <code@greghogan.com> | 2025-07-15 13:18:39 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 16:28:31 +0000 |
commit | 8204b0fc9919095217d172297a7879e31d3abb65 (patch) | |
tree | 7dd08926faa4cc2e833b438e1439953130d5f843 | |
parent | 976a087042034e22642c5ca5d4481bca2066ec94 (diff) |
gnu: bloomberg-bde-tools: Update to 4.27.0.0.
* gnu/packages/cpp.scm (bloomberg-bde-tools): Update to 4.27.0.0.
Change-Id: I3c3155bea0217bbb366f6b5d779873bde24b7dd8
-rw-r--r-- | gnu/packages/cpp.scm | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 391cfe73ac..c74f04f75b 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -3245,31 +3245,29 @@ validation.") "038i9nmk85vpxvs546w6cyci0ppdrrp5wnlv1kffxw29x71a3g5l")))))) (define-public bloomberg-bde-tools - (let ((commit "23217675939d434537ef74b91f71b63054e36572")) - (package - (name "bloomberg-bde-tools") - ;; Recent releases are not tagged so commit must be used for checkout. - (version "4.13.0.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bloomberg/bde-tools") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1x440fa8fghigipn6w8zdr60kkvxrkxs2n9a5hf3y33b8aygh8iv")) - (patches - (search-patches - "bloomberg-bde-tools-fix-install-path.patch")))) - (build-system copy-build-system) - ;; Unable to be an inline dependency of bloomberg-bde due to patch. - (properties '((hidden? . #t))) - (synopsis "Tools for developing and building libraries modeled on BDE") - (description - "This package provides the cmake imports needed to build bloomberg-bde.") - (home-page "https://github.com/bloomberg/bde-tools") - (license license:asl2.0)))) + (package + (name "bloomberg-bde-tools") + (version "4.27.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bloomberg/bde-tools") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0zkf6vdvzp73h6bai6kmd062k0wyqwrrdv2z9m416kgxr6qickl2")) + (patches + (search-patches + "bloomberg-bde-tools-fix-install-path.patch")))) + (build-system copy-build-system) + ;; Unable to be an inline dependency of bloomberg-bde due to patch. + (properties '((hidden? . #t))) + (synopsis "Tools for developing and building libraries modeled on BDE") + (description + "This package provides the cmake imports needed to build bloomberg-bde.") + (home-page "https://github.com/bloomberg/bde-tools") + (license license:asl2.0))) (define-public bloomberg-bde (let ((commit "445a8ac4223b90ee0a46749b87ffbbd21788e132")) |