2017-01-16 20:07:11 -08:00
|
|
|
{ stdenv, fetchurl, fetchpatch, python }:
|
2007-12-03 08:01:51 -08:00
|
|
|
|
2017-01-16 20:07:11 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "geos-3.6.1";
|
2007-12-03 08:01:51 -08:00
|
|
|
|
2009-03-06 15:21:28 -08:00
|
|
|
src = fetchurl {
|
2013-07-18 02:40:23 -07:00
|
|
|
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
|
2017-01-16 20:07:11 -08:00
|
|
|
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
|
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 ];
|
|
|
|
|
2009-03-06 15:21:28 -08:00
|
|
|
meta = {
|
2010-07-28 11:01:17 -07:00
|
|
|
description = "C++ port of the Java Topology Suite (JTS)";
|
|
|
|
homepage = http://geos.refractions.net/;
|
|
|
|
license = "GPL";
|
2007-12-03 08:01:51 -08:00
|
|
|
};
|
2008-12-19 17:20:35 -08:00
|
|
|
}
|