hickory-dns: nixfmt

This commit is contained in:
wxt
2024-11-06 17:07:39 +08:00
parent 277211f755
commit 82dc05c26d
+10 -6
View File
@@ -1,8 +1,9 @@
{ lib
, fetchFromGitHub
, openssl
, pkg-config
, rustPlatform
{
lib,
fetchFromGitHub,
openssl,
pkg-config,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
@@ -28,7 +29,10 @@ rustPlatform.buildRustPackage rec {
homepage = "https://hickory-dns.org/";
maintainers = with maintainers; [ colinsane ];
platforms = platforms.linux;
license = with licenses; [ asl20 mit ];
license = with licenses; [
asl20
mit
];
mainProgram = "hickory-dns";
};
}