31 lines
742 B
Nix
31 lines
742 B
Nix
{ stdenv, fetchFromGitHub, fetchpatch, boost, zlib, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = pname + "-" + version;
|
|
pname = "i2pd";
|
|
version = "2.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PurpleI2P";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1gz8jmy2vq520w642jiff1zg4qpgpm2qkad5dgrq9f14ri14lkpp";
|
|
};
|
|
|
|
buildInputs = [ boost zlib openssl ];
|
|
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];
|
|
|
|
installPhase = ''
|
|
install -D i2pd $out/bin/i2pd
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://track.privacysolutions.no/projects/i2pd";
|
|
description = "Minimal I2P router written in C++";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|