diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2025-11-05 07:00:50 -0500 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-11-15 17:32:47 +0100 |
| commit | f93e45d96ed6aa1220d9512e1f85807d3fee7492 (patch) | |
| tree | 9c9d33b485d175b46236f42045746dd8f681a6a7 /gnu/packages | |
| parent | 1c8b0195e846c6de4e38489b6c5ae29f5987f166 (diff) | |
gnu: Add shlomif-cmake-modules.
* gnu/packages/game-development.scm (shlomif-cmake-modules): New variable.
Change-Id: I3ace299b640e3e15dcf7ddc3fdd664febd930aa8
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/game-development.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index a6a56c4d2a8..ffe1ef845cf 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -4009,3 +4009,30 @@ simplicity of BASIC with the sophistication of a modern structured language, allowing you to write utilities and games, use sound and graphics, perform calculations and create complete applications.") (license license:zlib))) + +(define-public shlomif-cmake-modules + (let ((commit "2fa3e9be1a1df74ad0e10f0264bfa60e1e3a755c") + (revision "0")) + (package + (name "shlomif-cmake-modules") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shlomif/shlomif-cmake-modules") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1755lvg1xxygsxnp6kyjw9m0nddcb19ivm8dy31hfiyr0rxakl9h")))) + (build-system copy-build-system) + (arguments + (list + #:install-plan + #~'(("shlomif-cmake-modules/" "share/shlomi-fish/cmake")))) + (home-page "https://github.com/shlomif/shlomif-cmake-modules") + (synopsis "CMake modules for Shlomi Fish's projects") + (description + "This repository contains CMake modules which are used across +@uref{https://www.shlomifish.org/, Shlomi Fish's} projects.") + (license license:expat)))) |
