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 {
|
2018-12-16 07:08:58 +00:00
|
|
|
name = "geos-3.7.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";
|
2018-12-16 07:08:58 +00:00
|
|
|
sha256 = "1312m02xk4sp6f1xdpb9w0ic0zbxg90p5y66qnwidl5fksscf1h0";
|
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 ];
|
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
meta = {
|
2010-07-28 19:01:17 +01:00
|
|
|
description = "C++ port of the Java Topology Suite (JTS)";
|
|
|
|
homepage = http://geos.refractions.net/;
|
|
|
|
license = "GPL";
|
2007-12-03 16:01:51 +00:00
|
|
|
};
|
2008-12-20 01:20:35 +00:00
|
|
|
}
|