Merge pull request #56803 from dtzWill/update/shapelib-1.5.0

shapelib: 1.4.1 -> 1.5.0
This commit is contained in:
Will Dietz 2019-03-07 15:12:03 -06:00 committed by GitHub
commit c42b570101
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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/;