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

Commits on Apr 5, 2021

  1. libupnp: 1.14.2 -> 1.14.4

    edwtjo committed Apr 5, 2021
    Copy the full SHA
    0888a90 View commit details
  2. i2pd: 2.36.0 -> 2.37.0

    r-ryantm authored and edwtjo committed Apr 5, 2021
    Copy the full SHA
    98a5158 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/libraries/pupnp/default.nix
  2. +2 −2 pkgs/tools/networking/i2pd/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/pupnp/default.nix
Original file line number Diff line number Diff line change
@@ -6,15 +6,15 @@

stdenv.mkDerivation rec {
pname = "libupnp";
version = "1.14.2";
version = "1.14.4";

outputs = [ "out" "dev" ];

src = fetchFromGitHub {
owner = "mrjimenez";
repo = "pupnp";
rev = "release-${version}";
sha256 = "sha256-PVlmAtiozF1dqgXsRXPuDY13TchHdb0UnK6mam4chBE=";
sha256 = "sha256-4VuTbcEjr9Ffrowb3eOtXFU8zPNu1NXS531EOZpI07A=";
};

nativeBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/tools/networking/i2pd/default.nix
Original file line number Diff line number Diff line change
@@ -9,13 +9,13 @@ assert upnpSupport -> miniupnpc != null;

stdenv.mkDerivation rec {
pname = "i2pd";
version = "2.36.0";
version = "2.37.0";

src = fetchFromGitHub {
owner = "PurpleI2P";
repo = pname;
rev = version;
sha256 = "sha256-f1ew2i/tgRdIAo/oOgFIFquKve+ImRzqoZqmlzfwpz8=";
sha256 = "sha256-//ootg0RZR2vzO702jGXuJ5qGMO49GSG0Lw6dKzGGt8=";
};

buildInputs = with lib; [ boost zlib openssl ]