nixpkgs/pkgs/development/libraries/geos/default.nix
R. RyanTM 98a4afc505 geos: 3.6.3 -> 3.7.0
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
2018-09-20 14:29:34 -07:00

21 lines
446 B
Nix

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