i2pd: override boost derivation on the top-level

This commit is contained in:
Dmitry Moskowski 2018-01-19 23:47:00 +00:00
parent 7314b1949a
commit b45a117bd3
No known key found for this signature in database
GPG key ID: 887A0D14C7C55BD6
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fetchpatch, boost165, zlib, openssl }:
{ stdenv, fetchFromGitHub, fetchpatch, boost, zlib, openssl }:
stdenv.mkDerivation rec {
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
sha256 = "1yl5h7mls50vkg7x5510mljmgsm02arqhcanwkrqw4ilwvcp1mgz";
};
buildInputs = [ boost165 zlib openssl ];
buildInputs = [ boost zlib openssl ];
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];
installPhase = ''

View file

@ -2737,7 +2737,9 @@ with pkgs;
i2p = callPackage ../tools/networking/i2p {};
i2pd = callPackage ../tools/networking/i2pd {};
i2pd = callPackage ../tools/networking/i2pd {
boost = boost165;
};
i-score = libsForQt5.callPackage ../applications/audio/i-score { };