nixpkgs/pkgs/development/libraries/libspatialindex/default.nix
Lluís Batlle i Rossell 328774ab1f Updating qgis (1.8.0 & geos (3.3.8).
I also add libspatialindex and libspatialite, to get the latest qgis building.
2013-07-18 11:43:01 +02:00

21 lines
484 B
Nix

{ stdenv, fetchurl }:
let version = "1.8.1"; in
stdenv.mkDerivation rec {
name = "libspatialindex-${version}";
src = fetchurl {
url = "http://download.osgeo.org/libspatialindex/spatialindex-src-${version}.tar.gz";
sha256 = "1ay1kxn4baccd0cqx466v7fn8c8gcfbhlnd5mbdnd7s4aw0ix88j";
};
enableParallelBuilding = true;
meta = {
description = "Extensible spatial index library in C++";
homepage = http://libspatialindex.github.io/;
license = "MIT";
};
}