mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 22:03:13 +00:00
94 lines
1.7 KiB
Nix
94 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
|
|
withPython ? true,
|
|
|
|
cairo,
|
|
cmake,
|
|
curl,
|
|
fcgi,
|
|
freetype,
|
|
fribidi,
|
|
gdal,
|
|
geos,
|
|
giflib,
|
|
harfbuzz,
|
|
libjpeg,
|
|
libpng,
|
|
librsvg,
|
|
libxml2,
|
|
pkg-config,
|
|
postgresql,
|
|
proj,
|
|
protobufc,
|
|
python3,
|
|
swig,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mapserver";
|
|
version = "8.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MapServer";
|
|
repo = "MapServer";
|
|
rev = "rel-${lib.replaceStrings [ "." ] [ "-" ] version}";
|
|
hash = "sha256-tub0Jd1IUkONQ5Mqz8urihbrcFLlOQybLhOvzkcwW54=";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
cmake
|
|
pkg-config
|
|
]
|
|
++ lib.optionals withPython [
|
|
swig
|
|
python3.pkgs.setuptools
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
curl
|
|
fcgi
|
|
freetype
|
|
fribidi
|
|
gdal
|
|
geos
|
|
giflib
|
|
harfbuzz
|
|
libjpeg
|
|
libpng
|
|
librsvg
|
|
(libxml2.override { enableHttp = true; })
|
|
postgresql
|
|
proj
|
|
protobufc
|
|
zlib
|
|
] ++ lib.optional withPython python3;
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "WITH_KML" true)
|
|
(lib.cmakeBool "WITH_SOS" true)
|
|
(lib.cmakeBool "WITH_RSVG" true)
|
|
(lib.cmakeBool "WITH_CURL" true)
|
|
(lib.cmakeBool "WITH_CLIENT_WMS" true)
|
|
(lib.cmakeBool "WITH_CLIENT_WFS" true)
|
|
(lib.cmakeBool "WITH_PYTHON" withPython)
|
|
|
|
# RPATH of binary /nix/store/.../bin/... contains a forbidden reference to /build/
|
|
(lib.cmakeBool "CMAKE_SKIP_BUILD_RPATH" true)
|
|
];
|
|
|
|
meta = {
|
|
description = "Platform for publishing spatial data and interactive mapping applications to the web";
|
|
homepage = "https://mapserver.org/";
|
|
changelog = "https://mapserver.org/development/changelog/";
|
|
license = lib.licenses.mit;
|
|
maintainers = lib.teams.geospatial.members;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|