geos39: init at 3.9.2

This commit is contained in:
Will Cohen 2022-03-29 11:04:17 -04:00
parent 03efe8111c
commit 06e3b4f7a0
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "geos";
version = "3.9.2";
src = fetchurl {
url = "https://download.osgeo.org/geos/${pname}-${version}.tar.bz2";
sha256 = "sha256-RKWpviHX1HNDa/Yhwt3MPPWou+PHhuEyKWGKO52GEpc=";
};
enableParallelBuilding = true;
# https://trac.osgeo.org/geos/ticket/993
configureFlags = lib.optional stdenv.isAarch32 "--disable-inline";
meta = with lib; {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = "https://trac.osgeo.org/geos";
license = licenses.lgpl21Only;
maintainers = with lib.maintainers; [
willcohen
];
};
}

View file

@ -16976,6 +16976,8 @@ with pkgs;
geos = callPackage ../development/libraries/geos { };
geos39 = callPackage ../development/libraries/geos/3.9.nix { };
getdata = callPackage ../development/libraries/getdata { };
inherit (callPackages ../development/libraries/getdns { })