diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-09-02 09:32:50 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2024-09-02 09:33:58 +0800 |
commit | 2fed0622bc539dee33fa0e14d4ae0b66d24ff545 (patch) | |
tree | 0045a09b50f1782b48e55660b0f4e9331d3358f7 | |
parent | 46cbe7d520e33f7afbae92fae8eb41f16fc67233 (diff) | |
download | guix-2fed0622bc539dee33fa0e14d4ae0b66d24ff545.tar.gz guix-2fed0622bc539dee33fa0e14d4ae0b66d24ff545.zip |
gnu: python-xsge: Update to 2021.10.11.
* gnu/packages/game-development.scm (python-xsge): Update to 2021.10.11.
[native-inputs]: Remove unzip.
Change-Id: I2fd9530b61691adf5bb7c7b17c2060bf06d14c86
-rw-r--r-- | gnu/packages/game-development.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 6883952109..62f578f3db 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -546,15 +546,15 @@ levels.") (define-public python-xsge (package (name "python-xsge") - (version "2020.09.07") + (version "2021.10.11") (source (origin (method url-fetch) (uri (string-append "https://github.com/python-sge/xsge" "/releases/download/v" version - "/xsge-" version ".zip")) + "/xsge-" version ".tar.gz")) (sha256 (base32 - "136xgy3f9vw636wxpqbha022avk0wyxw63mm3a2dvwhh90s716f9")))) + "0g86p5i9lflvblzy7977lmxbsma5hdlz63sk0k8c59vnhg8sij4i")))) (build-system python-build-system) (arguments '(#:phases @@ -567,8 +567,6 @@ levels.") (string-append "--prefix=" (assoc-ref outputs "out")) "--root=/")))) #:tests? #f)) ; no check target - (native-inputs - (list unzip)) (propagated-inputs (list python-sge)) (home-page "https://python-sge.github.io/") @@ -578,7 +576,7 @@ levels.") Game Engine easier. In addition to SGE's conveniences, the user has access to a GUI toolkit, lighting and physics frameworks and @code{Tiled} TMX format support.") - (license license:gpl3+))) + (license license:lgpl3+))) (define-public slade (package |