summary refs log tree commit diff
path: root/pkgs/development/libraries/libspatialindex/default.nix
blob: 660d7e16310f6d1466c58269f4352260b87e88fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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 = stdenv.lib.licenses.mit;
    platforms = stdenv.lib.platforms.linux;
  };
}