LibreWands/Packaging/GuixRecipe.scm

35 lines
1.6 KiB
Scheme

; This file is part of LibreWands.
; LibreWands is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
; LibreWands is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
; You should have received a copy of the GNU General Public License along with LibreWands. If not, see https://www.gnu.org/licenses/.
(define-module (gnu packages librewands)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (guix licenses)
#:use-module (gnu packages gawk))
(define-public librewands
(package
(name "librewands")
(version "0.0.2")
(source (origin
(method url-fetch)
(uri (string-append "https://gitea.com/lofenyy/LibreWands/archive/" version
".tar.gz"))
(sha256
(base32
"11mscpl8fb9bw27ab7xp2wfx5a83xiajf75l0iazxb295mhrxn0l"))))
(build-system gnu-build-system)
(arguments '(#:configure-flags '("--enable-silent-rules")))
(inputs (list gawk))
(synopsis "An ncurses RPG featuring magick and monsters.")
(description "An ncurses RPG featuring magick and monsters.")
(home-page "https://gitea.com/lofenyy/LibreWands")
(license gpl3+)))