2010-07-28 20:01:17 +02:00
|
|
|
{ composableDerivation, fetchurl, python }:
|
2007-12-03 17:01:51 +01:00
|
|
|
|
2010-07-28 20:01:17 +02:00
|
|
|
let inherit (composableDerivation) edf; in
|
|
|
|
|
2013-07-18 11:40:23 +02:00
|
|
|
composableDerivation.composableDerivation {} rec {
|
2008-12-20 02:20:35 +01:00
|
|
|
|
2009-03-07 00:21:28 +01: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 02:20:35 +01:00
|
|
|
|
2013-07-18 11:40:23 +02:00
|
|
|
name = "geos-3.3.8";
|
2007-12-03 17:01:51 +01:00
|
|
|
|
2009-03-07 00:21:28 +01:00
|
|
|
src = fetchurl {
|
2013-07-18 11:40:23 +02:00
|
|
|
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
|
|
|
|
sha256 = "0fshz8s9g610ycl4grrmcdcxb01aqpc6qac3x3jjik0vlz8x9v7b";
|
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
|
|
|
|
2009-03-07 00:21:28 +01:00
|
|
|
meta = {
|
2010-07-28 20:01:17 +02:00
|
|
|
description = "C++ port of the Java Topology Suite (JTS)";
|
|
|
|
homepage = http://geos.refractions.net/;
|
|
|
|
license = "GPL";
|
2007-12-03 17:01:51 +01:00
|
|
|
};
|
2008-12-20 02:20:35 +01:00
|
|
|
}
|