misuzu 2023-08-26 12:14:44 +03:00 committed by GitHub
parent eb0af25a29
commit 9b30d7b2b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 329 additions and 356 deletions

File diff suppressed because it is too large Load diff

View file

@ -2,10 +2,8 @@
, stdenv , stdenv
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, buildPackages , buildPackages
, cargo , cargo
, iproute2
, lzo , lzo
, openssl , openssl
, pkg-config , pkg-config
@ -16,13 +14,13 @@
let let
pname = "zerotierone"; pname = "zerotierone";
version = "1.10.6"; version = "1.12.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zerotier"; owner = "zerotier";
repo = "ZeroTierOne"; repo = "ZeroTierOne";
rev = version; rev = version;
sha256 = "sha256-mapFKeF+8jMGkxSuHaw5oUdTdSQgAdxEwF/S6iyVLbY="; sha256 = "sha256-430wdPrSNohM3sXewusjsW3tbE7EFGISGxABZF21yRc=";
}; };
in stdenv.mkDerivation { in stdenv.mkDerivation {
@ -62,8 +60,6 @@ in stdenv.mkDerivation {
lzo lzo
openssl openssl
zlib zlib
] ++ lib.optional stdenv.isLinux [
iproute2
]; ];
enableParallelBuilding = true; enableParallelBuilding = true;