diff options
author | Vinicius Monego <monego@posteo.net> | 2025-03-31 01:49:45 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-03-31 16:53:47 +0200 |
commit | 23b851778605ae0802227df1971366ef3aef1949 (patch) | |
tree | c02d09189d4bfdef6d743fedfd6cd4d8dd344e9a | |
parent | 1a399f814f1a19ee8b6921c0b9c0b27f6045cdba (diff) |
gnu: grass: Improve package style.
* gnu/packages/geo.scm (grass): Move arguments below build-system,
native-inputs below arguments, inputs below native-inputs.
Change-Id: Ica7a2c7a32913acfd8818ec04fcea5cb5bf95c6c
-rw-r--r-- | gnu/packages/geo.scm | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index d2651c41de..13ea14582b 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -3227,41 +3227,6 @@ orienteering sport.") (sha256 (base32 "0r08vdi1s0mpa033bqbc9kc3116qm53bmx2k7l8dgg69wxkwyzfi")))) (build-system gnu-build-system) - (inputs - (list bash-minimal - bzip2 - cairo - fftw - freetype - gdal - geos - glu - libpng - libtiff - libxml2 ;marked as required by pdal - mesa - `(,mariadb "dev") - `(,mariadb "lib") - netcdf - openblas - pdal - perl - postgresql - proj - python - python-dateutil - python-numpy - python-wxpython - readline - sqlite - wxwidgets - zlib - `(,zstd "lib"))) - (native-inputs - (list bash-minimal - bison - flex - pkg-config)) (arguments (list #:tests? #f ; No tests @@ -3328,6 +3293,41 @@ orienteering sport.") (lambda _ (wrap-program (string-append #$output "/bin/grass") `("GRASS_PYTHON" = (,(which "python3"))))))))) + (native-inputs + (list bash-minimal + bison + flex + pkg-config)) + (inputs + (list bash-minimal + bzip2 + cairo + fftw + freetype + gdal + geos + glu + libpng + libtiff + libxml2 ;marked as required by pdal + mesa + `(,mariadb "dev") + `(,mariadb "lib") + netcdf + openblas + pdal + perl + postgresql + proj + python + python-dateutil + python-numpy + python-wxpython + readline + sqlite + wxwidgets + zlib + `(,zstd "lib"))) (synopsis "GRASS Geographic Information System") (description "GRASS (Geographic Resources Analysis Support System), is a Geographic |