You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
(use-modules (guix packages) |
|
(guix download) |
|
(guix build-system gnu) |
|
(guix licenses) |
|
(gnu packages sdl) |
|
(gnu packages fontutils) |
|
(gnu packages fonts) |
|
(gnu packages autotools) |
|
(gnu packages pkg-config)) |
|
|
|
(package |
|
(name "pong") |
|
(version "0.1-alpha") |
|
(source (origin |
|
(method url-fetch) |
|
(uri (string-append "https://forge.chapril.org/pradana.aumars/pong/archive/" version |
|
".tar.gz")) |
|
(sha256 |
|
(base32 |
|
"0wcwbaw51bj865fhhc55zz433zgskchjsw63nxa2zskj1ww0xfsj")))) |
|
(build-system gnu-build-system) |
|
(inputs |
|
`(("sdl2" ,sdl2) |
|
("sdl2-ttf" ,sdl2-ttf) |
|
("fontconfig" ,fontconfig) |
|
("font-liberation" ,font-liberation))) |
|
(native-inputs |
|
`(("autoconf" ,autoconf) |
|
("automake" ,automake) |
|
("pkg-config" ,pkg-config))) |
|
(synopsis "Implementation of Pong") |
|
(description |
|
"This is a basic implementation of Pong. It's not very good.") |
|
(home-page "https://forge.chapril.org/pradana.aumars/pong") |
|
(license gpl3))
|
|
|