diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2023-06-13 18:45:01 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-06-21 17:43:12 +0800 |
commit | 2e0228e736bf08d376ffbce6b5c4f899babfee5e (patch) | |
tree | 01126b3dcd2e9492936afa1c6b956a7281420065 /gnu/packages/games.scm | |
parent | 1a0ff5cd83d3257efcab64740a1322de51fbc4a1 (diff) | |
download | guix-2e0228e736bf08d376ffbce6b5c4f899babfee5e.tar.gz |
gnu: Add anarch.
* gnu/packages/games.scm (anarch): New variable.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 21799923cf..83704dd720 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -416,6 +416,40 @@ Plenty of classic platforming in four nice colors guaranteed! The game includes a built-in editor so you can design and share your own maps.") (license license:gpl2+))) +(define-public anarch + (let ((commit "2d78d0c69a3aac14dbd8f8aca62d0cbd9d27c860") + (revision "1")) + (package + (name "anarch") + (version (git-version "1.1d" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~drummyfish/Anarch") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1lg9r6q1davn5yj181ccygmvaigvm8fr9q2s1bc77a1vkz68vzdk")))) + (build-system gnu-build-system) + (arguments + (list #:tests? #f ;no tests + #:phases #~(modify-phases %standard-phases + (delete 'configure) ;no configure script + (replace 'build + (lambda _ + (invoke "./make.sh" "sdl"))) + (replace 'install + (lambda _ + (let ((bin (string-append #$output "/bin"))) + (install-file "anarch" bin))))))) + (inputs (list alsa-lib libxcursor libxrandr sdl2)) + (home-page "https://drummyfish.gitlab.io/anarch/") + (synopsis "Public domain 90s-style shooter game") + (description "Anarch is a small, completely public domain, 90s-style +Doom clone shooter game.") + (license license:cc0)))) + (define-public armagetronad (package (name "armagetronad") |