summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-06-01 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-06-01 04:20:00 +0000
commit127fcdd962f4ae5c48b86c86b50de86de9109bf4 (patch)
tree73c08353ca03ec0c8c410f38b3d570be9ebd2044
parente6123938cafa5f5a368090c68d9012adb980da5f (diff)
downloadnixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.tar
nixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.tar.gz
nixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.tar.bz2
nixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.tar.lz
nixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.tar.xz
nixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.tar.zst
nixpkgs-127fcdd962f4ae5c48b86c86b50de86de9109bf4.zip
postgresql13Packages.cstore_fdw: unbreak
-rw-r--r--pkgs/servers/sql/postgresql/ext/cstore_fdw.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix b/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix
index 2e248893631..c9f01190c91 100644
--- a/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix
+++ b/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "cstore_fdw";
-  version = "1.7.0";
+  version = "unstable-2022-03-08";
 
   nativeBuildInputs = [ protobufc ];
   buildInputs = [ postgresql ];
@@ -10,8 +10,8 @@ stdenv.mkDerivation rec {
   src = fetchFromGitHub {
     owner  = "citusdata";
     repo   = "cstore_fdw";
-    rev    = "refs/tags/v${version}";
-    sha256 = "129mpq8rq16jg7idh6c1j6nij64iywrs7wl3cn02bdb3h8f19z1b";
+    rev    = "90e22b62fbee6852529104fdd463f532cf7a3311";
+    sha256 = "sha256-02wcCqs8A5ZOZX080fgcNJTQrYQctnlwnA8+YPaRTZc=";
   };
 
   installPhase = ''
@@ -23,9 +23,9 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    broken      = true;
+    broken      = versionAtLeast postgresql.version "14";
     description = "Columnar storage for PostgreSQL";
-    homepage    = "https://www.citusdata.com/";
+    homepage    = "https://github.com/citusdata/cstore_fdw";
     maintainers = with maintainers; [ thoughtpolice ];
     platforms   = postgresql.meta.platforms;
     license     = licenses.asl20;