nixpkgs/pkgs/development/libraries/shapelib/default.nix

20 lines
501 B
Nix
Raw Normal View History

2017-03-17 18:05:34 +01:00
{ stdenv, fetchurl, proj }:
stdenv.mkDerivation rec {
name = "shapelib-1.4.1";
2017-03-17 18:05:34 +01:00
src = fetchurl {
url = "https://download.osgeo.org/shapelib/${name}.tar.gz";
sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
2017-03-17 18:05:34 +01: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 ];
};
}