a2c1a90f76
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. These checks were done: - built on NixOS - ran ‘/nix/store/17821mvnx0ilvicbzxvli6jq58fg7yy6-geos-3.6.2/bin/geos-config --version’ and found version 3.6.2 - found 3.6.2 with grep in /nix/store/17821mvnx0ilvicbzxvli6jq58fg7yy6-geos-3.6.2 - directory tree listing: https://gist.github.com/bf03d4beea8e52684689747456f95948
21 lines
457 B
Nix
21 lines
457 B
Nix
{ stdenv, fetchurl, fetchpatch, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "geos-3.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
|
|
sha256 = "0ak5szby29l9l0vy43dm5z2g92xzdky20q1gc1kah1fnhkgi6nh4";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [ python ];
|
|
|
|
meta = {
|
|
description = "C++ port of the Java Topology Suite (JTS)";
|
|
homepage = http://geos.refractions.net/;
|
|
license = "GPL";
|
|
};
|
|
}
|