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

CC @nbp (I assume it was abandoned years ago, apologies otherwise).

+7 -8
+7 -8
pkgs/applications/version-management/git-and-tools/git-bz/default.nix
··· 31 31 --prefix PYTHONPATH : "$(toPythonPath "${pythonPackages.pysqlite}")" 32 32 ''; 33 33 34 - meta = { 35 - homepage = "http://git.fishsoup.net/cgit/git-bz/"; 36 - description = "integration of git with Bugzilla"; 37 - license = stdenv.lib.licenses.gpl2; 38 - 34 + meta = with stdenv.lib; { 35 + inherit version; 36 + description = "Bugzilla integration for git"; 39 37 longDescription = '' 40 38 git-bz is a tool for integrating the Git command line with the 41 39 Bugzilla bug-tracking system. Operations such as attaching patches to ··· 49 47 currently is able to do this for Firefox, Epiphany, Galeon and 50 48 Chromium on Linux. 51 49 ''; 50 + license = licenses.gpl2Plus; 51 + homepage = http://git.fishsoup.net/cgit/git-bz/; 52 52 53 - platforms = stdenv.lib.platforms.linux; 54 - maintainers = [ stdenv.lib.maintainers.pierron ]; 55 - broken = true; 53 + mantainers = with maintainers; [ nckx ]; 54 + platforms = platforms.linux; 56 55 }; 57 56 }