Unverified Commit 5e3cb118 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

i2pd: remove unused USE_AESNI flag (#391890)

parents ea515577 410b9853
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;