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

35 lines
927 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";
2015-11-20 08:27:31 +01:00
version = "2.1.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;
2015-11-20 08:27:31 +01:00
sha256 = "06y6pi0wlxpasncm4qq30sh0cavwl2f4gdz0hss70if8mr6z9hyq";
2014-11-09 09:44:47 +01:00
};
2015-11-20 08:27:31 +01:00
buildInputs = [ boost zlib openssl ];
makeFlags = "USE_AESNI=no";
patches = [ (fetchpatch {
url = https://github.com/PurpleI2P/i2pd/commit/4109ab1590791f3c1bf4e9eceec2d43be7b5ea47.patch;
sha256 = "17zg9iah59icy8nn1nwfnsnbzpafgrsasz1pmb2q4iywb7wbnkzi";
}) ];
2014-11-09 09:44:47 +01:00
installPhase = ''
install -D i2p $out/bin/i2pd
2014-11-09 09:44:47 +01:00
'';
meta = with stdenv.lib; {
homepage = "https://track.privacysolutions.no/projects/i2pd";
description = "Minimal I2P router written in C++";
2015-04-21 18:05:19 +02:00
license = licenses.gpl2;
2014-11-09 09:44:47 +01:00
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.linux;
2014-11-09 09:44:47 +01:00
};
}