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

45 lines
1.1 KiB
Nix
Raw Normal View History

2020-04-11 21:04:24 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkgconfig
, openssl
, libredirect
, writeText
}:
rustPlatform.buildRustPackage rec {
pname = "nym";
2020-06-07 19:32:28 +01:00
version = "0.7.0";
2020-04-11 21:04:24 +01:00
src = fetchFromGitHub {
owner = "nymtech";
repo = "nym";
rev = "v${version}";
2020-06-07 19:32:28 +01:00
sha256 = "05bxrpqwwf9spydac0q8sly65q8f1nk13i5fy3p5adr1phzxdnr8";
2020-04-11 21:04:24 +01:00
};
2020-06-07 19:32:28 +01:00
cargoSha256 = "0mh8cwia86bm68b0wcrmnsq1af5cp6kj1j81nwxb03awnqpxc34n";
2020-04-11 21:04:24 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ];
2020-06-07 19:32:28 +01:00
# tests disabled until a release with https://github.com/nymtech/nym/pull/260 is available
doCheck = false;
2020-04-11 21:04:24 +01: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 19:32:28 +01:00
platforms = with platforms; intersectLists (linux ++ darwin) (concatLists [ x86 x86_64 aarch64 arm ]);
2020-04-11 21:04:24 +01:00
};
}