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