mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
i2pd: 2.15.0 -> 2.17.0
This commit is contained in:
parent
3d5391c256
commit
7314b1949a
|
@ -1,19 +1,19 @@
|
|||
{ stdenv, fetchFromGitHub, fetchpatch, boost, zlib, openssl }:
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, boost165, zlib, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = pname + "-" + version;
|
||||
pname = "i2pd";
|
||||
version = "2.15.0";
|
||||
version = "2.17.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PurpleI2P";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "02nyk76q2ag0495ph62i0jij27nxpy6qvryjp25wah8f69k7bgfs";
|
||||
sha256 = "1yl5h7mls50vkg7x5510mljmgsm02arqhcanwkrqw4ilwvcp1mgz";
|
||||
};
|
||||
|
||||
buildInputs = [ boost zlib openssl ];
|
||||
buildInputs = [ boost165 zlib openssl ];
|
||||
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];
|
||||
|
||||
installPhase = ''
|
||||
|
|
Loading…
Reference in a new issue