Add jgeerds to maintainers of khal and vdirsyncer

This commit is contained in:
Jascha Geerds 2015-05-30 01:26:29 +02:00
parent 446c9fefff
commit 2e583a4963
2 changed files with 8 additions and 10 deletions

View File

@ -25,11 +25,10 @@ pythonPackages.buildPythonPackage rec {
python.modules.sqlite3 python.modules.sqlite3
]; ];
meta = { meta = with stdenv.lib; {
homepage = http://lostpackets.de/khal/; homepage = http://lostpackets.de/khal/;
description = "CLI calendar application"; description = "CLI calendar application";
license = stdenv.lib.licenses.mit; license = licenses.mit;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ]; maintainers = with maintainers; [ matthiasbeyer jgeerds ];
}; };
} }

View File

@ -1,4 +1,4 @@
{ lib, fetchurl, pythonPackages }: { stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec { pythonPackages.buildPythonPackage rec {
version = "0.4.3"; version = "0.4.3";
@ -20,12 +20,11 @@ pythonPackages.buildPythonPackage rec {
atomicwrites atomicwrites
]; ];
meta = { meta = with stdenv.lib; {
homepage = https://github.com/untitaker/vdirsyncer; homepage = https://github.com/untitaker/vdirsyncer;
description = "Synchronize calendars and contacts"; description = "Synchronize calendars and contacts";
maintainers = [ lib.maintainers.matthiasbeyer ]; maintainers = with maintainers; [ matthiasbeyer jgeerds ];
platforms = lib.platforms.all; platforms = platforms.all;
license = lib.licenses.mit; license = licenses.mit;
}; };
} }