Unverified Commit 410b9853 authored by Daniel Nagy's avatar Daniel Nagy
Browse files

i2pd: remove unused USE_AESNI flag

Since release 2.55 that flag has been removed. Therefore we remove it
to avoid confusion.

References:

https://github.com/PurpleI2P/i2pd/blob/2.55.0/ChangeLog#L19

https://github.com/PurpleI2P/i2pd/commit/48b62340ccfc6742d09b3d20a4aa16325391af3c
parent dc1fd4d1
Loading
Loading
Loading
Loading
+3 −9
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@
  openssl,
  upnpSupport ? true,
  miniupnpc,
  aesniSupport ? stdenv.hostPlatform.aesSupport,
}:

stdenv.mkDerivation rec {
@@ -37,13 +36,8 @@ stdenv.mkDerivation rec {
    installShellFiles
  ];

  makeFlags =
    let
      ynf = a: b: a + "=" + (if b then "yes" else "no");
    in
    [
      (ynf "USE_AESNI" aesniSupport)
      (ynf "USE_UPNP" upnpSupport)
  makeFlags = [
    "USE_UPNP=${if upnpSupport then "yes" else "no"}"
  ];

  enableParallelBuilding = true;