Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
pkgs(grass): 8.2.1 -> 8.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik committed Jun 27, 2023
1 parent fdb7596 commit 3f4e1ea
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pkgs/grass/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ lib, stdenv, fetchFromGitHub, flex, bison, pkg-config, zlib, libtiff, libpng, fftw
, cairo, readline, ffmpeg, makeWrapper, wxGTK32, libiconv, netcdf, blas
, cairo, readline, ffmpeg, makeWrapper, wxGTK32, libiconv, libxml2, netcdf, blas
, proj, gdal, geos, sqlite, postgresql, libmysqlclient, python3Packages, proj-datumgrid
, zstd, pdal, wrapGAppsHook
}:

stdenv.mkDerivation rec {
pname = "grass";
version = "8.2.1";
version = "8.3.0";

src = with lib; fetchFromGitHub {
owner = "OSGeo";
repo = "grass";
rev = version;
hash = "sha256-U3PQd3u9i+9Bc7BSd0gK8Ss+iV9BT1xLBDrKydtl3Qk=";
hash = "sha256-YHQtvp/AYMWme46yIc4lE/izjqVePnPxn3GY5RRfPq4=";
};

nativeBuildInputs = [
Expand All @@ -21,11 +21,11 @@ stdenv.mkDerivation rec {
geos # for `geos-config`
netcdf # for `nc-config`
libmysqlclient # for `mysql_config`
pdal # for `pdal-config`; remove with next version, see https://github.com/OSGeo/grass/pull/2851
libpng # for libpng-config
] ++ (with python3Packages; [ python-dateutil numpy wxPython_4_2 ]);

buildInputs = [
cairo zlib proj libtiff libpng fftw sqlite
cairo zlib proj libtiff libpng libxml2 fftw sqlite
readline ffmpeg postgresql blas wxGTK32
proj-datumgrid zstd
gdal
Expand Down Expand Up @@ -97,11 +97,11 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

meta = {
meta = with lib; {
homepage = "https://grass.osgeo.org/";
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ mpickering willcohen ];
license = licenses.gpl2Plus;
# maintainers = with maintainers; teams.geospatial.members ++ [ mpickering ]; TODO: enable for NixOS 23.05
platforms = platforms.all;
};
}

0 comments on commit 3f4e1ea

Please sign in to comment.