45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkgconfig
|
|
, openssl
|
|
, libredirect
|
|
, writeText
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nym";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nymtech";
|
|
repo = "nym";
|
|
rev = "v${version}";
|
|
sha256 = "05bxrpqwwf9spydac0q8sly65q8f1nk13i5fy3p5adr1phzxdnr8";
|
|
};
|
|
|
|
cargoSha256 = "0mh8cwia86bm68b0wcrmnsq1af5cp6kj1j81nwxb03awnqpxc34n";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
# tests disabled until a release with https://github.com/nymtech/nym/pull/260 is available
|
|
doCheck = false;
|
|
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "A mixnet providing IP-level privacy";
|
|
longDescription = ''
|
|
Nym routes IP packets through other participating nodes to hide their source and destination.
|
|
In contrast with Tor, it prevents timing attacks at the cost of latency.
|
|
'';
|
|
homepage = "https://nymtech.net";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.ehmry ];
|
|
platforms = with platforms; intersectLists (linux ++ darwin) (concatLists [ x86 x86_64 aarch64 arm ]);
|
|
};
|
|
}
|