mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add odamex.
* gnu/packages/games.scm (odamex): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
920c896c1a
commit
6f565d6c77
1 changed files with 28 additions and 0 deletions
|
@ -5397,6 +5397,34 @@ (define-public gzdoom
|
|||
"file://dumb/licence.txt"
|
||||
"Dumb license, explicitly GPL compatible.")))))
|
||||
|
||||
(define-public odamex
|
||||
(package
|
||||
(name "odamex")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://sourceforge/odamex/Odamex/" version "/"
|
||||
"odamex-src-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1sh6lqj7vsdmnqz17hw0b6vy7xx6dp41k2sdw99ympsfa2xd1d2j"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments `(#:tests? #f)) ; no tests.
|
||||
(inputs
|
||||
`(("sdl" ,sdl)
|
||||
("sdl-mixer" ,sdl-mixer)
|
||||
("zlib" ,zlib)
|
||||
("libpng" ,libpng)
|
||||
("alsa-lib" ,alsa-lib)))
|
||||
(home-page "https://odamex.net/")
|
||||
(synopsis "Multiplayer Doom port")
|
||||
(description "Odamex is a modification of the Doom engine that
|
||||
allows players to easily join servers dedicated to playing Doom
|
||||
online.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public fortune-mod
|
||||
(package
|
||||
(name "fortune-mod")
|
||||
|
|
Loading…
Reference in a new issue