diff options
| author | Patrick 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 |
| commit | 9ce816084429bde4d98010dc4797988c7930a8a2 (patch) | |
| tree | 23c50aea87cd96f55fd375c8a0005cd4fa44e562 | |
| parent | 1dfcd17b4df886891b6eae9e5ae3dcbbefc9594f (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>
| -rw-r--r-- | gnu/packages/game-development.scm | 10 |
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.") (define-public nml (package (name "nml") - (version "0.7.6") + (version "0.8.1") (source (origin (method url-fetch) (uri (pypi-uri "nml" version)) (sha256 - (base32 "0if99hk9dsiw33iabkrbrpwybv8vl3hpim1cf07sklkshigwxryr")))) + (base32 "0krs3jac9jc0zqr59ivfl5vibqc15b4yhww73j3c01dla1shvlcj")))) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "make" "-C" "regression")))))) (build-system python-build-system) (propagated-inputs (list python-pillow python-ply)) |
