about summary refs log tree commit diff
path: root/pkgs/build-support/setup-hooks/postgresql-test-hook/default.nix
blob: d0031c93c10cb351bc32124921450a446047af5a (plain) (blame)
1
2
3
4
5
6
7
8
9
{ callPackage, makeSetupHook }:

(makeSetupHook {
  name = "postgresql-test-hook";
} ./postgresql-test-hook.sh).overrideAttrs (o: {
  passthru.tests = {
    simple = callPackage ./test.nix { };
  };
})