nixpkgs/pkgs/development/libraries/geos/default.nix
R. RyanTM e3732f320b geos: 3.7.2 -> 3.7.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/geos/versions
2019-10-07 01:30:26 -07:00

21 lines
473 B
Nix

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