bloatrunner/guix.scm

29 lines
925 B
Scheme

(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
(name "bloatrunner")
(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))
(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))