nixpkgs/pkgs/development/misc/h3/default.nix

31 lines
604 B
Nix
Raw Normal View History

2019-07-17 00:01:33 +00:00
{ stdenv
, cmake
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "h3";
2020-10-18 11:12:51 +00:00
version = "3.7.1";
2019-07-17 00:01:33 +00:00
src = fetchFromGitHub {
owner = "uber";
repo = "h3";
rev = "v${version}";
2020-10-18 11:12:51 +00:00
sha256 = "1ccyzbvbacf0bl9av4yp15zmhiqr3679nnbab11yrhxm9csyal16";
2019-07-17 00:01:33 +00:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DENABLE_LINTING=OFF"
2019-07-17 00:01:33 +00:00
];
meta = with stdenv.lib; {
homepage = "https://github.com/uber/h3";
description = "Hexagonal hierarchical geospatial indexing system";
license = licenses.asl20;
maintainers = [ maintainers.kalbasit ];
};
}