5ffdc31f62
The definition of Java Service Wrapper in i2p is identical to the java-service-wrapper package except that the latter also executes the test suite, which requires some extra dependencies. The java-service-wrapper package was actually added in https://github.com/NixOS/nixpkgs/pull/67824 to move the definition from the i2p package into a separate package. While it was added as a separate package, it was never removed from i2p. This commit fixes that.
53 lines
1.6 KiB
Nix
53 lines
1.6 KiB
Nix
{ lib, stdenv, ps, coreutils, fetchurl, jdk, jre, ant, gettext, which, java-service-wrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "i2p";
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.i2p2.de/releases/${version}/i2psource_${version}.tar.bz2";
|
|
sha256 = "sha256-JuX02VsaB2aHD5ezDlfJqOmGkCecO/CRmOMO/6vsxFA=";
|
|
};
|
|
|
|
buildInputs = [ jdk ant gettext which ];
|
|
patches = [ ./i2p.patch ];
|
|
|
|
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 ${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
|
|
|
|
sed -i $out/i2prouter -i $out/runplain.sh \
|
|
-e "s#uname#${coreutils}/bin/uname#" \
|
|
-e "s#which#${which}/bin/which#" \
|
|
-e "s#%gettext%#${gettext}/bin/gettext#" \
|
|
-e "s#/usr/ucb/ps#${ps}/bin/ps#" \
|
|
-e "s#/usr/bin/tr#${coreutils}/bin/tr#" \
|
|
-e "s#%INSTALL_PATH#$out#" \
|
|
-e 's#%USER_HOME#$HOME#' \
|
|
-e "s#%SYSTEM_java_io_tmpdir#/tmp#" \
|
|
-e "s#%JAVA%#${jre}/bin/java#"
|
|
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 lib; {
|
|
description = "Applications and router for I2P, anonymity over the Internet";
|
|
homepage = "https://geti2p.net";
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = with maintainers; [ joelmo ];
|
|
};
|
|
}
|