mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
173 lines
3.4 KiB
Nix
173 lines
3.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
callPackage,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
wrapGAppsHook3,
|
|
|
|
withOpenGL ? !stdenv.hostPlatform.isDarwin,
|
|
|
|
bison,
|
|
blas,
|
|
cairo,
|
|
ffmpeg,
|
|
fftw,
|
|
flex,
|
|
freetype,
|
|
gdal,
|
|
geos,
|
|
lapack,
|
|
libGLU,
|
|
libiconv,
|
|
libpng,
|
|
libsvm,
|
|
libtiff,
|
|
libxml2,
|
|
llvmPackages,
|
|
netcdf,
|
|
pdal,
|
|
pkg-config,
|
|
libpq,
|
|
proj,
|
|
python3Packages,
|
|
readline,
|
|
sqlite,
|
|
wxGTK32,
|
|
zlib,
|
|
zstd,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "grass";
|
|
version = "8.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OSGeo";
|
|
repo = "grass";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-q1jOimQi+24I1ZBf6Z0cvAyXcBFBpT5aWSNeG6n6y0k=";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
|
|
bison
|
|
flex
|
|
gdal # for `gdal-config`
|
|
geos # for `geos-config`
|
|
netcdf # for `nc-config`
|
|
pkg-config
|
|
]
|
|
++ (with python3Packages; [
|
|
python-dateutil
|
|
numpy
|
|
wxpython
|
|
]);
|
|
|
|
buildInputs =
|
|
[
|
|
blas
|
|
cairo
|
|
ffmpeg
|
|
fftw
|
|
freetype
|
|
gdal
|
|
geos
|
|
lapack
|
|
libpng
|
|
libsvm
|
|
libtiff
|
|
libxml2
|
|
netcdf
|
|
pdal
|
|
libpq
|
|
proj
|
|
readline
|
|
sqlite
|
|
wxGTK32
|
|
zlib
|
|
zstd
|
|
]
|
|
++ lib.optionals withOpenGL [ libGLU ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]
|
|
++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ];
|
|
|
|
strictDeps = true;
|
|
|
|
configureFlags =
|
|
[
|
|
"--with-blas"
|
|
"--with-cairo-ldflags=-lfontconfig"
|
|
"--with-cxx"
|
|
"--with-fftw"
|
|
"--with-freetype"
|
|
"--with-geos"
|
|
"--with-gdal"
|
|
"--with-lapack"
|
|
"--with-libsvm"
|
|
"--with-nls"
|
|
"--with-openmp"
|
|
"--with-pdal"
|
|
"--with-postgres"
|
|
"--with-postgres-libs=${libpq}/lib/"
|
|
"--with-proj-includes=${proj.dev}/include"
|
|
"--with-proj-libs=${proj}/lib"
|
|
"--with-proj-share=${proj}/share/proj"
|
|
"--with-sqlite"
|
|
"--with-zstd"
|
|
"--without-bzlib"
|
|
"--without-mysql"
|
|
"--without-odbc"
|
|
]
|
|
++ lib.optionals (!withOpenGL) [
|
|
"--without-opengl"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"--without-cairo"
|
|
"--without-freetype"
|
|
"--without-x"
|
|
];
|
|
|
|
# Otherwise a very confusing "Can't load GDAL library" error
|
|
makeFlags = lib.optional stdenv.hostPlatform.isDarwin "GDAL_DYNAMIC=";
|
|
|
|
/*
|
|
Ensures that the python script run at build time are actually executable;
|
|
otherwise, patchShebangs ignores them.
|
|
*/
|
|
postConfigure = ''
|
|
for f in $(find . -name '*.py'); do
|
|
chmod +x $f
|
|
done
|
|
|
|
patchShebangs */
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/grass \
|
|
--set PYTHONPATH $PYTHONPATH \
|
|
--set GRASS_PYTHON ${python3Packages.python.interpreter} \
|
|
--suffix LD_LIBRARY_PATH ':' '${gdal}/lib'
|
|
ln -s $out/grass*/lib $out/lib
|
|
ln -s $out/grass*/include $out/include
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = {
|
|
grass = callPackage ./tests.nix { grass = finalAttrs.finalPackage; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
|
|
homepage = "https://grass.osgeo.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ mpickering ];
|
|
teams = [ teams.geospatial ];
|
|
platforms = platforms.all;
|
|
mainProgram = "grass";
|
|
};
|
|
})
|