nixpkgs/pkgs/development/libraries/geos/default.nix
R. RyanTM 97bed5c787 geos: 3.7.1 -> 3.7.2
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-05-05 01:26:40 -07:00

21 lines
446 B
Nix

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