9 lines
177 B
Nix
9 lines
177 B
Nix
{ callPackage, makeSetupHook }:
|
|
|
|
makeSetupHook {
|
|
name = "postgresql-test-hook";
|
|
passthru.tests = {
|
|
simple = callPackage ./test.nix { };
|
|
};
|
|
} ./postgresql-test-hook.sh
|