nixpkgs/pkgs/development/libraries/geos/default.nix

21 lines
457 B
Nix
Raw Normal View History

2017-01-17 04:07:11 +00:00
{ stdenv, fetchurl, fetchpatch, python }:
2017-01-17 04:07:11 +00:00
stdenv.mkDerivation rec {
name = "geos-3.6.1";
src = fetchurl {
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
2017-01-17 04:07:11 +00:00
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
};
enableParallelBuilding = true;
2017-01-17 04:07:11 +00:00
buildInputs = [ python ];
meta = {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = http://geos.refractions.net/;
license = "GPL";
};
}