Updating qgis (1.8.0 & geos (3.3.8).

I also add libspatialindex and libspatialite, to get the latest qgis building.
This commit is contained in:
Lluís Batlle i Rossell
2013-07-18 11:40:23 +02:00
parent d898762d8b
commit 328774ab1f
6 changed files with 69 additions and 59 deletions

View File

@@ -0,0 +1,20 @@
{ 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";
};
}