blob: 62541835633649b8991c4917f247e8c510af3326 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
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
|