postgresql13Packages.cstore_fdw: unbreak

+5 -5
+5 -5
pkgs/servers/sql/postgresql/ext/cstore_fdw.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cstore_fdw"; 5 - version = "1.7.0"; 6 7 nativeBuildInputs = [ protobufc ]; 8 buildInputs = [ postgresql ]; ··· 10 src = fetchFromGitHub { 11 owner = "citusdata"; 12 repo = "cstore_fdw"; 13 - rev = "refs/tags/v${version}"; 14 - sha256 = "129mpq8rq16jg7idh6c1j6nij64iywrs7wl3cn02bdb3h8f19z1b"; 15 }; 16 17 installPhase = '' ··· 23 ''; 24 25 meta = with lib; { 26 - broken = true; 27 description = "Columnar storage for PostgreSQL"; 28 - homepage = "https://www.citusdata.com/"; 29 maintainers = with maintainers; [ thoughtpolice ]; 30 platforms = postgresql.meta.platforms; 31 license = licenses.asl20;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cstore_fdw"; 5 + version = "unstable-2022-03-08"; 6 7 nativeBuildInputs = [ protobufc ]; 8 buildInputs = [ postgresql ]; ··· 10 src = fetchFromGitHub { 11 owner = "citusdata"; 12 repo = "cstore_fdw"; 13 + rev = "90e22b62fbee6852529104fdd463f532cf7a3311"; 14 + sha256 = "sha256-02wcCqs8A5ZOZX080fgcNJTQrYQctnlwnA8+YPaRTZc="; 15 }; 16 17 installPhase = '' ··· 23 ''; 24 25 meta = with lib; { 26 + broken = versionAtLeast postgresql.version "14"; 27 description = "Columnar storage for PostgreSQL"; 28 + homepage = "https://github.com/citusdata/cstore_fdw"; 29 maintainers = with maintainers; [ thoughtpolice ]; 30 platforms = postgresql.meta.platforms; 31 license = licenses.asl20;