nixpkgs/pkgs/tools/networking/i2pd/default.nix

31 lines
713 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, boost, zlib, openssl }:
2014-11-09 00:44:47 -08:00
stdenv.mkDerivation rec {
2015-07-07 00:47:22 -07:00
name = pname + "-" + version;
pname = "i2pd";
2017-09-12 01:13:49 -07:00
version = "2.15.0";
2014-11-09 00:44:47 -08:00
2015-07-07 00:47:22 -07:00
src = fetchFromGitHub {
owner = "PurpleI2P";
repo = pname;
rev = version;
2017-09-12 01:13:49 -07:00
sha256 = "02nyk76q2ag0495ph62i0jij27nxpy6qvryjp25wah8f69k7bgfs";
2014-11-09 00:44:47 -08:00
};
2015-11-19 23:27:31 -08:00
buildInputs = [ boost zlib openssl ];
2017-05-30 07:48:20 -07:00
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];
2014-11-09 00:44:47 -08:00
installPhase = ''
2015-12-29 00:17:06 -08:00
install -D i2pd $out/bin/i2pd
2014-11-09 00:44:47 -08:00
'';
meta = with stdenv.lib; {
homepage = https://i2pd.website;
2014-11-09 00:44:47 -08:00
description = "Minimal I2P router written in C++";
2017-06-30 17:00:00 -07:00
license = licenses.bsd3;
2014-11-09 00:44:47 -08:00
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.linux;
2014-11-09 00:44:47 -08:00
};
}