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
-
{ composableDerivation, fetchurl, python }:
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";
14
15
src = fetchurl {
16
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
17
-
sha256 = "49982b23bcfa64a53333dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02";
18
};
19
20
enableParallelBuilding = true;
0
0
21
22
meta = {
23
description = "C++ port of the Java Topology Suite (JTS)";
···
1
+
{ stdenv, fetchurl, fetchpatch, python }:
2
3
+
stdenv.mkDerivation rec {
4
+
name = "geos-3.6.1";
0
0
0
0
0
0
0
0
0
5
6
src = fetchurl {
7
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
8
+
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
9
};
10
11
enableParallelBuilding = true;
12
+
13
+
buildInputs = [ python ];
14
15
meta = {
16
description = "C++ port of the Java Topology Suite (JTS)";