{ lib , rustPlatform , fetchFromGitHub , nixosTests }: rustPlatform.buildRustPackage rec { pname = "aardvark-dns"; version = "1.9.0"; src = fetchFromGitHub { owner = "containers"; repo = pname; rev = "v${version}"; hash = "sha256-ZpZlmAlHtlg7a/81TEGRj80Z6Vahk0CFgQmjU9W/tc8="; }; cargoHash = "sha256-6OMiLcSTndX/c5xHe896PMuRpvT21jFpDfCxH15UQIA="; passthru.tests = { inherit (nixosTests) podman; }; meta = with lib; { changelog = "https://github.com/containers/aardvark-dns/releases/tag/${src.rev}"; description = "Authoritative dns server for A/AAAA container records"; homepage = "https://github.com/containers/aardvark-dns"; license = licenses.asl20; maintainers = with maintainers; [ ] ++ teams.podman.members; platforms = platforms.linux; }; }