nixpkgs/pkgs/development/libraries/libspatialindex/default.nix
Ryan Mulligan 8ce11ae216 libspatialindex: 1.8.1 -> 1.8.5
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.8.5 with grep in /nix/store/37qfplsqfz7lq058pg2cvvm592yzvvf9-libspatialindex-1.8.5
- found 1.8.5 in filename of file in /nix/store/37qfplsqfz7lq058pg2cvvm592yzvvf9-libspatialindex-1.8.5
2018-02-26 21:07:03 -08:00

22 lines
546 B
Nix

{ stdenv, fetchurl }:
let version = "1.8.5"; in
stdenv.mkDerivation rec {
name = "libspatialindex-${version}";
src = fetchurl {
url = "http://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 = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
};
}