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