shapelib: 1.4.1 -> 1.5.0

https://lists.osgeo.org/pipermail/shapelib/2019-February/000647.html

* s in 1.5.0 notes, no longer need 'proj' dep (so drop)
This commit is contained in:
Will Dietz 2019-03-02 18:03:14 -06:00
parent 7874ca5b61
commit bafff55e78

View File

@ -1,15 +1,13 @@
{ stdenv, fetchurl, proj }:
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "shapelib-1.4.1";
name = "shapelib-1.5.0";
src = fetchurl {
url = "https://download.osgeo.org/shapelib/${name}.tar.gz";
sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
sha256 = "1qfsgb8b3yiqwvr6h9m81g6k9fjhfys70c22p7kzkbick20a9h0z";
};
buildInputs = [ proj ];
meta = with stdenv.lib; {
description = "C Library for reading, writing and updating ESRI Shapefiles";
homepage = http://shapelib.maptools.org/;