summaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-03-01 00:08:40 +0100
committerRicardo Wurmus <rekado@elephly.net>2021-03-09 11:40:28 +0100
commitbc2ecb951a837db673b13def15f2c31f7134415a (patch)
tree6a27f6aefe9660ec73d6b6747e45a3c1178c530b /guix.scm
WIP
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm
new file mode 100644
index 0000000..269ce11
--- /dev/null
+++ b/guix.scm
@@ -0,0 +1,25 @@
+(use-modules
+ (guix packages)
+ (guix licenses)
+ (guix build-system gnu)
+ (gnu packages autotools)
+ (gnu packages pkg-config)
+ (gnu packages game-development)
+ (gnu packages guile))
+
+(package
+ (name "inevitable")
+ (version "0.0.0")
+ (source #f)
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("automake" ,automake)
+ ("autoconf" ,autoconf)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("guile" ,guile-3.0)
+ ("guile-chickadee" ,guile-chickadee)))
+ (home-page "https://elephly.net")
+ (synopsis "This is not a game")
+ (description "The inevitable game of life and certain death.")
+ (license gpl3+))