2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, python }:
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2017-01-17 04:07:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-05 03:06:04 +01:00
|
|
|
name = "geos-3.8.1";
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://download.osgeo.org/geos/${name}.tar.bz2";
|
2020-05-05 03:06:04 +01:00
|
|
|
sha256 = "1xqpmr10xi0n9sj47fbwc89qb0yr9imh4ybk0jsxpffy111syn22";
|
2009-03-06 23:21:28 +00:00
|
|
|
};
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2013-07-18 10:40:23 +01:00
|
|
|
enableParallelBuilding = true;
|
2007-12-03 16:01:51 +00:00
|
|
|
|
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 = stdenv.lib.optional stdenv.isAarch32 "--disable-inline";
|
|
|
|
|
2019-06-06 15:45:09 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 19:01:17 +01:00
|
|
|
description = "C++ port of the Java Topology Suite (JTS)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://trac.osgeo.org/geos";
|
2019-06-06 15:45:09 +01:00
|
|
|
license = licenses.lgpl21;
|
2007-12-03 16:01:51 +00:00
|
|
|
};
|
2008-12-20 01:20:35 +00:00
|
|
|
}
|