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

Commits on Nov 2, 2020

  1. haproxy: 2.2.2 -> 2.2.4

    r-ryantm committed Nov 2, 2020
    Copy the full SHA
    b174be9 View commit details
  2. Merge pull request #102467 from r-ryantm/auto-update/haproxy

    haproxy: 2.2.2 -> 2.2.4
    srhb authored Nov 2, 2020
    Copy the full SHA
    17bdaa2 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.2.2";
version = "2.2.4";

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

buildInputs = [ openssl zlib ]