i2pd: 2.52.0 -> 2.54.0

This commit is contained in:
Daniel Nagy 2024-09-21 00:30:00 +02:00
parent b57179d8da
commit ec23d6a869
No known key found for this signature in database

View File

@ -1,5 +1,4 @@
{ lib, stdenv, fetchFromGitHub { lib, stdenv, fetchFromGitHub
, fetchpatch2
, installShellFiles , installShellFiles
, boost, zlib, openssl , boost, zlib, openssl
, upnpSupport ? true, miniupnpc , upnpSupport ? true, miniupnpc
@ -9,23 +8,15 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "i2pd"; pname = "i2pd";
version = "2.52.0"; version = "2.54.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "PurpleI2P"; owner = "PurpleI2P";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-0n3cPF3KBuzNOagrn88HeTvFAu1sYTkijpiGr77X5GI="; sha256 = "sha256-neoIDZNBBDq3tqz1ET3/CS/zb0Lret9niyuU7iWoNIE=";
}; };
patches = [
# Support miniupnp-2.2.8 (fixes #2071)
(fetchpatch2 {
url = "https://github.com/PurpleI2P/i2pd/commit/697d8314415b0dc0634fd1673abc589a080e0a31.patch?full_index=1";
hash = "sha256-B9Ngw1yPrnF5pGLe1a5x0TlyInvQGcq1zQUKO/ELFzA=";
})
];
buildInputs = [ boost zlib openssl ] buildInputs = [ boost zlib openssl ]
++ lib.optional upnpSupport miniupnpc; ++ lib.optional upnpSupport miniupnpc;