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:
20
pkgs/development/libraries/libspatialindex/default.nix
Normal file
20
pkgs/development/libraries/libspatialindex/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user