My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libspatialindex/default.nix

20 lines
523 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libspatialindex";
version = "1.8.5";
src = fetchurl {
url = "https://download.osgeo.org/libspatialindex/spatialindex-src-${version}.tar.gz";
sha256 = "1vxzm7kczwnb6qdmc0hb00z8ykx11zk3sb68gc7rch4vrfi4dakw";
};
enableParallelBuilding = true;
meta = {
description = "Extensible spatial index library in C++";
homepage = "http://libspatialindex.github.io/";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
};
}