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

Commits on Sep 9, 2017

  1. haproxy: haproxy.org is now accessible via https

    Thomas Bach committed Sep 9, 2017
    Copy the full SHA
    fd84128 View commit details
  2. haproxy: 1.7.8 -> 1.7.9

    Thomas Bach committed Sep 9, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d343867 View commit details
  3. Merge pull request #29147 from fuzzy-id/master

    haproxy: 1.7.8 -> 1.7.9, download source via https
    joachifm authored Sep 9, 2017
    Copy the full SHA
    3df16e8 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/networking/haproxy/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/networking/haproxy/default.nix
Original file line number Diff line number Diff line change
@@ -10,13 +10,13 @@ assert usePcre -> pcre != null;
stdenv.mkDerivation rec {
pname = "haproxy";
majorVersion = "1.7";
minorVersion = "8";
minorVersion = "9";
version = "${majorVersion}.${minorVersion}";
name = "${pname}-${version}";

src = fetchurl {
url = "http://www.haproxy.org/download/${majorVersion}/src/${name}.tar.gz";
sha256 = "0hp1k957idaphhmw4m0x8cdzdw9ga1mzgsnk2m0as86xrqy1b47c";
url = "https://www.haproxy.org/download/${majorVersion}/src/${name}.tar.gz";
sha256 = "1072337e54fa188dc6e0cfe3ba4c2200b07082e321cbfe5a0882d85d54db068e";
};

buildInputs = [ openssl zlib ]