2010-07-28 18:01:17 +00:00
|
|
|
{ composableDerivation, fetchurl, python }:
|
2007-12-03 16:01:51 +00:00
|
|
|
|
2010-07-28 18:01:17 +00:00
|
|
|
let inherit (composableDerivation) edf; in
|
|
|
|
|
2013-07-18 09:40:23 +00:00
|
|
|
composableDerivation.composableDerivation {} rec {
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
flags =
|
|
|
|
# python and ruby untested
|
|
|
|
edf { name = "python"; enable = { buildInputs = [ python ]; }; };
|
|
|
|
# (if args.use_svn then ["libtool" "autoconf" "automake" "swig"] else [])
|
|
|
|
# // edf { name = "ruby"; enable = { buildInputs = [ ruby ]; };}
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2015-09-10 10:17:06 +00:00
|
|
|
name = "geos-3.5.0";
|
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";
|
2015-09-10 10:17:06 +00:00
|
|
|
sha256 = "49982b23bcfa64a53333dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02";
|
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
|
|
|
|
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
|
|
|
}
|