mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
708 B
Nix
24 lines
708 B
Nix
{ stdenv, fetchurl, expat, zlib, geos, libspatialite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "readosm-1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.gaia-gis.it/gaia-sins/readosm-sources/${name}.tar.gz";
|
|
sha256 = "1v20pnda67imjd70fn0zw30aar525xicy3d3v49md5cvqklws265";
|
|
};
|
|
|
|
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 = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|