Merge pull request #139953 from marsam/h3-meta-field

h3: enable on darwin
This commit is contained in:
Domen Kožar 2021-09-29 14:14:58 -05:00 committed by GitHub
commit 273b764044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, cmake
, fetchFromGitHub
}:
@ -22,9 +23,11 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
homepage = "https://github.com/uber/h3";
homepage = "https://h3geo.org/";
description = "Hexagonal hierarchical geospatial indexing system";
license = licenses.asl20;
changelog = "https://github.com/uber/h3/raw/v${version}/CHANGELOG.md";
platforms = platforms.all;
maintainers = [ maintainers.kalbasit ];
};
}