snabb: make meta.maintainers a list

This commit is contained in:
Pascal Wittmann 2015-10-10 11:10:26 +02:00
parent 0d2ae9c7e9
commit 877c668e77

View file

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