tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
geos: 3.5.0 -> 3.6.1
Robin Gloster
9 years ago
b13e77fc
3756edb1
+6
-13
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
geos
default.nix
+6
-13
pkgs/development/libraries/geos/default.nix
···
1
1
-
{ composableDerivation, fetchurl, python }:
1
1
+
{ stdenv, fetchurl, fetchpatch, python }:
2
2
3
3
-
let inherit (composableDerivation) edf; in
4
4
-
5
5
-
composableDerivation.composableDerivation {} rec {
6
6
-
7
7
-
flags =
8
8
-
# python and ruby untested
9
9
-
edf { name = "python"; enable = { buildInputs = [ python ]; }; };
10
10
-
# (if args.use_svn then ["libtool" "autoconf" "automake" "swig"] else [])
11
11
-
# // edf { name = "ruby"; enable = { buildInputs = [ ruby ]; };}
12
12
-
13
13
-
name = "geos-3.5.0";
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "geos-3.6.1";
14
5
15
6
src = fetchurl {
16
7
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
17
17
-
sha256 = "49982b23bcfa64a53333dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02";
8
8
+
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
18
9
};
19
10
20
11
enableParallelBuilding = true;
12
12
+
13
13
+
buildInputs = [ python ];
21
14
22
15
meta = {
23
16
description = "C++ port of the Java Topology Suite (JTS)";