fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, sqlite, expat, zlib, proj, geos, libspatialite, readosm }:
2
3stdenv.mkDerivation rec {
4 name = "spatialite-tools-4.1.1";
5
6 src = fetchurl {
7 url = "http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/${name}.tar.gz";
8 sha256 = "14aqmhvab63ydbb82fglsbig7jw1wmci8jjvci07aavdhvh1pyrv";
9 };
10
11 buildInputs = [ pkgconfig sqlite expat zlib proj geos libspatialite readosm ];
12
13 configureFlags = "--disable-freexl";
14
15 enableParallelBuilding = true;
16
17 meta = {
18 description = "A complete sqlite3-compatible CLI front-end for libspatialite";
19 homepage = https://www.gaia-gis.it/fossil/spatialite-tools;
20 license = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ];
21 platforms = stdenv.lib.platforms.linux;
22 };
23}