Add spatialite-tools and its missing dependency (readosm)
This commit is contained in:
committed by
Michael Raskin
parent
4cf2f41f01
commit
87862a003b
@@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, expat, zlib, geos, libspatialite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "readosm-1.0.0b";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.gaia-gis.it/gaia-sins/readosm-sources/${name}.tar.gz";
|
||||
sha256 = "042pv31smc7l6y111rvp0hza5sw86wa8ldg2jyq78xgwzcbhszpd";
|
||||
};
|
||||
|
||||
buildInputs = [ expat zlib geos libspatialite ];
|
||||
|
||||
configureFlags = "--disable-freexl";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "An open source library to extract valid data from within an Open Street Map input file";
|
||||
homepage = https://www.gaia-gis.it/fossil/readosm;
|
||||
license = [ "GPLv2+" "LGPLv2+" "MPL1.1" ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user