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: 6f1a37a4f1cd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14ee9eba4301
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 5, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    nlf nlf
    Copy the full SHA
    14ee9eb View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/sql/postgresql/ext/repmgr.nix
4 changes: 2 additions & 2 deletions pkgs/servers/sql/postgresql/ext/repmgr.nix
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@

stdenv.mkDerivation rec {
pname = "repmgr";
version = "5.0.0";
version = "5.1.0";

src = fetchFromGitHub {
owner = "2ndQuadrant";
repo = "repmgr";
rev = "v${version}";
sha256 = "0zrpv17zrgl8hynbzaaqj17qrchc8r9qwpqh8y10b0v3xdr22ayl";
sha256 = "1igcy98ggwyx8zg4g4kz7xb32b7vc3h668r5wbfk4w49x9v97f4m";
};

nativeBuildInputs = [ flex ];