Files
nixpkgs/pkgs/by-name/po/postgresqlTestHook/package.nix
2026-05-25 13:48:20 +02:00

18 lines
348 B
Nix

{
callPackage,
makeSetupHook,
lib,
}:
makeSetupHook {
name = "postgresql-test-hook";
passthru.tests = {
simple = callPackage ./test.nix { };
};
meta = {
# See comment in postgresql's generic.nix doInstallCheck section.
badPlatforms = lib.platforms.darwin;
license = lib.licenses.mit;
};
} ./postgresql-test-hook.sh