nixpkgs/pkgs/development/libraries/libspatialindex/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.0 KiB
Nix
Raw Normal View History

2022-09-02 07:18:02 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake }:
2022-09-02 07:18:02 +00:00
stdenv.mkDerivation (finalAttrs: {
2019-08-13 21:52:01 +00:00
pname = "libspatialindex";
2022-09-02 07:18:02 +00:00
version = "1.9.3";
2022-09-02 07:18:02 +00:00
src = fetchFromGitHub {
owner = "libspatialindex";
repo = "libspatialindex";
rev = finalAttrs.version;
hash = "sha256-zsvS0IkCXyuNLCQpccKdAsFKoq0l+y66ifXlTHLNTkc=";
};
2022-09-02 07:18:02 +00:00
patches = [
# Allow building static libs
(fetchpatch {
name = "fix-static-lib-build.patch";
url = "https://github.com/libspatialindex/libspatialindex/commit/caee28d84685071da3ff3a4ea57ff0b6ae64fc87.patch";
hash = "sha256-nvTW/t9tw1ZLeycJY8nj7rQgZogxQb765Ca2b9NDvRo=";
})
];
2022-09-02 07:18:02 +00:00
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DSIDX_BUILD_TESTS=${if finalAttrs.finalPackage.doCheck then "ON" else "OFF"}"
2022-09-02 07:18:02 +00:00
];
doCheck = true;
meta = with lib; {
description = "Extensible spatial index library in C++";
2022-09-02 07:18:02 +00:00
homepage = "https://libspatialindex.org";
license = licenses.mit;
maintainers = teams.geospatial.members;
2022-09-02 07:18:02 +00:00
platforms = platforms.unix;
};
2022-09-02 07:18:02 +00:00
})