Merge pull request #305341 from r-vdp/mycelium-0-5-1

mycelium: 0.5.0 -> 0.5.1
This commit is contained in:
Florian Klink 2024-04-19 23:24:41 +03:00 committed by GitHub
commit 19332fff69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 445 additions and 206 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2,18 +2,19 @@
, rustPlatform
, fetchFromGitHub
, stdenv
, openssl
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "mycelium";
version = "0.5.0";
version = "0.5.1";
src = fetchFromGitHub {
owner = "threefoldtech";
repo = "mycelium";
rev = "v${version}";
hash = "sha256-K82LHVXbSMIJQlQ/qUpdCBVlAEZWyMMG2eUt2FzNwRE=";
hash = "sha256-x3XqFKcOLwKhgF/DKo8Qp3QLyaE2hdCTjfLSE8K3ifQ=";
};
cargoLock = {
@ -28,6 +29,12 @@ rustPlatform.buildRustPackage rec {
darwin.apple_sdk.frameworks.SystemConfiguration
];
env = {
OPENSSL_NO_VENDOR = 1;
OPENSSL_LIB_DIR = "${lib.getLib openssl}/lib";
OPENSSL_DIR = "${lib.getDev openssl}";
};
meta = with lib; {
description = "End-2-end encrypted IPv6 overlay network";
homepage = "https://github.com/threefoldtech/mycelium";