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

Commits on Mar 12, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    f58c599 View commit details

Commits on Mar 14, 2019

  1. Merge pull request #57539 from dtzWill/update/nghttp2-1.37.0

    nghttp2: 1.36.0 -> 1.37.0
    dtzWill authored Mar 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    20c0730 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/libraries/nghttp2/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/libraries/nghttp2/default.nix
Original file line number Diff line number Diff line change
@@ -17,12 +17,12 @@ assert enableJemalloc -> jemalloc != null;
let inherit (stdenv.lib) optional; in

stdenv.mkDerivation rec {
name = "nghttp2-${version}";
version = "1.36.0";
pname = "nghttp2";
version = "1.37.0";

src = fetchurl {
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
sha256 = "1sqwwwhlrbp3wcikf9v07k5j4xvflwy297lq4cg92qj087bk99qn";
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
sha256 = "1bi3aw096kd51abazvv6ilplz6gjbm84yr3mzxklbhysv38y6xl2";
};

outputs = [ "bin" "out" "dev" "lib" ];