i2pd: 0.10.0 -> 2.1.0

This commit is contained in:
Edward Tjörnhammar 2015-11-20 08:27:31 +01:00
parent af79c2ac59
commit 7d6c46f7e3

View File

@ -1,21 +1,21 @@
{ stdenv, fetchFromGitHub, boost, cryptopp }:
{ stdenv, fetchFromGitHub, boost, zlib, openssl }:
stdenv.mkDerivation rec {
name = pname + "-" + version;
pname = "i2pd";
version = "0.10.0";
version = "2.1.0";
src = fetchFromGitHub {
owner = "PurpleI2P";
repo = pname;
rev = version;
sha256 = "11w62rc326rhj2xh06307ngx0fai30qny8ml6n5lrx2y1dzjfxd1";
sha256 = "06y6pi0wlxpasncm4qq30sh0cavwl2f4gdz0hss70if8mr6z9hyq";
};
buildInputs = [ boost cryptopp ];
buildInputs = [ boost zlib openssl ];
installPhase = ''
install -D i2p $out/bin/i2p
install -D i2p $out/bin/i2pd
'';
meta = with stdenv.lib; {