guix_mirror_bot pushed a commit to branch master in repository guix. commit 277d5449097a4acddc7aa224f8f89be373bc8f24 Author: Nicolas Graves <ngra...@ngraves.fr> AuthorDate: Sun Jun 15 12:26:40 2025 +0200
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 <sharlata...@gmail.com> --- gnu/packages/cmake.scm | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm index c15cee49e6..95820f013a 100644 --- a/gnu/packages/cmake.scm +++ b/gnu/packages/cmake.scm @@ -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