5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, curl
|
|
, fetchFromGitHub
|
|
, lz4
|
|
, postgresql
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "citus";
|
|
version = "12.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "citusdata";
|
|
repo = "citus";
|
|
rev = "v${version}";
|
|
hash = "sha256-0uYNMLAYigtGlDRvOEkQeC5i58QfXcdSVjTQwWVFX+8=";
|
|
};
|
|
|
|
buildInputs = [
|
|
curl
|
|
lz4
|
|
postgresql
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -t $out/lib src/backend/columnar/citus_columnar${postgresql.dlSuffix}
|
|
install -D -t $out/share/postgresql/extension src/backend/columnar/build/sql/*.sql
|
|
install -D -t $out/share/postgresql/extension src/backend/columnar/*.control
|
|
|
|
install -D -t $out/lib src/backend/distributed/citus${postgresql.dlSuffix}
|
|
install -D -t $out/share/postgresql/extension src/backend/distributed/build/sql/*.sql
|
|
install -D -t $out/share/postgresql/extension src/backend/distributed/*.control
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
# "Our soft policy for Postgres version compatibility is to support Citus'
|
|
# latest release with Postgres' 3 latest releases."
|
|
# https://www.citusdata.com/updates/v12-0/#deprecated_features
|
|
broken = versionOlder postgresql.version "14";
|
|
description = "Distributed PostgreSQL as an extension";
|
|
homepage = "https://www.citusdata.com/";
|
|
changelog = "https://github.com/citusdata/citus/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ ];
|
|
inherit (postgresql.meta) platforms;
|
|
};
|
|
}
|