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

21 lines
473 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
2017-01-17 05:07:11 +01:00
stdenv.mkDerivation rec {
name = "geos-3.7.3";
src = fetchurl {
url = "https://download.osgeo.org/geos/${name}.tar.bz2";
sha256 = "0znaby3fs3fy7af5njrnmjnfsa80ac97fvamlnjiywddw3j5l0q2";
};
enableParallelBuilding = true;
2017-01-17 05:07:11 +01:00
buildInputs = [ python ];
2019-06-06 16:45:09 +02:00
meta = with stdenv.lib; {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = http://geos.refractions.net/;
2019-06-06 16:45:09 +02:00
license = licenses.lgpl21;
};
}