diff options
author | Antero Mejr <antero@mailbox.org> | 2022-11-16 16:35:01 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-12-04 23:08:21 +0100 |
commit | 392dfb5dabee3c2cfaa801f677d046d93bf40312 (patch) | |
tree | 4960874dc3c8f1d7e0d691601d2a5f42033fe169 /gnu/packages/game-development.scm | |
parent | 34e193099c281d63a7508bf453bd16363e44ed6a (diff) | |
download | guix-392dfb5dabee3c2cfaa801f677d046d93bf40312.tar guix-392dfb5dabee3c2cfaa801f677d046d93bf40312.tar.gz |
gnu: Add csfml.
* gnu/packages/game-development.scm (csfml): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 66d0ca316f..4a0435045b 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -736,6 +736,34 @@ to ease the development of games and multimedia applications. It is composed of five modules: system, window, graphics, audio and network.") (license license:zlib))) +(define-public csfml + (package + (name "csfml") + (version "2.5.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/SFML/CSFML") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wj1p798myyavld2xdhvvflb5h4nf1vgxxzs6nh5qad44vj9b3kb")))) + (build-system cmake-build-system) + (arguments + (list #:configure-flags #~(list "-DCSFML_BUILD_DOC=TRUE") + #:tests? #f)) ;no tests + (native-inputs (list doxygen)) + (inputs (list sfml)) + (synopsis "C bindings for the SFML multimedia library") + (description + "CSFML is the official C binding to the SFML libraries. SFML provides a +simple interface to the various computer components, to ease the development of +games and multimedia applications. It is composed of five modules: system, +window, graphics, audio and network.") + (home-page "https://www.sfml-dev.org/download/csfml/") + (license license:zlib))) + (define-public sfxr (package (name "sfxr") |