i2pd: expose flags
This commit is contained in:
parent
4bed2d659d
commit
a4f433c03c
@ -1,4 +1,11 @@
|
|||||||
{ stdenv, fetchFromGitHub, fetchpatch, boost, zlib, openssl }:
|
{ stdenv, fetchFromGitHub, fetchpatch
|
||||||
|
, boost, zlib, openssl
|
||||||
|
, upnpSupport ? true, miniupnpc ? null
|
||||||
|
, aesniSupport ? false
|
||||||
|
, avxSupport ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert upnpSupport -> miniupnpc != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
@ -13,8 +20,14 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1yl5h7mls50vkg7x5510mljmgsm02arqhcanwkrqw4ilwvcp1mgz";
|
sha256 = "1yl5h7mls50vkg7x5510mljmgsm02arqhcanwkrqw4ilwvcp1mgz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boost zlib openssl ];
|
buildInputs = with stdenv.lib; [ boost zlib openssl ]
|
||||||
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];
|
++ optional upnpSupport miniupnpc;
|
||||||
|
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)
|
||||||
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -D i2pd $out/bin/i2pd
|
install -D i2pd $out/bin/i2pd
|
||||||
|
Loading…
x
Reference in New Issue
Block a user