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

Commits on Apr 5, 2020

  1. haproxy: 2.1.3 -> 2.1.4

    r-ryantm committed Apr 5, 2020
    Copy the full SHA
    65d7873 View commit details

Commits on Apr 6, 2020

  1. Merge pull request #84392 from r-ryantm/auto-update/haproxy

    haproxy: 2.1.3 -> 2.1.4
    marsam authored Apr 6, 2020
    Copy the full SHA
    e6b7d37 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/networking/haproxy/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/networking/haproxy/default.nix
Original file line number Diff line number Diff line change
@@ -11,11 +11,11 @@ assert usePcre -> pcre != null;

stdenv.mkDerivation rec {
pname = "haproxy";
version = "2.1.3";
version = "2.1.4";

src = fetchurl {
url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
sha256 = "0n8bw3d6gikr8c56ycrvksp1sl0b4yfzp19867cxkl3l0daqwrxv";
sha256 = "1kcizs5r538chhpwqykdngxyqfi98i03akfjnii721npjvv0y0si";
};

buildInputs = [ openssl zlib ]