nixpkgs-suyu/pkgs/servers/sql/postgresql/cstore_fdw/default.nix
Austin Seipp 030e90454e cstore_fdw: init at 1.6.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-02 15:30:46 -05:00

32 lines
825 B
Nix

{ stdenv, fetchFromGitHub, postgresql, protobufc }:
stdenv.mkDerivation rec {
name = "cstore_fdw-${version}";
version = "1.6.0";
nativeBuildInputs = [ protobufc ];
buildInputs = [ postgresql ];
src = fetchFromGitHub {
owner = "citusdata";
repo = "cstore_fdw";
rev = "refs/tags/v${version}";
sha256 = "08jbx4hs2r742flilydp0ajjwv8ffnvq82nidh48irrfa4i7n0l0";
};
installPhase = ''
mkdir -p $out/{lib,share/extension}
cp *.so $out/lib
cp *.sql $out/share/extension
cp *.control $out/share/extension
'';
meta = with stdenv.lib; {
description = "Columnar storage for PostgreSQL";
homepage = https://www.citusdata.com/;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux;
license = licenses.asl20;
};
}