Merge pull request #4792 from titanous/titanous-maintainer

Add titanous as a maintainer to libcec and xbmc
This commit is contained in:
cillianderoiste 2014-11-02 22:07:38 +01:00
commit 9d5c8a78a2
2 changed files with 6 additions and 5 deletions

View File

@ -99,11 +99,11 @@ stdenv.mkDerivation rec {
done done
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://xbmc.org/; homepage = http://xbmc.org/;
description = "Media center"; description = "Media center";
license = "GPLv2"; license = "GPLv2";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = [ stdenv.lib.maintainers.iElectric ]; maintainers = [ maintainers.iElectric maintainers.titanous ];
}; };
} }

View File

@ -12,11 +12,12 @@ stdenv.mkDerivation {
buildInputs = [ autoreconfHook pkgconfig udev ]; buildInputs = [ autoreconfHook pkgconfig udev ];
meta = { meta = with stdenv.lib; {
description = "USB CEC adapter communication library"; description = "USB CEC adapter communication library";
homepage = "http://libcec.pulse-eight.com"; homepage = "http://libcec.pulse-eight.com";
repositories.git = "https://github.com/Pulse-Eight/libcec.git"; repositories.git = "https://github.com/Pulse-Eight/libcec.git";
license = "GPLv2+"; license = "GPLv2+";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.titanous ];
}; };
} }