2021-01-27 05:44:43 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, flex, bison, pkg-config, zlib, libtiff, libpng, fftw
|
2022-10-15 18:36:51 +00:00
|
|
|
, cairo, readline, ffmpeg, makeWrapper, wxGTK32, libiconv, netcdf, blas
|
|
|
|
, proj, gdal, geos, sqlite, postgresql, libmysqlclient, python3Packages, proj-datumgrid
|
2021-12-07 10:14:11 +00:00
|
|
|
, zstd, pdal, wrapGAppsHook
|
2015-09-18 17:01:01 +00:00
|
|
|
}:
|
|
|
|
|
2019-07-11 20:12:09 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-03-22 16:57:23 +00:00
|
|
|
pname = "grass";
|
2022-07-19 16:52:16 +00:00
|
|
|
version = "8.2.0";
|
2019-07-11 20:12:09 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
src = with lib; fetchFromGitHub {
|
2019-07-11 20:12:09 +00:00
|
|
|
owner = "OSGeo";
|
|
|
|
repo = "grass";
|
2021-12-06 22:50:18 +00:00
|
|
|
rev = version;
|
2022-07-19 16:52:16 +00:00
|
|
|
sha256 = "sha256-VK9FCqIwHGmeJe5lk12lpAGcsC1aPRBiI+XjACXjDd4=";
|
2015-09-18 17:01:01 +00:00
|
|
|
};
|
|
|
|
|
2022-10-15 18:36:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config bison flex makeWrapper wrapGAppsHook
|
|
|
|
gdal geos libmysqlclient netcdf pdal
|
|
|
|
] ++ (with python3Packages; [ python-dateutil numpy wxPython_4_1 ]);
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cairo zlib proj libtiff libpng fftw sqlite
|
|
|
|
readline ffmpeg postgresql blas wxGTK32
|
|
|
|
proj-datumgrid zstd
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
2015-09-18 17:01:01 +00:00
|
|
|
|
2018-03-13 09:04:18 +00:00
|
|
|
# On Darwin the installer tries to symlink the help files into a system
|
|
|
|
# directory
|
2018-03-20 22:34:17 +00:00
|
|
|
patches = [ ./no_symbolic_links.patch ];
|
2018-03-13 09:04:18 +00:00
|
|
|
|
2019-11-06 07:26:33 +00:00
|
|
|
# Correct mysql_config query
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace configure --replace "--libmysqld-libs" "--libs"
|
|
|
|
'';
|
|
|
|
|
2015-09-18 17:01:01 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-proj-share=${proj}/share/proj"
|
2019-07-11 20:12:09 +00:00
|
|
|
"--with-proj-includes=${proj.dev}/include"
|
2022-01-26 12:44:26 +00:00
|
|
|
"--with-proj-libs=${proj}/lib"
|
2015-09-18 17:01:01 +00:00
|
|
|
"--without-opengl"
|
|
|
|
"--with-readline"
|
|
|
|
"--with-wxwidgets"
|
|
|
|
"--with-netcdf"
|
|
|
|
"--with-geos"
|
2017-12-28 08:58:46 +00:00
|
|
|
"--with-postgres"
|
|
|
|
"--with-postgres-libs=${postgresql.lib}/lib/"
|
2016-08-01 15:46:30 +00:00
|
|
|
# it complains about missing libmysqld but doesn't really seem to need it
|
2017-12-28 08:58:46 +00:00
|
|
|
"--with-mysql"
|
2020-09-09 19:17:23 +00:00
|
|
|
"--with-mysql-includes=${lib.getDev libmysqlclient}/include/mysql"
|
2019-09-22 07:38:09 +00:00
|
|
|
"--with-mysql-libs=${libmysqlclient}/lib/mysql"
|
2015-09-18 17:01:01 +00:00
|
|
|
"--with-blas"
|
2021-12-06 22:59:45 +00:00
|
|
|
"--with-zstd"
|
|
|
|
"--with-fftw"
|
|
|
|
"--with-pthread"
|
2022-01-26 12:44:26 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
"--with-pdal"
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
"--without-cairo"
|
|
|
|
"--without-freetype"
|
|
|
|
"--without-x"
|
2015-09-18 17:01:01 +00:00
|
|
|
];
|
|
|
|
|
2018-04-12 23:03:31 +00:00
|
|
|
# Otherwise a very confusing "Can't load GDAL library" error
|
2021-01-15 13:21:58 +00:00
|
|
|
makeFlags = lib.optional stdenv.isDarwin "GDAL_DYNAMIC=";
|
2018-04-12 23:03:31 +00:00
|
|
|
|
2015-09-18 17:01:01 +00:00
|
|
|
/* Ensures that the python script run at build time are actually executable;
|
|
|
|
* otherwise, patchShebangs ignores them. */
|
|
|
|
postConfigure = ''
|
2022-03-22 20:14:36 +00:00
|
|
|
for f in $(find . -name '*.py'); do
|
|
|
|
chmod +x $f
|
2015-09-18 17:01:01 +00:00
|
|
|
done
|
2022-03-22 20:14:36 +00:00
|
|
|
|
|
|
|
patchShebangs */
|
2015-09-18 17:01:01 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-03-22 20:14:36 +00:00
|
|
|
wrapProgram $out/bin/grass \
|
2015-09-18 17:01:01 +00:00
|
|
|
--set PYTHONPATH $PYTHONPATH \
|
2022-01-25 19:16:18 +00:00
|
|
|
--set GRASS_PYTHON ${python3Packages.python.interpreter} \
|
2016-12-16 15:10:23 +00:00
|
|
|
--suffix LD_LIBRARY_PATH ':' '${gdal}/lib'
|
2019-07-11 20:12:09 +00:00
|
|
|
ln -s $out/grass*/lib $out/lib
|
|
|
|
ln -s $out/grass*/include $out/include
|
2015-09-18 17:01:01 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://grass.osgeo.org/";
|
2015-09-18 17:01:01 +00:00
|
|
|
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.all;
|
2022-04-28 19:21:54 +00:00
|
|
|
maintainers = with lib.maintainers; [ mpickering willcohen ];
|
2015-09-18 17:01:01 +00:00
|
|
|
};
|
|
|
|
}
|