chatdesk-ui/postgres_15.8.1.044/nix/ext/pg_regress.nix

24 lines
520 B
Nix

{ lib
, stdenv
, postgresql
}:
stdenv.mkDerivation {
pname = "pg_regress";
version = postgresql.version;
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin
cp ${postgresql}/lib/pgxs/src/test/regress/pg_regress $out/bin/
'';
meta = with lib; {
description = "Regression testing tool for PostgreSQL";
homepage = "https://www.postgresql.org/";
maintainers = with maintainers; [ samrose ];
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
};
}