nixpkgs/pkgs/servers/sql/postgresql/cstore_fdw/default.nix
R. RyanTM e0eb7d9ed7 cstore_fdw: 1.6.0 -> 1.6.1 (#44792)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cstore_fdw/versions.
2018-08-13 14:35:53 +02:00

33 lines
825 B
Nix

{ stdenv, fetchFromGitHub, postgresql, protobufc }:
stdenv.mkDerivation rec {
name = "cstore_fdw-${version}";
version = "1.6.1";
nativeBuildInputs = [ protobufc ];
buildInputs = [ postgresql ];
src = fetchFromGitHub {
owner = "citusdata";
repo = "cstore_fdw";
rev = "refs/tags/v${version}";
sha256 = "1cpkpbv4c82l961anzwp74r1jc8f0n5z5cvwy4lyrqg5jr501nd4";
};
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;
};
}