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