python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / geos / 3.9.nix
blobfd0531fa747fdb69dea6a175c10d79bcbe767de9
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "geos";
5   version = "3.9.2";
7   src = fetchurl {
8     url = "https://download.osgeo.org/geos/${pname}-${version}.tar.bz2";
9     sha256 = "sha256-RKWpviHX1HNDa/Yhwt3MPPWou+PHhuEyKWGKO52GEpc=";
10   };
12   enableParallelBuilding = true;
14   # https://trac.osgeo.org/geos/ticket/993
15   configureFlags = lib.optional stdenv.isAarch32 "--disable-inline";
17   meta = with lib; {
18     description = "C++ port of the Java Topology Suite (JTS)";
19     homepage = "https://trac.osgeo.org/geos";
20     license = licenses.lgpl21Only;
21     maintainers = with lib.maintainers; [
22       willcohen
23     ];
24   };