gpodder: add myself as maintainer

This commit is contained in:
Jörg Thalheim 2017-03-21 17:12:07 +01:00
parent 13ede040f1
commit dd13d24e30
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -55,15 +55,15 @@ python2Packages.buildPythonApplication rec {
LC_ALL=C python -m gpodder.unittests
'';
meta = {
meta = with stdenv.lib; {
description = "A podcatcher written in python";
longDescription = ''
gPodder downloads and manages free audio and video content (podcasts)
for you. Listen directly on your computer or on your mobile devices.
'';
homepage = "http://gpodder.org/";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = [ stdenv.lib.maintainers.skeidel ];
license = licenses.gpl3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ skeidel mic92 ];
};
}