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