summary refs log tree commit diff
path: root/pkgs/development/libraries/libspatialite/default.nix
blob: eb3917b119281d5303334495878ebb4712958e66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, libxml2, sqlite, zlib, proj, geos }:

stdenv.mkDerivation rec {
  name = "libspatialite-4.2.0";

  src = fetchurl {
    url = "http://www.gaia-gis.it/gaia-sins/libspatialite-sources/${name}.tar.gz";
    sha256 = "0b9ipmp09y2ij7yajyjsh0zcwps8n5g88lzfzlkph33lail8l4wz";
  };

  buildInputs = [ pkgconfig libxml2 sqlite zlib proj geos ];

  configureFlags = "--disable-freexl";

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Extensible spatial index library in C++";
    homepage = https://www.gaia-gis.it/fossil/libspatialite;
    # They allow any of these
    license = with licenses; [ gpl2Plus lgpl21Plus mpl11 ];
    platforms = platforms.linux;
  };
}