Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

103 lines
2.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
validatePkgConfig,
freexl,
geos,
librttopo,
libxml2,
minizip,
proj,
sqlite,
libiconv,
zlib,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libspatialite";
version = "5.1.0";
outputs = [
"out"
"dev"
];
src = fetchurl {
url = "https://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-${finalAttrs.version}.tar.gz";
hash = "sha256-Q74t00na/+AW3RQAxdEShYKMIv6jXKUQnyHz7VBgUIA=";
};
patches = [
# Drop use of deprecated libxml2 HTTP API.
# From: https://www.gaia-gis.it/fossil/libspatialite/info/7c452740fe
# see also: https://github.com/NixOS/nixpkgs/issues/347085
./xmlNanoHTTPCleanup.patch
];
postPatch = lib.optionalString (!stdenv.hostPlatform.isStatic) ''
substituteInPlace spatialite.pc.in \
--replace-fail "@LIBS@ @LIBXML2_LIBS@ @SQLITE3_LIBS@ -lm" ""
'';
nativeBuildInputs = [
pkg-config
validatePkgConfig
];
buildInputs = [
freexl
geos
librttopo
libxml2
minizip
proj
sqlite
zlib
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
];
configureFlags = [
"--with-geosconfig=${lib.getExe' (lib.getDev geos) "geos-config"}"
];
enableParallelBuilding = true;
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
ln -s $out/lib/mod_spatialite.{so,dylib}
'';
# Failed tests (linux & darwin):
# - check_virtualtable6
# - check_drop_rename
doCheck = false;
preCheck = ''
export LD_LIBRARY_PATH=$(pwd)/src/.libs
export DYLD_LIBRARY_PATH=$(pwd)/src/.libs
'';
passthru.tests = {
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
};
meta = {
description = "Extensible spatial index library in C++";
homepage = "https://www.gaia-gis.it/fossil/libspatialite";
# They allow any of these
license = with lib.licenses; [
gpl2Plus
lgpl21Plus
mpl11
];
pkgConfigModules = [ "spatialite" ];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ dotlambda ];
teams = [ lib.teams.geospatial ];
};
})