2017-01-17 04:07:11 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, python }:
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2017-01-17 04:07:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "geos-3.6.1";
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
src = fetchurl {
|
2013-07-18 09:40:23 +00:00
|
|
|
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
|
2017-01-17 04:07:11 +00:00
|
|
|
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
|
2009-03-06 23:21:28 +00:00
|
|
|
};
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2013-07-18 09:40:23 +00: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 18:01:17 +00: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
|
|
|
}
|