summaryrefslogtreecommitdiff
path: root/guix.scm
blob: 88b9c07678610b4219541200d75a7a6a020b861a (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-latest)
     ("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+))