2018-04-02 14:12:16 +02:00
|
|
|
{ stdenv, fetchFromGitHub, postgresql, protobufc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cstore_fdw-${version}";
|
2018-09-18 18:26:08 +02:00
|
|
|
version = "1.6.2";
|
2018-04-02 14:12:16 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ protobufc ];
|
|
|
|
buildInputs = [ postgresql ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "citusdata";
|
|
|
|
repo = "cstore_fdw";
|
|
|
|
rev = "refs/tags/v${version}";
|
2018-09-18 18:26:08 +02:00
|
|
|
sha256 = "0kdmzpbhhjdg4p6i5963h7qbs88jzgpqc52gz450h7hwb9ckpv74";
|
2018-04-02 14:12:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-08-15 00:36:59 +02:00
|
|
|
mkdir -p $out/{lib,share/postgresql/extension}
|
2018-04-02 14:12:16 +02:00
|
|
|
|
|
|
|
cp *.so $out/lib
|
2019-07-01 16:18:03 +02:00
|
|
|
cp *.sql $out/share/postgresql/extension
|
|
|
|
cp *.control $out/share/postgresql/extension
|
2018-04-02 14:12:16 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Columnar storage for PostgreSQL";
|
|
|
|
homepage = https://www.citusdata.com/;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2019-05-06 13:00:00 +02:00
|
|
|
platforms = postgresql.meta.platforms;
|
2018-04-02 14:12:16 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|