ZNC modules: expose meta properly, fix typo in license

This commit is contained in:
Evgeny Egorochkin 2013-11-12 14:43:29 +02:00
parent f685b08d0d
commit 39e9fabae0

View file

@ -10,7 +10,7 @@ let
inherit buildPhase; inherit buildPhase;
inherit installPhase; inherit installPhase;
meta.platforms = stdenv.lib.platforms.unix; meta = a.meta // { platforms = stdenv.lib.platforms.unix; };
passthru.module_name = module_name; passthru.module_name = module_name;
}); });
@ -30,7 +30,7 @@ in rec {
description = "Push notification service module for ZNC"; description = "Push notification service module for ZNC";
homepage = https://github.com/jreese/znc-push; homepage = https://github.com/jreese/znc-push;
repositories.git = https://github.com/jreese/znc-push.git; repositories.git = https://github.com/jreese/znc-push.git;
license = stdenv.lib.license.mit; license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.offline ]; maintainers = [ stdenv.lib.maintainers.offline ];
}; };
}; };