mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
postgresql13Packages.cstore_fdw: unbreak
This commit is contained in:
parent
e6123938ca
commit
127fcdd962
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue