~ruther/guix-local

f93e45d96ed6aa1220d9512e1f85807d3fee7492 — Patrick Norton 6 months ago 1c8b019
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>
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/game-development.scm
M gnu/packages/game-development.scm => gnu/packages/game-development.scm +27 -0
@@ 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))))