nixpkgs/pkgs/development/libraries/geos/default.nix
2021-02-21 15:30:49 +00:00

24 lines
584 B
Nix

{ lib, stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
name = "geos-3.9.1";
src = fetchurl {
url = "https://download.osgeo.org/geos/${name}.tar.bz2";
sha256 = "sha256-fmMFB9ysncB1ZdJJom8GoVyfWwxS3SkSmg49OB1+OCo=";
};
enableParallelBuilding = true;
buildInputs = [ python ];
# 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.lgpl21;
};
}