From 877c668e771d5b00482c3cdfff76a64a43f1651c Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 10 Oct 2015 11:10:26 +0200 Subject: [PATCH] snabb: make meta.maintainers a list --- pkgs/tools/networking/snabb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/snabb/default.nix b/pkgs/tools/networking/snabb/default.nix index e4f70eaac14f..9ca8b56491d1 100644 --- a/pkgs/tools/networking/snabb/default.nix +++ b/pkgs/tools/networking/snabb/default.nix @@ -13,8 +13,8 @@ stdenv.mkDerivation rec { cp src/snabb $out/bin ''; -meta = with stdenv.lib; { - homepage = "https://github.com/SnabbCo/snabbswitch"; + meta = with stdenv.lib; { + homepage = https://github.com/SnabbCo/snabbswitch; description = "Simple and fast packet networking toolkit"; longDescription = '' Snabb Switch is a LuaJIT-based toolkit for writing high-speed @@ -26,7 +26,7 @@ meta = with stdenv.lib; { ''; platforms = [ "x86_64-linux" ]; license = licenses.asl20; - maintainers = maintainers.lukego; + maintainers = [ maintainers.lukego ]; }; }