Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
abseil-cpp,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
lib,
|
|
pkg-config,
|
|
openssl,
|
|
}:
|
|
|
|
let
|
|
cxxStandard = "17";
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "s2geometry";
|
|
version = "0.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "s2geometry";
|
|
tag = "v${finalAttrs.version}";
|
|
sha256 = "sha256-stH1iO4AEL+VZizntUzhvADNOKX333o3QSOz+WOBZ5Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeFeature "CMAKE_CXX_STANDARD" cxxStandard)
|
|
# incompatible with our version of gtest
|
|
(lib.cmakeBool "BUILD_TESTS" false)
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
(abseil-cpp.override { inherit cxxStandard; })
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/google/s2geometry/releases/tag/v${finalAttrs.version}";
|
|
description = "Computational geometry and spatial indexing on the sphere";
|
|
homepage = "http://s2geometry.io/";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.Thra11 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|