From f5cd9d2460a06c86a7be1af626de7d982f50882e Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Sun, 28 Sep 2014 15:30:39 +0200 Subject: [PATCH] nsd: fix description, license and platforms --- pkgs/servers/dns/nsd/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/dns/nsd/default.nix b/pkgs/servers/dns/nsd/default.nix index a07bcd54142..c0b460778d9 100644 --- a/pkgs/servers/dns/nsd/default.nix +++ b/pkgs/servers/dns/nsd/default.nix @@ -33,11 +33,12 @@ stdenv.mkDerivation rec { ++ edf rootServer "root-server" ++ [ "--with-ssl=${openssl}" "--with-libevent=${libevent}" ]; - meta = { - description = "Authoritative only, high performance, simple and open source name server."; - license = "BSD"; + meta = with stdenv.lib; { homepage = http://www.nlnetlabs.nl; - maintainers = with stdenv.lib.maintainers; [ hrdinka ]; - platforms = with stdenv.lib.platforms; linux; + description = "Authoritative only, high performance, simple and open source name server"; + license = licenses.bsd3; + + platforms = platforms.unix; + maintainers = [ maintainers.hrdinka ]; }; }