summary refs log tree commit diff
path: root/pkgs/development/libraries/spatialite-tools/default.nix
blob: 83eef355f2db8622eb147596f442f5048da1ef3b (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
25
26
{ stdenv, fetchurl, pkgconfig, sqlite, expat, zlib, proj, geos, libspatialite, readosm }:

stdenv.mkDerivation rec {
  name = "spatialite-tools-4.1.1";

  src = fetchurl {
    url = "https://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/${name}.tar.gz";
    sha256 = "14aqmhvab63ydbb82fglsbig7jw1wmci8jjvci07aavdhvh1pyrv";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ sqlite expat zlib proj geos libspatialite readosm ];

  configureFlags = [ "--disable-freexl" ];

  enableParallelBuilding = true;

  NIX_LDFLAGS = "-lsqlite3";

  meta = {
    description = "A complete sqlite3-compatible CLI front-end for libspatialite";
    homepage = https://www.gaia-gis.it/fossil/spatialite-tools;
    license = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ];
    platforms = stdenv.lib.platforms.linux;
  };
}