about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/geos/default.nix
blob: 19b03eb620cebfb3901590ea51d04b3e145531fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, fetchurl, python }:

stdenv.mkDerivation rec {
  pname = "geos";
  version = "3.9.1";

  src = fetchurl {
    url = "https://download.osgeo.org/geos/${pname}-${version}.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.lgpl21Only;
  };
}