bloatrunner/guix.scm

30 lines
925 B
Scheme
Raw Normal View History

2024-05-17 23:49:31 +02:00
(use-modules (guix packages)
((guix licenses) #:prefix license:)
(guix download)
(guix git)
(guix build-system gnu)
(guix utils)
(gnu packages)
(gnu packages autotools)
(gnu packages guile)
(gnu packages game-development)
(gnu packages pkg-config))
(package
2024-05-19 18:48:18 +02:00
(name "bloatrunner")
2024-05-17 23:49:31 +02:00
(version "0.1.0-git")
(source (git-checkout (url (dirname (current-filename)))))
(build-system gnu-build-system)
(arguments
'(#:make-flags '("GUILE_AUTO_COMPILE=0")))
(native-inputs
(list autoconf automake pkg-config))
(inputs
(list guile-3.0))
(propagated-inputs
(list guile-chickadee))
2024-05-19 18:48:18 +02:00
(synopsis "Loderunner inspired game")
(description "Small game written for the 2024 lisp game jam.")
(home-page "https://www.snamellit.com/projects/bloatrunner.html")
(license license:gpl3))