2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
|
2019-04-12 09:25:26 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "boringtun";
|
2020-04-05 17:49:41 +00:00
|
|
|
version = "0.3.0";
|
2019-04-12 09:25:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
|
|
|
repo = pname;
|
2019-09-28 04:00:00 +00:00
|
|
|
rev = "v${version}";
|
2020-04-05 17:49:41 +00:00
|
|
|
sha256 = "0b57c7z87xwrirmq9aa9jswqyj5bavkifmq7a9hgfphcmwcskmdb";
|
2019-04-12 09:25:26 +00:00
|
|
|
};
|
|
|
|
|
2021-05-07 11:00:49 +00:00
|
|
|
cargoSha256 = "1xn6scc8nrb9xk89hsp9v67jvyww23rjaq5fcagpbqdwf5dvg4ja";
|
2019-04-12 09:25:26 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
2019-09-17 12:24:04 +00:00
|
|
|
|
2019-04-12 09:25:26 +00:00
|
|
|
# Testing this project requires sudo, Docker and network access, etc.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-04-12 09:25:26 +00:00
|
|
|
description = "Userspace WireGuard® implementation in Rust";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/cloudflare/boringtun";
|
2019-04-12 09:25:26 +00:00
|
|
|
license = licenses.bsd3;
|
2019-09-28 04:01:00 +00:00
|
|
|
maintainers = with maintainers; [ xrelkd marsam ];
|
2019-04-12 09:25:26 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|