about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/shapelib/default.nix
blob: 09d3efa64b2b5b0aa451924d6e279b9f4908a50c (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 = "https://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 ];
  };
}