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
];
meta = {
meta = with stdenv.lib; {
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
};
}

View File

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