1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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>
This commit is contained in:
Patrick Norton
2025-11-05 07:00:50 -05:00
committed by Liliana Marie Prikler
parent 1c8b0195e8
commit f93e45d96e

View File

@@ -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))))