gnu: nip2: Update to 8.9.1.

* gnu/packages/image-processing.scm (nip2): Update to 8.9.1.
[arguments]<#:phases>: Delete the 'disable-test-conv phase. Remove
trailing #t from 'set-home.

Change-Id: If6a96c4cc83880634110efaa99a58b2e475e3687
This commit is contained in:
Vinicius Monego 2025-03-03 10:55:24 -03:00
parent 5bbac900ad
commit 329d073bf1
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -873,26 +873,21 @@ including 2D color images.")
(define-public nip2 (define-public nip2
(package (package
(name "nip2") (name "nip2")
(version "8.7.1") (version "8.9.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/libvips/nip2/releases/download/v" (uri (string-append "https://github.com/libvips/nip2/releases/download/v"
version "/nip2-" version ".tar.gz" )) version "/nip2-" version ".tar.gz" ))
(sha256 (sha256
(base32 "0l7n427njif53npqn02gfjjly8y3khbrkzqxp10j5vp9h97psgiw")))) (base32 "1kbndn37m0cfjvrvw25b5if9d962r8v79q78i2lzm55r7zmjcpmp"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
;; test_conv.ws keep failing so disabling for now.
(add-after 'unpack 'disable-test-conv
(lambda _
(delete-file "test/workspaces/test_conv.ws")
#t))
(add-before 'check 'set-home (add-before 'check 'set-home
(lambda _ (lambda _
(setenv "HOME" "/tmp") #t))))) (setenv "HOME" "/tmp"))))))
(inputs (list gsl gtk+-2 vips)) (inputs (list gsl gtk+-2 vips))
(native-inputs (list bison flex pkg-config)) (native-inputs (list bison flex pkg-config))
(home-page "https://github.com/libvips/nip2") (home-page "https://github.com/libvips/nip2")