blob: 71eeb50e616353cb53bdf4e6306c4e6efd0e1927 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
rustfmt,
}:
rustPlatform.buildRustPackage rec {
pname = "zeronsd";
version = "0.5.2";
src = fetchFromGitHub {
owner = "zerotier";
repo = "zeronsd";
rev = "v${version}";
hash = "sha256-TL0bgzQgge6j1SpZCdxv/s4pBMSg4/3U5QisjkVE6BE=";
};
cargoHash = "sha256-WGap0j90obpJHiMNokCWg0Q3xIAqwvmiESg9NVnFMKE=";
strictDeps = true;
buildInputs = [ openssl ];
nativeBuildInputs = [ pkg-config ];
RUSTFMT = "${rustfmt}/bin/rustfmt";
# Integration tests try to access the ZeroTier API which requires an API token.
# https://github.com/zerotier/zeronsd/blob/v0.5.2/tests/service/network.rs#L10
doCheck = false;
meta = with lib; {
description = "A DNS server for ZeroTier users";
homepage = "https://github.com/zerotier/zeronsd";
license = licenses.bsd3;
maintainers = [ maintainers.dstengele ];
};
}
|