summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-03-31 01:49:44 +0000
committerAndreas Enge <andreas@enge.fr>2025-03-31 16:53:47 +0200
commit1a399f814f1a19ee8b6921c0b9c0b27f6045cdba (patch)
treed92ffde9a07098fc24c1d384c3c46297bff6e905
parent61f8719366c7f71d59117f0ebb1009c8a784e045 (diff)
gnu: grass: Update to 8.4.1.
* gnu/packages/geo.scm (grass): Update to 8.4.1. [inputs]: Add libxml2, pdal. [arguments]<#:phases>: Update the executable name in the 'wrap-with-python-interpreter phase. Change-Id: I251fc1756801f3f491670443a1dcad4092137ba5
-rw-r--r--gnu/packages/geo.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index e2d67cda18..d2651c41de 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -3213,7 +3213,7 @@ orienteering sport.")
(license license:gpl3+)))
(define-public grass
- (let* ((version "7.8.8")
+ (let* ((version "8.4.1")
(majorminor (string-join (list-head (string-split version #\.) 2) ""))
(grassxx (string-append "grass" majorminor)))
(package
@@ -3225,7 +3225,7 @@ orienteering sport.")
(uri (string-append "https://grass.osgeo.org/" grassxx
"/source/grass-" version ".tar.gz"))
(sha256
- (base32 "1gpfbppfajc8d6b9alw9fdzgaa83w26kl6fff1395bc9gal215ms"))))
+ (base32 "0r08vdi1s0mpa033bqbc9kc3116qm53bmx2k7l8dgg69wxkwyzfi"))))
(build-system gnu-build-system)
(inputs
(list bash-minimal
@@ -3238,11 +3238,13 @@ orienteering sport.")
glu
libpng
libtiff
+ libxml2 ;marked as required by pdal
mesa
`(,mariadb "dev")
`(,mariadb "lib")
netcdf
openblas
+ pdal
perl
postgresql
proj
@@ -3324,7 +3326,7 @@ orienteering sport.")
(assoc-ref python:%standard-phases 'wrap))
(add-after 'python:wrap 'wrap-with-python-interpreter
(lambda _
- (wrap-program (string-append #$output "/bin/" #$grassxx)
+ (wrap-program (string-append #$output "/bin/grass")
`("GRASS_PYTHON" = (,(which "python3")))))))))
(synopsis "GRASS Geographic Information System")
(description