2019-03-03 00:03:14 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2017-03-17 17:05:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-03 00:03:14 +00:00
|
|
|
name = "shapelib-1.5.0";
|
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";
|
2019-03-03 00:03:14 +00:00
|
|
|
sha256 = "1qfsgb8b3yiqwvr6h9m81g6k9fjhfys70c22p7kzkbick20a9h0z";
|
2017-03-17 17:05:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|