blob: 269ce114f2330cc5afd00a2dc47ab3c28c35fc5a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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+))
|