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

h3: enable on darwin

authored by

Domen Kožar and committed by
GitHub
273b7640 37f1ca73

+5 -2
+5 -2
pkgs/development/misc/h3/default.nix
··· 1 - { lib, stdenv 2 , cmake 3 , fetchFromGitHub 4 }: ··· 22 ]; 23 24 meta = with lib; { 25 - homepage = "https://github.com/uber/h3"; 26 description = "Hexagonal hierarchical geospatial indexing system"; 27 license = licenses.asl20; 28 maintainers = [ maintainers.kalbasit ]; 29 }; 30 }
··· 1 + { lib 2 + , stdenv 3 , cmake 4 , fetchFromGitHub 5 }: ··· 23 ]; 24 25 meta = with lib; { 26 + homepage = "https://h3geo.org/"; 27 description = "Hexagonal hierarchical geospatial indexing system"; 28 license = licenses.asl20; 29 + changelog = "https://github.com/uber/h3/raw/v${version}/CHANGELOG.md"; 30 + platforms = platforms.all; 31 maintainers = [ maintainers.kalbasit ]; 32 }; 33 }