git-crypt: update maintainer

This commit is contained in:
Desmond O. Chang 2015-10-14 20:38:30 +08:00
parent 013cf1b4f2
commit b41742414e
2 changed files with 4 additions and 3 deletions

View File

@ -81,6 +81,7 @@
dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>"; dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>";
dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>"; dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>";
dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>"; dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>";
dochang = "Desmond O. Chang <dochang@gmail.com>";
doublec = "Chris Double <chris.double@double.co.nz>"; doublec = "Chris Double <chris.double@double.co.nz>";
ebzzry = "Rommel Martinez <ebzzry@gmail.com>"; ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>"; ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";

View File

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
make install PREFIX=$out make install PREFIX=$out
''; '';
meta = { meta = with stdenv.lib; {
homepage = "https://www.agwa.name/projects/git-crypt"; homepage = "https://www.agwa.name/projects/git-crypt";
description = "transparent file encryption in git"; description = "transparent file encryption in git";
longDescription = '' longDescription = ''
@ -33,9 +33,9 @@ stdenv.mkDerivation rec {
entire repository. entire repository.
''; '';
downloadPage = "https://github.com/AGWA/git-crypt/releases"; downloadPage = "https://github.com/AGWA/git-crypt/releases";
license = stdenv.lib.licenses.gpl3; license = licenses.gpl3;
version = "0.5.0"; version = "0.5.0";
maintainers = [ "Desmond O. Chang <dochang@gmail.com>" ]; maintainers = [ maintainers.dochang ];
}; };
} }