geos: 3.5.0 -> 3.6.1
This commit is contained in:
parent
3756edb109
commit
b13e77fc33
|
@ -1,24 +1,17 @@
|
||||||
{ composableDerivation, fetchurl, python }:
|
{ stdenv, fetchurl, fetchpatch, python }:
|
||||||
|
|
||||||
let inherit (composableDerivation) edf; in
|
stdenv.mkDerivation rec {
|
||||||
|
name = "geos-3.6.1";
|
||||||
composableDerivation.composableDerivation {} rec {
|
|
||||||
|
|
||||||
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 ]; };}
|
|
||||||
|
|
||||||
name = "geos-3.5.0";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
|
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
|
||||||
sha256 = "49982b23bcfa64a53333dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02";
|
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
buildInputs = [ python ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "C++ port of the Java Topology Suite (JTS)";
|
description = "C++ port of the Java Topology Suite (JTS)";
|
||||||
homepage = http://geos.refractions.net/;
|
homepage = http://geos.refractions.net/;
|
||||||
|
|
Loading…
Reference in New Issue