3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/geos/default.nix

24 lines
584 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, python }:
2017-01-17 04:07:11 +00:00
stdenv.mkDerivation rec {
2021-01-29 19:57:19 +00:00
name = "geos-3.9.0";
src = fetchurl {
url = "https://download.osgeo.org/geos/${name}.tar.bz2";
2021-01-29 19:57:19 +00:00
sha256 = "sha256-vYCCzxL0XydjAZPHi9taPLqEe4HnKyAmg1bCpPwGUmk=";
};
enableParallelBuilding = true;
2017-01-17 04:07:11 +00:00
buildInputs = [ python ];
2020-08-08 18:12:13 +01:00
# https://trac.osgeo.org/geos/ticket/993
configureFlags = lib.optional stdenv.isAarch32 "--disable-inline";
2020-08-08 18:12:13 +01:00
meta = with lib; {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = "https://trac.osgeo.org/geos";
2019-06-06 15:45:09 +01:00
license = licenses.lgpl21;
};
}