lol

geos: 3.5.0 -> 3.6.1

+6 -13
+6 -13
pkgs/development/libraries/geos/default.nix
··· 1 - { composableDerivation, fetchurl, python }: 1 + { stdenv, fetchurl, fetchpatch, python }: 2 2 3 - let inherit (composableDerivation) edf; in 4 - 5 - composableDerivation.composableDerivation {} rec { 6 - 7 - flags = 8 - # python and ruby untested 9 - edf { name = "python"; enable = { buildInputs = [ python ]; }; }; 10 - # (if args.use_svn then ["libtool" "autoconf" "automake" "swig"] else []) 11 - # // edf { name = "ruby"; enable = { buildInputs = [ ruby ]; };} 12 - 13 - name = "geos-3.5.0"; 3 + stdenv.mkDerivation rec { 4 + name = "geos-3.6.1"; 14 5 15 6 src = fetchurl { 16 7 url = "http://download.osgeo.org/geos/${name}.tar.bz2"; 17 - sha256 = "49982b23bcfa64a53333dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02"; 8 + sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja"; 18 9 }; 19 10 20 11 enableParallelBuilding = true; 12 + 13 + buildInputs = [ python ]; 21 14 22 15 meta = { 23 16 description = "C++ port of the Java Topology Suite (JTS)";