10 lines
202 B
Nix
10 lines
202 B
Nix
|
{ callPackage, makeSetupHook }:
|
||
|
|
||
|
(makeSetupHook {
|
||
|
name = "postgresql-test-hook";
|
||
|
} ./postgresql-test-hook.sh).overrideAttrs (o: {
|
||
|
passthru.tests = {
|
||
|
simple = callPackage ./test.nix { };
|
||
|
};
|
||
|
})
|