about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/qgit/default.nix
blob: 06c8bb8cb2dd533e839fa705cf0ee5d3fe8befac (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
{ stdenv, fetchFromGitHub, cmake, qtbase }:

stdenv.mkDerivation rec {
  name = "qgit-2.8";

  src = fetchFromGitHub {
    owner = "tibirna";
    repo = "qgit";
    rev = name;
    sha256 = "01l6mz2f333x3zbfr68mizwpsh6sdsnadcavpasidiych1m5ry8f";
  };

  buildInputs = [ qtbase ];

  nativeBuildInputs = [ cmake ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    license = licenses.gpl2;
    homepage = https://github.com/tibirna/qgit;
    description = "Graphical front-end to Git";
    maintainers = with maintainers; [ peterhoeg markuskowa ];
    inherit (qtbase.meta) platforms;
  };
}