nixpkgs/pkgs/by-name/ze/zeronsd/package.nix
Dennis Stengele 6f3ba8d714
nixos/zeronsd: init module and package (#253610)
* zeronsd: init at 0.5.2

* nixos/zeronsd: init at 0.5.2

This is the module for the new zeronsd package.
2024-07-26 15:20:56 +02:00

40 lines
922 B
Nix

{
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 ];
};
}