postgresql16Packages.pg_hll: 2.17 -> 2.18

Diff: https://github.com/citusdata/postgresql-hll/compare/refs/tags/v2.17...refs/tags/v2.18

Changelog: https://github.com/citusdata/postgresql-hll/blob/v2.18/CHANGELOG.md

+7 -9
+7 -9
pkgs/servers/sql/postgresql/ext/pg_hll.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pg_hll"; 5 - version = "2.17"; 6 7 buildInputs = [ postgresql ]; 8 ··· 10 owner = "citusdata"; 11 repo = "postgresql-hll"; 12 rev = "refs/tags/v${version}"; 13 - sha256 = "sha256-KYpyidy7t7v9puNjjmif16uz383zlo521luZpH3w/1I="; 14 }; 15 16 installPhase = '' 17 - mkdir -p $out/{lib,share/postgresql/extension} 18 - 19 - cp *.so $out/lib 20 - cp *.sql $out/share/postgresql/extension 21 - cp *.control $out/share/postgresql/extension 22 - ''; 23 24 meta = with lib; { 25 description = "HyperLogLog for PostgreSQL"; 26 homepage = "https://github.com/citusdata/postgresql-hll"; 27 - changelog = "https://github.com/citusdata/postgresql-hll/raw/v${version}/CHANGELOG.md"; 28 maintainers = with maintainers; [ thoughtpolice ]; 29 platforms = postgresql.meta.platforms; 30 license = licenses.asl20;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pg_hll"; 5 + version = "2.18"; 6 7 buildInputs = [ postgresql ]; 8 ··· 10 owner = "citusdata"; 11 repo = "postgresql-hll"; 12 rev = "refs/tags/v${version}"; 13 + hash = "sha256-Latdxph1Ura8yKEokEjalJ+/GY+pAKOT3GXjuLprj6c="; 14 }; 15 16 installPhase = '' 17 + install -D -t $out/lib hll${postgresql.dlSuffix} 18 + install -D -t $out/share/postgresql/extension *.sql 19 + install -D -t $out/share/postgresql/extension *.control 20 + ''; 21 22 meta = with lib; { 23 description = "HyperLogLog for PostgreSQL"; 24 homepage = "https://github.com/citusdata/postgresql-hll"; 25 + changelog = "https://github.com/citusdata/postgresql-hll/blob/v${version}/CHANGELOG.md"; 26 maintainers = with maintainers; [ thoughtpolice ]; 27 platforms = postgresql.meta.platforms; 28 license = licenses.asl20;