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: 2ba3235b4af9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32d359ff4594
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Aug 2, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    3b43d99 View commit details

Commits on Aug 4, 2019

  1. Merge pull request #65859 from marsam/update-postgresqlPackages.pg_au…

    …to_failover
    
    postgresqlPackages.pg_auto_failover: 1.0.2 -> 1.0.3
    marsam authored Aug 4, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    32d359f View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix
8 changes: 4 additions & 4 deletions pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{ stdenv, fetchFromGitHub, postgresql, openssl }:
{ stdenv, fetchFromGitHub, postgresql, openssl, zlib, readline }:

if stdenv.lib.versionOlder postgresql.version "10"
then throw "pg_auto_failover not supported for PostgreSQL ${postgresql.version}"
else
stdenv.mkDerivation rec {
pname = "pg_auto_failover";
version = "1.0.2";
version = "1.0.3";

src = fetchFromGitHub {
owner = "citusdata";
repo = pname;
rev = "v${version}";
sha256 = "1296zk143y9fvmcg2hjbrjdjfhi5rrd0clh16vblkghcvxrzfyvy";
sha256 = "0mggf5h6gh2mck75dmz5w63gi7d10pqs58fdp2jdpv3am75picll";
};

buildInputs = [ postgresql openssl ];
buildInputs = [ postgresql openssl zlib readline ];

installPhase = ''
install -D -t $out/bin src/bin/pg_autoctl/pg_autoctl