i2pd: 2.55.0 -> 2.56.0 (#381356)

This commit is contained in:
Wolfgang Walther
2025-02-25 19:39:37 +01:00
committed by GitHub
+9 -5
View File
@@ -13,15 +13,20 @@
stdenv.mkDerivation rec {
pname = "i2pd";
version = "2.55.0";
version = "2.56.0";
src = fetchFromGitHub {
owner = "PurpleI2P";
repo = pname;
rev = version;
sha256 = "sha256-mdjt2+h+IWjHBRDUpx85ku6s6gKHjxUBuhv+gJK7QhU=";
repo = "i2pd";
tag = version;
hash = "sha256-URFLVMd1j/br+/isQytVjSVosMHn1SEwqg2VNxStD0A=";
};
postPatch = lib.optionalString (!stdenv.hostPlatform.isx86) ''
substituteInPlace Makefile.osx \
--replace-fail "-msse" ""
'';
buildInputs = [
boost
zlib
@@ -56,6 +61,5 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.unix;
mainProgram = "i2pd";
broken = stdenv.hostPlatform.isDarwin;
};
}