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

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

32 lines
797 B
Nix
Raw Normal View History

2022-03-22 20:03:34 +00:00
{ lib
, fetchurl
, stdenv
, testers
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
2021-02-27 17:51:17 +00:00
pname = "geos";
version = "3.11.2";
src = fetchurl {
url = "https://download.osgeo.org/geos/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2";
hash = "sha256-sfB3ZpSBxaPmKv/EnpbrBvKBmHpdNv2rIlIX5bgl5Mw=";
};
nativeBuildInputs = [ cmake ];
2020-08-08 17:12:13 +00:00
2022-12-10 20:29:55 +00:00
doCheck = true;
passthru.tests.pkg-config = testers.testMetaPkgConfig 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;
maintainers = teams.geospatial.members;
pkgConfigModules = [ "geos" ];
2023-08-14 23:33:57 +00:00
mainProgram = "geosop";
};
})