diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-06-15 12:26:40 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-20 15:07:59 +0100 |
commit | 277d5449097a4acddc7aa224f8f89be373bc8f24 (patch) | |
tree | 7e062fd3404e4e84e0e8312fcf4a481df04681af | |
parent | 9e037dc3945e3c153cf149a63f02e44edba62cf7 (diff) |
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>
-rw-r--r-- | gnu/packages/cmake.scm | 39 |
1 files 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 |