2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-03-17 10:05:34 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-02 16:03:14 -08:00
|
|
|
name = "shapelib-1.5.0";
|
2017-03-17 10:05:34 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://download.osgeo.org/shapelib/${name}.tar.gz";
|
2019-03-02 16:03:14 -08:00
|
|
|
sha256 = "1qfsgb8b3yiqwvr6h9m81g6k9fjhfys70c22p7kzkbick20a9h0z";
|
2017-03-17 10:05:34 -07:00
|
|
|
};
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2017-03-17 10:05:34 -07:00
|
|
|
description = "C Library for reading, writing and updating ESRI Shapefiles";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://shapelib.maptools.org/";
|
2017-03-17 10:05:34 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.ehmry ];
|
|
|
|
};
|
|
|
|
}
|