From 7b218ead961c68000d88cdaf9d3fcb3941ea1f90 Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Sun, 2 Nov 2014 15:58:11 -0500 Subject: [PATCH] Add titanous as a maintainer to libcec and xbmc --- pkgs/applications/video/xbmc/default.nix | 6 +++--- pkgs/development/libraries/libcec/default.nix | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/video/xbmc/default.nix b/pkgs/applications/video/xbmc/default.nix index a82abb220050..65a930a261c9 100644 --- a/pkgs/applications/video/xbmc/default.nix +++ b/pkgs/applications/video/xbmc/default.nix @@ -99,11 +99,11 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with stdenv.lib; { homepage = http://xbmc.org/; description = "Media center"; license = "GPLv2"; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + platforms = platforms.linux; + maintainers = [ maintainers.iElectric maintainers.titanous ]; }; } diff --git a/pkgs/development/libraries/libcec/default.nix b/pkgs/development/libraries/libcec/default.nix index 6f19eb502d3a..564e4bca52f1 100644 --- a/pkgs/development/libraries/libcec/default.nix +++ b/pkgs/development/libraries/libcec/default.nix @@ -12,11 +12,12 @@ stdenv.mkDerivation { buildInputs = [ autoreconfHook pkgconfig udev ]; - meta = { + meta = with stdenv.lib; { description = "USB CEC adapter communication library"; homepage = "http://libcec.pulse-eight.com"; repositories.git = "https://github.com/Pulse-Eight/libcec.git"; license = "GPLv2+"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = [ maintainers.titanous ]; }; }