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

21 lines
472 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
2017-01-17 04:07:11 +00:00
stdenv.mkDerivation rec {
name = "geos-3.8.0";
src = fetchurl {
url = "https://download.osgeo.org/geos/${name}.tar.bz2";
sha256 = "1mb2v9fy1gnbjhcgv0xny11ggfb17vkzsajdyibigwsxr4ylq4cr";
};
enableParallelBuilding = true;
2017-01-17 04:07:11 +00:00
buildInputs = [ python ];
2019-06-06 14:45:09 +00:00
meta = with stdenv.lib; {
description = "C++ port of the Java Topology Suite (JTS)";
2019-12-07 12:47:07 +00:00
homepage = https://trac.osgeo.org/geos;
2019-06-06 14:45:09 +00:00
license = licenses.lgpl21;
};
}