Files
nixpkgs/pkgs/by-name/po/postgresqlTestHook/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
306 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
callPackage,
makeSetupHook,
stdenv,
}:
makeSetupHook {
name = "postgresql-test-hook";
passthru.tests = {
simple = callPackage ./test.nix { };
};
# See comment in postgresql's generic.nix doInstallCheck section.
meta.broken = stdenv.hostPlatform.isDarwin;
} ./postgresql-test-hook.sh