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 09:44:47 +01:00
stdenv.mkDerivation rec {
2015-07-07 09:47:22 +02:00
name = pname + "-" + version;
pname = "i2pd";
2018-01-19 21:18:03 +01:00
version = "2.17.0";
2014-11-09 09:44:47 +01:00
2015-07-07 09:47:22 +02:00
src = fetchFromGitHub {
owner = "PurpleI2P";
repo = pname;
rev = version;
2018-01-19 21:18:03 +01:00
sha256 = "1yl5h7mls50vkg7x5510mljmgsm02arqhcanwkrqw4ilwvcp1mgz";
2014-11-09 09:44:47 +01:00
};
buildInputs = [ boost zlib openssl ];
2017-05-30 16:48:20 +02:00
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];
2014-11-09 09:44:47 +01:00
installPhase = ''
2015-12-29 09:17:06 +01:00
install -D i2pd $out/bin/i2pd
2014-11-09 09:44:47 +01:00
'';
meta = with stdenv.lib; {
homepage = https://i2pd.website;
2014-11-09 09:44:47 +01:00
description = "Minimal I2P router written in C++";
2017-07-01 02:00:00 +02:00
license = licenses.bsd3;
2014-11-09 09:44:47 +01:00
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.linux;
2014-11-09 09:44:47 +01:00
};
}