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