mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add tinycmmc.
* gnu/packages/cmake.scm (tinycmmc): New variable. Change-Id: Ie3a4e04f1ab3fb3ad6b6825f371d233a4ee905e2
This commit is contained in:
parent
9200756fef
commit
e84e762a03
1 changed files with 21 additions and 0 deletions
|
@ -499,3 +499,24 @@ (define-public qmsetup
|
||||||
@item Support calling Qt Linguist Tools via CMake conveniently
|
@item Support calling Qt Linguist Tools via CMake conveniently
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:expat))))
|
(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
|
||||||
|
CMake modules.")
|
||||||
|
(license license:zlib)))
|
||||||
|
|
Loading…
Reference in a new issue