2017-03-17 17:05:34 +00:00
|
|
|
{ stdenv, fetchurl, proj }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 23:56:30 +00:00
|
|
|
name = "shapelib-1.4.1";
|
2017-03-17 17:05:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://download.osgeo.org/shapelib/${name}.tar.gz";
|
2018-02-27 23:56:30 +00:00
|
|
|
sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
|
2017-03-17 17:05:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ proj ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C Library for reading, writing and updating ESRI Shapefiles";
|
|
|
|
homepage = http://shapelib.maptools.org/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.ehmry ];
|
|
|
|
};
|
|
|
|
}
|