summary refs log tree commit diff
path: root/pkgs/development/libraries/geos
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-01-17 05:07:11 +0100
committerRobin Gloster <mail@glob.in>2017-01-25 20:12:35 +0100
commitb13e77fc3371cb3280ab0bcdb4825922d260c92b (patch)
tree00257aab2a6fd1ec7c6293b020f9e9cd743bdb45 /pkgs/development/libraries/geos
parent3756edb1096112ead131754b0aa4745f60773d28 (diff)
downloadnixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.tar
nixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.tar.gz
nixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.tar.bz2
nixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.tar.lz
nixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.tar.xz
nixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.tar.zst
nixlib-b13e77fc3371cb3280ab0bcdb4825922d260c92b.zip
geos: 3.5.0 -> 3.6.1
Diffstat (limited to 'pkgs/development/libraries/geos')
-rw-r--r--pkgs/development/libraries/geos/default.nix19
1 files changed, 6 insertions, 13 deletions
diff --git a/pkgs/development/libraries/geos/default.nix b/pkgs/development/libraries/geos/default.nix
index d63a1bb75726..de7111f6be36 100644
--- a/pkgs/development/libraries/geos/default.nix
+++ b/pkgs/development/libraries/geos/default.nix
@@ -1,24 +1,17 @@
-{ composableDerivation, fetchurl, python }:
+{ stdenv, fetchurl, fetchpatch, python }:
 
-let inherit (composableDerivation) edf; in
-
-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";
+stdenv.mkDerivation rec {
+  name = "geos-3.6.1";
 
   src = fetchurl {
     url = "http://download.osgeo.org/geos/${name}.tar.bz2";
-    sha256 = "49982b23bcfa64a53333dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02";
+    sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
   };
 
   enableParallelBuilding = true;
 
+  buildInputs = [ python ];
+
   meta = {
     description = "C++ port of the Java Topology Suite (JTS)";
     homepage = http://geos.refractions.net/;