summary refs log blame commit diff
path: root/pkgs/development/libraries/libspatialindex/default.nix
blob: d85c9e94ebdffe2f46d4286fe27c9ebf4b15f358 (plain) (tree)
1
2
3
4
5
6
7
8
9

                     
                         
 
                     

                            

                  
                                                                                          
                                                                    






                                                            
                                      
                                          

    
{ stdenv, fetchurl }:

let version = "1.8.5"; in

stdenv.mkDerivation {
  pname = "libspatialindex";
  inherit version;

  src = fetchurl {
    url = "https://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.unix;
  };
}