30 lines
826 B
Nix
30 lines
826 B
Nix
|
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "temporal_tables";
|
||
|
version = "1.2.2";
|
||
|
|
||
|
buildInputs = [ postgresql ];
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "arkhipov";
|
||
|
repo = "temporal_tables";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-7+DCSPAPhsokWDq/5IXNhd7jY6FfzxxUjlsg/VJeD3k=";
|
||
|
};
|
||
|
|
||
|
installPhase = ''
|
||
|
install -D -t $out/lib temporal_tables${postgresql.dlSuffix}
|
||
|
install -D -t $out/share/postgresql/extension *.sql
|
||
|
install -D -t $out/share/postgresql/extension *.control
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Temporal Tables PostgreSQL Extension";
|
||
|
homepage = "https://github.com/arkhipov/temporal_tables";
|
||
|
maintainers = with maintainers; [ ggpeti ];
|
||
|
platforms = postgresql.meta.platforms;
|
||
|
license = licenses.bsd2;
|
||
|
};
|
||
|
}
|