nixpkgs/pkgs/development/libraries/geos/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.2 KiB
Nix
Raw Normal View History

2022-03-22 20:03:34 +00:00
{ lib
, stdenv
2022-12-14 11:32:49 +00:00
, callPackage
, fetchurl
, testers
2022-12-14 11:32:49 +00:00
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
2021-02-27 17:51:17 +00:00
pname = "geos";
2023-11-17 15:50:08 +00:00
version = "3.12.1";
src = fetchurl {
url = "https://download.osgeo.org/geos/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2";
2023-11-17 15:50:08 +00:00
hash = "sha256-1up+SSIktRGT6CRP4+wXxNRNB3fzwyyk+xcRQFSaDQM=";
};
nativeBuildInputs = [ cmake ];
2020-08-08 17:12:13 +00:00
2024-04-14 18:04:05 +00:00
# https://github.com/libgeos/geos/issues/930
cmakeFlags = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
"-DCMAKE_CTEST_ARGUMENTS=--exclude-regex;unit-geom-Envelope"
];
2022-12-10 20:29:55 +00:00
doCheck = true;
2022-12-14 11:32:49 +00:00
passthru.tests = {
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
2022-12-14 11:32:49 +00:00
geos = callPackage ./tests.nix { geos = finalAttrs.finalPackage; };
};
meta = with lib; {
2023-08-14 23:33:57 +00:00
description = "C/C++ library for computational geometry with a focus on algorithms used in geographic information systems (GIS) software";
homepage = "https://libgeos.org";
2021-02-27 17:51:17 +00:00
license = licenses.lgpl21Only;
2023-11-17 15:50:08 +00:00
mainProgram = "geosop";
maintainers = teams.geospatial.members;
pkgConfigModules = [ "geos" ];
2023-11-17 15:50:08 +00:00
changelog = "https://github.com/libgeos/geos/releases/tag/${finalAttrs.finalPackage.version}";
};
})