Skip to content

Commit

Permalink
i2pd: remove unused USE_AVX flag, mark as broken on darwin (#351445)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindavi authored Oct 28, 2024
2 parents 18f3e22 + a178d8d commit 9d42cf2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkgs/tools/networking/i2pd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
, boost, zlib, openssl
, upnpSupport ? true, miniupnpc
, aesniSupport ? stdenv.hostPlatform.aesSupport
, avxSupport ? stdenv.hostPlatform.avxSupport
}:

stdenv.mkDerivation rec {
Expand All @@ -27,7 +26,6 @@ stdenv.mkDerivation rec {
makeFlags =
let ynf = a: b: a + "=" + (if b then "yes" else "no"); in
[ (ynf "USE_AESNI" aesniSupport)
(ynf "USE_AVX" avxSupport)
(ynf "USE_UPNP" upnpSupport)
];

Expand All @@ -46,5 +44,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.unix;
mainProgram = "i2pd";
broken = stdenv.hostPlatform.isDarwin;
};
}

0 comments on commit 9d42cf2

Please sign in to comment.