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

52 lines
1.3 KiB
Nix
Raw Normal View History

2021-05-10 21:35:08 +00:00
{ stdenv
, lib
2020-04-11 20:04:24 +00:00
, rustPlatform
, fetchFromGitHub
, pkg-config
2020-04-11 20:04:24 +00:00
, openssl
2021-05-10 21:35:08 +00:00
, Security
, libiconv
2020-04-11 20:04:24 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "nym";
version = "0.11.0";
2020-04-11 20:04:24 +00:00
src = fetchFromGitHub {
owner = "nymtech";
repo = "nym";
rev = "v${version}";
sha256 = "sha256-bZXbteryXkOxft63zUMWdpBgbDSvrBHQY3f70/+mBtI=";
2020-04-11 20:04:24 +00:00
};
cargoSha256 = "0xwa114fs4h6y2a3nrl2dp0rv0k336xy9y330g9yix4g34qmrynq";
2020-04-11 20:04:24 +00:00
nativeBuildInputs = [ pkg-config ];
2020-04-11 20:04:24 +00:00
2021-05-10 21:35:08 +00:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security libiconv ];
2020-04-11 20:04:24 +00:00
checkType = "debug";
2020-04-11 20:04:24 +00:00
passthru.updateScript = ./update.sh;
checkFlags = [
"--skip commands::upgrade::upgrade_tests"
"--skip allowed_hosts::tests::creating_a_new_host_store"
"--skip allowed_hosts::tests::getting_the_domain_root"
"--skip allowed_hosts::tests::requests_to_allowed_hosts"
"--skip allowed_hosts::tests::requests_to_unknown_hosts"
];
2020-04-11 20:04:24 +00:00
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 ];
2021-05-10 23:11:49 +00:00
platforms = platforms.all;
2020-04-11 20:04:24 +00:00
};
}