summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-15 05:21:26 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-15 05:31:47 +0100
commitd1440745c6e6f6ee611679dc30b40cb963724427 (patch)
tree35697d7d05f8f6048888d6258fc00bbba03fd1f4 /pkgs/applications/version-management
parent36a68c8b6bcfd4be96b044bd99f1cf43e1b22281 (diff)
downloadnixlib-d1440745c6e6f6ee611679dc30b40cb963724427.tar
nixlib-d1440745c6e6f6ee611679dc30b40cb963724427.tar.gz
nixlib-d1440745c6e6f6ee611679dc30b40cb963724427.tar.bz2
nixlib-d1440745c6e6f6ee611679dc30b40cb963724427.tar.lz
nixlib-d1440745c6e6f6ee611679dc30b40cb963724427.tar.xz
nixlib-d1440745c6e6f6ee611679dc30b40cb963724427.tar.zst
nixlib-d1440745c6e6f6ee611679dc30b40cb963724427.zip
git-bz: meta: un-break; fix licence; maintain
CC @nbp (I assume it was abandoned years ago, apologies otherwise).
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git-bz/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix
index 1ae5579dd8cf..4a059367678b 100644
--- a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix
@@ -31,11 +31,9 @@ stdenv.mkDerivation {
       --prefix PYTHONPATH : "$(toPythonPath "${pythonPackages.pysqlite}")"
   '';
 
-  meta = {
-    homepage = "http://git.fishsoup.net/cgit/git-bz/";
-    description = "integration of git with Bugzilla";
-    license = stdenv.lib.licenses.gpl2;
-
+  meta = with stdenv.lib; {
+    inherit version;
+    description = "Bugzilla integration for git";
     longDescription = ''
       git-bz is a tool for integrating the Git command line with the
       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
       Chromium on Linux.
     '';
+    license = licenses.gpl2Plus;
+    homepage = http://git.fishsoup.net/cgit/git-bz/;
 
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.pierron ];
-    broken = true;
+    mantainers = with maintainers; [ nckx ];
+    platforms = platforms.linux;
   };
 }