about summary refs log tree commit diff
path: root/pkgs/development/libraries/shapelib/default.nix
blob: 3234d1bb89bfe163589759e77879c864cc5fda20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, proj }:

stdenv.mkDerivation rec {
  name = "shapelib-1.4.1";

  src = fetchurl {
    url = "http://download.osgeo.org/shapelib/${name}.tar.gz";
    sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
  };

  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 ];
  };
}