nixpkgs/pkgs/tools/networking/boringtun/default.nix

29 lines
846 B
Nix
Raw Normal View History

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