mycelium: 0.5.0 -> 0.5.1
https://github.com/threefoldtech/mycelium/releases/tag/v0.5.1
This commit is contained in:
parent
5c24cf2f0a
commit
7210dec792
2 changed files with 445 additions and 206 deletions
640
pkgs/by-name/my/mycelium/Cargo.lock
generated
640
pkgs/by-name/my/mycelium/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -2,18 +2,19 @@
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, stdenv
|
, stdenv
|
||||||
|
, openssl
|
||||||
, darwin
|
, darwin
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "mycelium";
|
pname = "mycelium";
|
||||||
version = "0.5.0";
|
version = "0.5.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "threefoldtech";
|
owner = "threefoldtech";
|
||||||
repo = "mycelium";
|
repo = "mycelium";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-K82LHVXbSMIJQlQ/qUpdCBVlAEZWyMMG2eUt2FzNwRE=";
|
hash = "sha256-x3XqFKcOLwKhgF/DKo8Qp3QLyaE2hdCTjfLSE8K3ifQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
|
@ -28,6 +29,12 @@ rustPlatform.buildRustPackage rec {
|
||||||
darwin.apple_sdk.frameworks.SystemConfiguration
|
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; {
|
meta = with lib; {
|
||||||
description = "End-2-end encrypted IPv6 overlay network";
|
description = "End-2-end encrypted IPv6 overlay network";
|
||||||
homepage = "https://github.com/threefoldtech/mycelium";
|
homepage = "https://github.com/threefoldtech/mycelium";
|
||||||
|
|
Loading…
Reference in a new issue