anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / development / libraries / geos / 3.9.nix
blobb2cf3e8f962926ee01cacbc43f5cff1689681cbb
1 { lib
2 , stdenv
3 , fetchurl
4 , cmake
5 , testers
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "geos";
10   version = "3.9.5";
12   src = fetchurl {
13     url = "https://download.osgeo.org/geos/geos-${finalAttrs.version}.tar.bz2";
14     hash = "sha256-xsmu36iGT7RLp4kRQIRCOCv9BpDPLUCRrjgFyGN4kDY=";
15   };
17   nativeBuildInputs = [ cmake ];
19   enableParallelBuilding = true;
21   passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
23   meta = with lib; {
24     description = "C++ port of the Java Topology Suite (JTS)";
25     mainProgram = "geos-config";
26     homepage = "https://trac.osgeo.org/geos";
27     license = licenses.lgpl21Only;
28     pkgConfigModules = [ "geos" ];
29     maintainers = with lib.maintainers; [
30       willcohen
31     ];
32   };