summaryrefslogtreecommitdiff
path: root/gnu/packages/game-development.scm
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2025-12-21 08:50:10 -0500
committer宋文武 <iyzsong@member.fsf.org>2025-12-22 18:06:23 +0800
commit9ce816084429bde4d98010dc4797988c7930a8a2 (patch)
tree23c50aea87cd96f55fd375c8a0005cd4fa44e562 /gnu/packages/game-development.scm
parent1dfcd17b4df886891b6eae9e5ae3dcbbefc9594f (diff)
gnu: nml: Update to 0.8.1.
* gnu/packages/game-development.scm (nml): Update to 0.8.1. [arguments]: Fix test phase. Closes: guix/guix#5004 Change-Id: I03b80af19d809295411b85df491d7423837e6f59 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r--gnu/packages/game-development.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index b00b99b9165..d96bd461289 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -510,13 +510,19 @@ PCM data.")
510(define-public nml 510(define-public nml
511 (package 511 (package
512 (name "nml") 512 (name "nml")
513 (version "0.7.6") 513 (version "0.8.1")
514 (source 514 (source
515 (origin 515 (origin
516 (method url-fetch) 516 (method url-fetch)
517 (uri (pypi-uri "nml" version)) 517 (uri (pypi-uri "nml" version))
518 (sha256 518 (sha256
519 (base32 "0if99hk9dsiw33iabkrbrpwybv8vl3hpim1cf07sklkshigwxryr")))) 519 (base32 "0krs3jac9jc0zqr59ivfl5vibqc15b4yhww73j3c01dla1shvlcj"))))
520 (arguments
521 (list #:phases
522 #~(modify-phases %standard-phases
523 (replace 'check
524 (lambda _
525 (invoke "make" "-C" "regression"))))))
520 (build-system python-build-system) 526 (build-system python-build-system)
521 (propagated-inputs 527 (propagated-inputs
522 (list python-pillow python-ply)) 528 (list python-pillow python-ply))