nsd: fix description, license and platforms

This commit is contained in:
Christoph Hrdinka 2014-09-28 15:30:39 +02:00
parent f1b3196f2d
commit f5cd9d2460

View File

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