mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add zeta.
* gnu/packages/games.scm (zeta): New variable. Change-Id: I9182e23f717cd53cf6743cf6a7dc2282b60e3dc5
This commit is contained in:
parent
4ec9e1678b
commit
d043478327
1 changed files with 40 additions and 0 deletions
|
@ -13470,6 +13470,46 @@ Icewind Dale and Planescape: Torment. It sports a cleaner design, greater
|
||||||
extensibility and several innovations.")
|
extensibility and several innovations.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public zeta
|
||||||
|
(package
|
||||||
|
(name "zeta")
|
||||||
|
(version "1.1.4")
|
||||||
|
(home-page "https://zeta.asie.pl/")
|
||||||
|
(synopsis "ZZT and Super ZZT emulator")
|
||||||
|
(description
|
||||||
|
"An emulator implementing enough of @acronym{DOS, Disk Operating System}
|
||||||
|
to run ZZT and Super ZZT on modern systems.")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/asiekierka/zeta")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0h7wnxn6rrlqbzgsbhhlx4lpb5apdr3bbxvp74y3axidkgs62bzf"))))
|
||||||
|
(license (list license:expat))
|
||||||
|
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
(list
|
||||||
|
libdecor
|
||||||
|
libpng
|
||||||
|
sdl3))
|
||||||
|
(native-inputs
|
||||||
|
(list
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
pkg-config
|
||||||
|
python
|
||||||
|
python-pillow))
|
||||||
|
(arguments
|
||||||
|
'(#:configure-flags
|
||||||
|
'("--with-frontend=sdl3"
|
||||||
|
;; Upstream requests c11, but the source uses strdup() /
|
||||||
|
;; strcasecmp(), which aren't in C11.
|
||||||
|
"CFLAGS=-std=gnu11")))))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||||
;;; of a merge conflict, place them above by existing packages with similar
|
;;; of a merge conflict, place them above by existing packages with similar
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue