mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
a93903de39
Infra upgrade as part of #79975; no functional change expected.
28 lines
853 B
Nix
28 lines
853 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform, darwin }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "boringtun";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudflare";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1mijy51hd8c4as9g4ivpfxismc9m5m3nhibfvclh3wrlcmp1ha9c";
|
|
};
|
|
|
|
cargoSha256 = "1kbbkbrfjff4yicwanydmcjr2av6s6wrsgafpvbh255vvkd7mr6x";
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
|
|
|
# Testing this project requires sudo, Docker and network access, etc.
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Userspace WireGuard® implementation in Rust";
|
|
homepage = https://github.com/cloudflare/boringtun;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ xrelkd marsam ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|