nixpkgs/pkgs/applications/networking/nym/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2020-04-11 20:04:24 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
2020-04-11 20:04:24 +00:00
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "nym";
2021-05-06 15:57:04 +00:00
version = "0.10.0";
2020-04-11 20:04:24 +00:00
src = fetchFromGitHub {
owner = "nymtech";
repo = "nym";
rev = "v${version}";
2021-05-06 15:57:04 +00:00
sha256 = "sha256-7x+B+6T0cnEOjXevA5n1k/SY1Q2tcu0bbZ9gIGoljw0=";
2020-04-11 20:04:24 +00:00
};
2021-05-06 15:57:04 +00:00
cargoSha256 = "0a7yja0ihjc66fqlshlaxpnpcpdy7h7gbv6120w2cr605qdnqvkx";
2020-04-11 20:04:24 +00:00
nativeBuildInputs = [ pkg-config ];
2020-04-11 20:04:24 +00:00
buildInputs = [ openssl ];
2021-05-06 15:57:04 +00:00
patches = [ ./ignore-networking-tests.patch ];
checkType = "debug";
2020-04-11 20:04:24 +00:00
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 ];
2020-06-07 18:32:28 +00:00
platforms = with platforms; intersectLists (linux ++ darwin) (concatLists [ x86 x86_64 aarch64 arm ]);
2020-04-11 20:04:24 +00:00
};
}