1{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase }:
2
3mkDerivation rec {
4 pname = "qgit";
5 version = "2.10";
6
7 src = fetchFromGitHub {
8 owner = "tibirna";
9 repo = "qgit";
10 rev = "${pname}-${version}";
11 sha256 = "sha256-xM0nroWs4WByc2O469zVeAlzKn6LLr+8WDlEdSjtRYI=";
12 };
13
14 buildInputs = [ qtbase ];
15
16 nativeBuildInputs = [ cmake ];
17
18 meta = with lib; {
19 license = licenses.gpl2Only;
20 homepage = "https://github.com/tibirna/qgit";
21 description = "Graphical front-end to Git";
22 maintainers = with maintainers; [ peterhoeg markuskowa ];
23 inherit (qtbase.meta) platforms;
24 };
25}