summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-08-25 09:26:51 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-02 21:04:24 +0100
commit83f234a549a460caa4aece3378aa9258cd428167 (patch)
tree3cf4e4c137b10c62788adbb33965446abb41ba70 /gnu/packages/cpp.scm
parent520ba1b90467cc9839d9cad9a097c0d5600aaff5 (diff)
gnu: crc32c: Move to (gnu packages crypto).
* gnu/packages/cpp.scm (crc32c): Move from here… * gnu/packages/crypto.scm (crc32c): …to here. Change-Id: I62bee9e02c9480646093c174dfe84ccc72e4577a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm32
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index a12dcb9d911..53707fcb0ba 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -3367,38 +3367,6 @@ templated string type for compatibility with any STL-like string (std::string,
std::wstring, etc).")
(license license:boost1.0)))
-(define-public crc32c
- (package
- (name "crc32c")
- (version "1.1.2")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/google/crc32c")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0966lyy3w5cnrs0c0fkma4hga51k54hns72l4n76944awqssap7j"))
- (patches (search-patches "crc32c-unbundle-googletest.patch"))))
- (build-system cmake-build-system)
- (arguments
- (list #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
- "-DCRC32C_BUILD_BENCHMARKS=OFF"
- "-DCRC32C_USE_GLOG=OFF"
- (string-append
- "-DCRC32C_BUILD_TESTS="
- ;; TODO: perhaps infer #:tests?
- (if #$(%current-target-system)
- "OFF" "ON")))))
- (native-inputs (list googletest))
- (home-page "https://github.com/google/crc32c")
- (synopsis "Cyclic redundancy check")
- (description
- "This package provides architecture-specific implementations of the
-CRC32C algorithm, which is specified in RFC 3720, section 12.1.")
- (license license:bsd-3)))
-
(define fast-float-test-files
(let ((name "fast-float-test-files")
(version "1.0.0"))