nixpkgs/pkgs/development/libraries/libspatialindex/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

22 lines
546 B
Nix

{ stdenv, fetchurl }:
let version = "1.8.5"; in
stdenv.mkDerivation rec {
name = "libspatialindex-${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;
};
}