3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/i2p/default.nix

45 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, procps, coreutils, fetchurl, jdk, jre, ant, gettext, which }:
2015-04-01 14:12:40 +01:00
stdenv.mkDerivation rec {
2015-10-28 13:14:13 +00:00
name = "i2p-0.9.22";
2015-04-01 14:12:40 +01:00
src = fetchurl {
url = "https://github.com/i2p/i2p.i2p/archive/${name}.tar.gz";
2015-10-28 13:14:13 +00:00
sha256 = "0y21dx5d95gq1i6ip56nmawr19974zawzwa315dm8lmz32bj8g6n";
2015-04-01 14:12:40 +01:00
};
buildInputs = [ jdk ant gettext which ];
2015-07-22 01:33:35 +01:00
patches = [ ./i2p.patch ];
2015-04-01 14:12:40 +01:00
buildPhase = ''
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
ant preppkg-linux-only
'';
installPhase = ''
set -B
mkdir -p $out/{bin,share}
cp -r pkg-temp/* $out
cp installer/lib/wrapper/linux64/* $out
sed -i $out/i2prouter -i $out/runplain.sh \
2015-07-22 01:33:35 +01:00
-e "s#uname#${coreutils}/bin/uname#" \
-e "s#which#${which}/bin/which#" \
-e "s#%gettext%#${gettext}/bin/gettext#" \
2015-04-01 14:12:40 +01:00
-e "s#/usr/ucb/ps#${procps}/bin/ps#" \
-e "s#/usr/bin/tr#${coreutils}/bin/tr#" \
2015-07-22 01:33:35 +01:00
-e "s#%INSTALL_PATH#$out#" \
2015-04-01 14:12:40 +01:00
-e 's#%USER_HOME#$HOME#' \
2015-04-15 11:59:25 +01:00
-e "s#%SYSTEM_java_io_tmpdir#/tmp#" \
2015-07-22 01:33:35 +01:00
-e "s#%JAVA%#${jre}/bin/java#"
2015-04-01 14:12:40 +01:00
mv $out/runplain.sh $out/bin/i2prouter-plain
mv $out/man $out/share/
chmod +x $out/bin/* $out/i2psvc
rm $out/{osid,postinstall.sh,INSTALL-headless.txt}
'';
meta = with stdenv.lib; {
homepage = https://geti2p.net;
2015-04-01 14:12:40 +01:00
description = "Applications and router for I2P, anonymity over the Internet";
maintainers = [ maintainers.joelmo ];
2015-04-21 17:05:19 +01:00
license = licenses.gpl2;
2015-04-15 11:38:17 +01:00
# TODO: support other systems, just copy appropriate lib/wrapper.. to $out
platforms = [ "x86_64-linux" ];
2015-04-01 14:12:40 +01:00
};
}