i2pd-tools: init at 2.56.0

i2pd-tools is a toolsuite that helps working with i2p to generate
keys, vanity addresses and so on
This commit is contained in:
Midas
2025-04-02 11:02:14 +02:00
parent e84b985091
commit 86ced76382
2 changed files with 51 additions and 1 deletions
+1 -1
View File
@@ -16089,7 +16089,7 @@
githubId = 220262;
name = "Ion Mudreac";
};
Mulligansecurity = {
MulliganSecurity = {
email = "mulligansecurity@riseup.net";
github = "MulliganSecurity";
githubId = 196982523;
+50
View File
@@ -0,0 +1,50 @@
{
lib,
stdenv,
boost,
fetchFromGitHub,
openssl,
zlib,
}:
stdenv.mkDerivation {
pname = "i2pd-tools";
version = "2.56.0";
#tries to access the network during the tests, which fails
src = fetchFromGitHub {
owner = "PurpleI2P";
repo = "i2pd-tools";
rev = "33fce4b087d92ee90653460bbe7a07cdc0c7b121";
hash = "sha256-mmCs8AHHKhx1/rDp/Vc1p2W3pufoTa4FcJyJwD919zw=";
fetchSubmodules = true;
};
buildInputs = [
zlib
openssl
boost
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
for bin in \
routerinfo keygen vain keyinfo regaddr \
regaddr_3ld regaddralias x25519 famtool autoconf;
do
install -Dm755 $bin -t $out/bin
done
runHook postInstall
'';
meta = {
description = "Toolsuite to work with keys and eepsites";
homepage = "https://github.com/PurpleI2P/i2pd-tools";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ MulliganSecurity ];
mainProgram = "i2pd-tools";
};
}