a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
31 lines
827 B
Nix
31 lines
827 B
Nix
{ lib, stdenv, fetchFromGitHub, libkrb5, openssl, postgresql }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pgaudit";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pgaudit";
|
|
repo = "pgaudit";
|
|
rev = version;
|
|
hash = "sha256-8pShPr4HJaJQPjW1iPJIpj3CutTx8Tgr+rOqoXtgCcw=";
|
|
};
|
|
|
|
buildInputs = [ libkrb5 openssl postgresql ];
|
|
|
|
makeFlags = [ "USE_PGXS=1" ];
|
|
|
|
installPhase = ''
|
|
install -D -t $out/lib *.so
|
|
install -D -t $out/share/postgresql/extension *.sql
|
|
install -D -t $out/share/postgresql/extension *.control
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open Source PostgreSQL Audit Logging";
|
|
homepage = "https://github.com/pgaudit/pgaudit";
|
|
maintainers = with maintainers; [ idontgetoutmuch ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.postgresql;
|
|
};
|
|
}
|