postgresql13Packages.cstore_fdw: unbreak

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