depot/third_party/nixpkgs/pkgs/build-support/setup-hooks/postgresql-test-hook/default.nix

10 lines
202 B
Nix
Raw Normal View History

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