summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-bz/default.nix
blob: 4c4ff62901e5867b11d8719c15b71632ad370340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ stdenv, fetchgit, python, asciidoc, xmlto, pysqlite, makeWrapper }:

let
  version = "3.20110902";
in
stdenv.mkDerivation {
  name = "git-bz";

  src = fetchgit {
    url = "git://git.fishsoup.net/git-bz";
    rev = "refs/heads/master";
  };

  buildInputs = [
    makeWrapper python pysqlite # asciidoc xmlto
  ];

  buildPhase = ''
    true
    # make git-bz.1
  '';

  installPhase = ''
    mkdir -p $out
    mkdir -p $out/bin
    cp git-bz $out/bin
    wrapProgram $out/bin/git-bz \
      --prefix PYTHONPATH : "$(toPythonPath $python):$(toPythonPath $pysqlite)"
  '';

  meta = {
    homepage = "http://git.fishsoup.net/cgit/git-bz/";
    description = "integration of git with Bugzilla";
    license = stdenv.lib.licenses.gpl2;

    longDescription = ''
      git-bz is a tool for integrating the Git command line with the
      Bugzilla bug-tracking system. Operations such as attaching patches to
      bugs, applying patches in bugs to your current tree, and closing bugs
      once you've pushed the fixes publically can be done completely from
      the command line without having to go to your web browser.

      Authentication for git-bz is done by reading the cookies for the
      Bugzilla host from your web browser. In order to do this, git-bz needs
      to know how to access the cookies for your web browser; git-bz
      currently is able to do this for Firefox, Epiphany, Galeon and
      Chromium on Linux.
    '';

    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.pierron ];
    broken = true;
  };
}