git-bz: meta: un-break; fix licence; maintain

CC @nbp (I assume it was abandoned years ago, apologies otherwise).
This commit is contained in:
Tobias Geerinckx-Rice 2016-01-15 05:21:26 +01:00
parent 36a68c8b6b
commit d1440745c6

View File

@ -31,11 +31,9 @@ stdenv.mkDerivation {
--prefix PYTHONPATH : "$(toPythonPath "${pythonPackages.pysqlite}")" --prefix PYTHONPATH : "$(toPythonPath "${pythonPackages.pysqlite}")"
''; '';
meta = { meta = with stdenv.lib; {
homepage = "http://git.fishsoup.net/cgit/git-bz/"; inherit version;
description = "integration of git with Bugzilla"; description = "Bugzilla integration for git";
license = stdenv.lib.licenses.gpl2;
longDescription = '' longDescription = ''
git-bz is a tool for integrating the Git command line with the git-bz is a tool for integrating the Git command line with the
Bugzilla bug-tracking system. Operations such as attaching patches to Bugzilla bug-tracking system. Operations such as attaching patches to
@ -49,9 +47,10 @@ stdenv.mkDerivation {
currently is able to do this for Firefox, Epiphany, Galeon and currently is able to do this for Firefox, Epiphany, Galeon and
Chromium on Linux. Chromium on Linux.
''; '';
license = licenses.gpl2Plus;
homepage = http://git.fishsoup.net/cgit/git-bz/;
platforms = stdenv.lib.platforms.linux; mantainers = with maintainers; [ nckx ];
maintainers = [ stdenv.lib.maintainers.pierron ]; platforms = platforms.linux;
broken = true;
}; };
} }