gnu: tinycmmc: Update to 0.1.0-0.8238a6c.

* gnu/packages/cmake.scm (tinycmmc): Update to 0.1.0-0.8238a6c.

Change-Id: I84d8c90991fc411b93647f117f4701da21d90ef4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-06-15 12:26:40 +02:00 committed by Sharlatan Hellseher
parent 9e037dc394
commit 277d544909
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -606,25 +606,28 @@ C/C++ projects. It features:
(license license:expat))))
(define-public tinycmmc
(package
(name "tinycmmc")
(version "0.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Grumbel/tinycmmc")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0chv7h6vnd8zpa6b69krxwdgvp3n5fd37355wa1zwi14x4nyyay5"))))
(build-system cmake-build-system)
(arguments (list #:tests? #f)) ;no test suite
(home-page "https://github.com/Grumbel/tinycmmc")
(synopsis "Tiny CMake Module Collections")
(description "The tinycmmc package contains a small collection of reusable
;; XXX: Does not release anymore.
(let ((commit "8238a6c1b90536e211fddf356dc3af26ea7c2f2c")
(revision "0"))
(package
(name "tinycmmc")
(version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Grumbel/tinycmmc")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1nv1439psdnq99vqpmp4nj2630l85cfwxzmf7rgpa436q09ql77p"))))
(build-system cmake-build-system)
(arguments (list #:tests? #f)) ;no test suite
(home-page "https://github.com/Grumbel/tinycmmc")
(synopsis "Tiny CMake Module Collections")
(description "The tinycmmc package contains a small collection of reusable
CMake modules.")
(license license:zlib)))
(license license:zlib))))
(define-public cpm-cmake
(package