2023-01-13 02:41:57 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, ps
|
|
|
|
, coreutils
|
|
|
|
, fetchurl
|
|
|
|
, jdk
|
|
|
|
, jre
|
|
|
|
, ant
|
|
|
|
, gettext
|
|
|
|
, which
|
|
|
|
, java-service-wrapper
|
|
|
|
}:
|
2017-06-16 21:27:41 +00:00
|
|
|
|
2023-04-09 17:21:00 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-28 17:01:35 +00:00
|
|
|
pname = "i2p";
|
2023-04-09 17:21:00 +00:00
|
|
|
version = "2.2.0";
|
2019-08-28 17:01:35 +00:00
|
|
|
|
2015-04-01 13:12:40 +00:00
|
|
|
src = fetchurl {
|
2023-04-09 17:21:00 +00:00
|
|
|
urls = map (mirror: "${mirror}/${finalAttrs.version}/i2psource_${finalAttrs.version}.tar.bz2") [
|
|
|
|
"https://download.i2p2.de/releases"
|
|
|
|
"https://files.i2p-projekt.de"
|
|
|
|
"https://download.i2p2.no/releases"
|
|
|
|
];
|
|
|
|
sha256 = "sha256-5LoGpuKTWheZDwV6crjXnkUqJVamzv5QEtXdY0Zv7r8=";
|
2015-04-01 13:12:40 +00:00
|
|
|
};
|
2019-08-28 17:01:35 +00:00
|
|
|
|
2015-04-15 19:14:02 +00:00
|
|
|
buildInputs = [ jdk ant gettext which ];
|
2015-07-22 00:33:35 +00:00
|
|
|
patches = [ ./i2p.patch ];
|
2019-08-28 17:01:35 +00:00
|
|
|
|
2015-04-01 13:12:40 +00:00
|
|
|
buildPhase = ''
|
|
|
|
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
|
|
|
|
ant preppkg-linux-only
|
2019-08-28 17:01:35 +00:00
|
|
|
'';
|
|
|
|
|
2015-04-01 13:12:40 +00:00
|
|
|
installPhase = ''
|
|
|
|
set -B
|
|
|
|
mkdir -p $out/{bin,share}
|
|
|
|
cp -r pkg-temp/* $out
|
2017-06-16 05:59:04 +00:00
|
|
|
|
2021-08-17 11:14:26 +00:00
|
|
|
cp ${java-service-wrapper}/bin/wrapper $out/i2psvc
|
|
|
|
cp ${java-service-wrapper}/lib/wrapper.jar $out/lib
|
|
|
|
cp ${java-service-wrapper}/lib/libwrapper.so $out/lib
|
2017-06-16 05:59:04 +00:00
|
|
|
|
2015-04-01 13:12:40 +00:00
|
|
|
sed -i $out/i2prouter -i $out/runplain.sh \
|
2015-07-22 00:33:35 +00:00
|
|
|
-e "s#uname#${coreutils}/bin/uname#" \
|
|
|
|
-e "s#which#${which}/bin/which#" \
|
|
|
|
-e "s#%gettext%#${gettext}/bin/gettext#" \
|
2018-03-26 04:01:31 +00:00
|
|
|
-e "s#/usr/ucb/ps#${ps}/bin/ps#" \
|
2015-04-01 13:12:40 +00:00
|
|
|
-e "s#/usr/bin/tr#${coreutils}/bin/tr#" \
|
2015-07-22 00:33:35 +00:00
|
|
|
-e "s#%INSTALL_PATH#$out#" \
|
2015-04-01 13:12:40 +00:00
|
|
|
-e 's#%USER_HOME#$HOME#' \
|
2015-04-15 10:59:25 +00:00
|
|
|
-e "s#%SYSTEM_java_io_tmpdir#/tmp#" \
|
2015-07-22 00:33:35 +00:00
|
|
|
-e "s#%JAVA%#${jre}/bin/java#"
|
2015-04-01 13:12:40 +00: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}
|
2019-08-28 17:01:35 +00:00
|
|
|
'';
|
2015-04-01 13:12:40 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-04-01 13:12:40 +00:00
|
|
|
description = "Applications and router for I2P, anonymity over the Internet";
|
2019-08-28 17:01:35 +00:00
|
|
|
homepage = "https://geti2p.net";
|
2022-06-02 13:38:41 +00:00
|
|
|
sourceProvenance = with sourceTypes; [
|
|
|
|
fromSource
|
2023-01-13 02:41:57 +00:00
|
|
|
binaryBytecode # source bundles dependencies as jars
|
2022-06-02 13:38:41 +00:00
|
|
|
];
|
2015-04-21 16:05:19 +00:00
|
|
|
license = licenses.gpl2;
|
2017-06-16 05:59:04 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2020-07-12 20:48:18 +00:00
|
|
|
maintainers = with maintainers; [ joelmo ];
|
2015-04-01 13:12:40 +00:00
|
|
|
};
|
2023-04-09 17:21:00 +00:00
|
|
|
})
|