2021-12-18 09:52:01 +00:00
|
|
|
{ lib, stdenv, go, fetchurl, redo-apenwarr, curl, perl, genericUpdater
|
|
|
|
, writeShellScript, nixosTests, cfgPath ? "/etc/nncp.hjson" }:
|
2019-12-16 17:19:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "nncp";
|
2022-01-27 08:33:30 +00:00
|
|
|
version = "8.5.0";
|
2021-12-18 09:52:01 +00:00
|
|
|
outputs = [ "out" "doc" "info" ];
|
2019-12-16 17:19:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.nncpgo.org/download/${pname}-${version}.tar.xz";
|
2022-01-27 08:33:30 +00:00
|
|
|
sha256 = "sha256-6IUNJ3DE+nRc+bmpDO7l1gXlD6UDGggTSYRMFT57v/Q=";
|
2019-12-16 17:19:28 +00:00
|
|
|
};
|
|
|
|
|
2020-09-27 20:52:41 +01:00
|
|
|
nativeBuildInputs = [ go redo-apenwarr ];
|
2019-12-16 17:19:28 +00:00
|
|
|
|
2021-12-18 09:52:01 +00:00
|
|
|
# Build parameters
|
|
|
|
CFGPATH = cfgPath;
|
|
|
|
SENDMAIL = "sendmail";
|
|
|
|
|
|
|
|
preConfigure = "export GOCACHE=$NIX_BUILD_TOP/gocache";
|
2019-12-16 17:19:28 +00:00
|
|
|
|
2020-09-27 20:52:41 +01:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
export PREFIX=$out
|
|
|
|
rm -f INSTALL # work around case insensitivity
|
|
|
|
redo install
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2019-12-16 17:19:28 +00:00
|
|
|
|
|
|
|
passthru.updateScript = genericUpdater {
|
|
|
|
inherit pname version;
|
|
|
|
versionLister = writeShellScript "nncp-versionLister" ''
|
|
|
|
echo "# Versions for $1:" >> "$2"
|
2021-12-18 09:52:01 +00:00
|
|
|
${curl}/bin/curl -s ${meta.downloadPage} | ${perl}/bin/perl -lne 'print $1 if /Release.*>([0-9.]+)</'
|
2019-12-16 17:19:28 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-12-16 17:19:28 +00:00
|
|
|
description = "Secure UUCP-like store-and-forward exchanging";
|
|
|
|
longDescription = ''
|
|
|
|
This utilities are intended to help build up small size (dozens of
|
|
|
|
nodes) ad-hoc friend-to-friend (F2F) statically routed darknet
|
|
|
|
delay-tolerant networks for fire-and-forget secure reliable files,
|
|
|
|
file requests, Internet mail and commands transmission. All
|
|
|
|
packets are integrity checked, end-to-end encrypted, explicitly
|
|
|
|
authenticated by known participants public keys. Onion encryption
|
|
|
|
is applied to relayed packets. Each node acts both as a client and
|
|
|
|
server, can use push and poll behaviour model.
|
|
|
|
|
|
|
|
Out-of-box offline sneakernet/floppynet, dead drops, sequential
|
|
|
|
and append-only CD-ROM/tape storages, air-gapped computers
|
|
|
|
support. But online TCP daemon with full-duplex resumable data
|
|
|
|
transmission exists.
|
|
|
|
'';
|
|
|
|
homepage = "http://www.nncpgo.org/";
|
2021-12-18 09:52:01 +00:00
|
|
|
downloadPage = "http://www.nncpgo.org/Tarballs.html";
|
2020-09-27 20:52:41 +01:00
|
|
|
license = licenses.gpl3Only;
|
2019-12-16 17:19:28 +00:00
|
|
|
platforms = platforms.all;
|
2021-12-18 09:52:01 +00:00
|
|
|
maintainers = with maintainers; [ ehmry woffs ];
|
2019-12-16 17:19:28 +00:00
|
|
|
};
|
|
|
|
}
|