Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 49a11243bdd5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3b0b55df67e2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 13, 2019

  1. Copy the full SHA
    d7f36ec View commit details

Commits on May 14, 2019

  1. Merge pull request #61395 from risicle/ris-postgres-enable-check

    postgresql: enable pre-install checks
    thoughtpolice authored May 14, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3b0b55d View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/servers/sql/postgresql/default.nix
4 changes: 4 additions & 0 deletions pkgs/servers/sql/postgresql/default.nix
Original file line number Diff line number Diff line change
@@ -101,6 +101,10 @@ let
wrapProgram $out/bin/initdb --prefix PATH ":" ${glibc.bin}/bin
'';

doCheck = true;
# autodetection doesn't seem to able to find this, but it's there.
checkTarget = "check";

doInstallCheck = false; # needs a running daemon?

disallowedReferences = [ stdenv.cc ];