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

Commits on Nov 1, 2020

  1. Copy the full SHA
    de694b3 View commit details

Commits on Nov 2, 2020

  1. Merge pull request #100290 from happysalada/sozu

    sozu: 0.11.46 -> 0.11.50; fix Darwin build
    danieldk authored Nov 2, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b31e052 View commit details
Showing with 20 additions and 16 deletions.
  1. +20 −16 pkgs/servers/sozu/default.nix
36 changes: 20 additions & 16 deletions pkgs/servers/sozu/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
{ stdenv, rustPlatform, fetchFromGitHub }:
{ stdenv, rustPlatform, fetchFromGitHub, darwin }:

rustPlatform.buildRustPackage rec {
pname = "sozu";
version = "0.11.46";
pname = "sozu";
version = "0.11.50";

src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
sha256 = "0anng5qvdx9plxs9qqr5wmjjz0gx5113jq28xwbxaaklvd4ni7cm";
};
src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
sha256 = "1srg2b8vwc4vp07kg4fizqj1rbm9hvf6hj1mjdh6yvb9cpbw3jz7";
};

cargoSha256 = "19c2s9h4jk9pff72wdqw384mvrf40d8x4sx7qysnpb4hayq2ijh3";
cargoSha256 = "5WOigCiQZQ5DaTd15vV8pUh8Xl3UIe9yLG1ptUtY+iA=";

meta = with stdenv.lib; {
description = "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
homepage = "https://sozu.io";
license = licenses.agpl3;
maintainers = with maintainers; [ filalex77 ];
};
buildInputs =
stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;

meta = with stdenv.lib; {
description =
"Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
homepage = "https://www.sozu.io";
license = licenses.agpl3;
maintainers = with maintainers; [ filalex77 ];
};
}