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

Commits on Mar 7, 2018

  1. nghttp2: 1.24.0 -> 1.31.0

    dtzWill committed Mar 7, 2018
    Copy the full SHA
    d72a0e7 View commit details

Commits on May 22, 2018

  1. Merge pull request #36462 from dtzWill/update/nghttp2-1.31.0

    nghttp2: 1.24.0 -> 1.31.0
    lukateras authored May 22, 2018
    Copy the full SHA
    2e7897a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/nghttp2/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/nghttp2/default.nix
Original file line number Diff line number Diff line change
@@ -17,11 +17,11 @@ let inherit (stdenv.lib) optional; in

stdenv.mkDerivation rec {
name = "nghttp2-${version}";
version = "1.24.0";
version = "1.31.0";

src = fetchurl {
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
sha256 = "18ys6p39yvm9wjjzhhlw35c9m8f5gf4dk9jbshibj19q4js1pnv9";
sha256 = "0d7ivd7agsrbpz8745d0c0hxjzx9pdj602p1bpnrsd7p393ydrln";
};

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