summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-12-08 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-12-08 04:20:00 -0500
commit2ca80a9baa59101fdfb929dbd80f9f5c5987db78 (patch)
treebe4caf0d9cb2e01081a45605952688ca3f9e1e6b /pkgs/servers/sql/postgresql/ext
parentd275ac8aa4ac912ef4f5074b0f1895ed8cacced8 (diff)
downloadnixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.tar
nixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.tar.gz
nixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.tar.bz2
nixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.tar.lz
nixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.tar.xz
nixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.tar.zst
nixpkgs-2ca80a9baa59101fdfb929dbd80f9f5c5987db78.zip
postgresqlPackages.pg_hll: 2.15 -> 2.15.1
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pg_hll.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pg_hll.nix b/pkgs/servers/sql/postgresql/ext/pg_hll.nix
index 28e3947f4b3..ab80cd1748c 100644
--- a/pkgs/servers/sql/postgresql/ext/pg_hll.nix
+++ b/pkgs/servers/sql/postgresql/ext/pg_hll.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "pg_hll";
-  version = "2.15";
+  version = "2.15.1";
 
   buildInputs = [ postgresql ];
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     owner  = "citusdata";
     repo   = "postgresql-hll";
     rev    = "refs/tags/v${version}";
-    sha256 = "19d50cvp3byjyr2dc5rjmyrlp97bb19mz0ykr3w4iyc6qi5d5qj2";
+    sha256 = "17lg05rw7299fvfhdzvznr692c21s5qar1wzzvgwfv7afv6xzr3y";
   };
 
   installPhase = ''
@@ -23,7 +23,8 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "HyperLogLog for PostgreSQL";
-    homepage    = "https://www.citusdata.com/";
+    homepage    = "https://github.com/citusdata/postgresql-hll";
+    changelog   = "https://github.com/citusdata/postgresql-hll/blob/v${version}/CHANGELOG.md";
     maintainers = with maintainers; [ thoughtpolice ];
     platforms   = postgresql.meta.platforms;
     license     = licenses.asl20;