2019-08-26 12:58:06 +02:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase }:
|
2008-07-07 13:48:24 +02:00
|
|
|
|
2019-08-26 12:58:06 +02:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "qgit";
|
|
|
|
version = "2.9";
|
2016-02-09 12:04:13 +01:00
|
|
|
|
2018-05-29 13:54:28 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tibirna";
|
|
|
|
repo = "qgit";
|
2019-08-26 12:58:06 +02:00
|
|
|
rev = "${pname}-${version}";
|
|
|
|
sha256 = "0n4dq9gffm9yd7n5p5qcdfgrmg2kwnfd51hfx10adgj9ibxlnc3z";
|
2008-07-07 13:48:24 +02:00
|
|
|
};
|
2016-02-09 12:04:13 +01:00
|
|
|
|
2017-02-02 02:55:47 +01:00
|
|
|
buildInputs = [ qtbase ];
|
2016-02-09 12:04:13 +01:00
|
|
|
|
2017-02-02 02:55:47 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-04-17 01:42:02 +02:00
|
|
|
|
2019-08-26 12:58:06 +02:00
|
|
|
meta = with lib; {
|
2017-02-02 02:55:47 +01:00
|
|
|
license = licenses.gpl2;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/tibirna/qgit";
|
2016-02-09 12:04:13 +01:00
|
|
|
description = "Graphical front-end to Git";
|
2019-02-09 20:49:24 +01:00
|
|
|
maintainers = with maintainers; [ peterhoeg markuskowa ];
|
2017-02-02 02:55:47 +01:00
|
|
|
inherit (qtbase.meta) platforms;
|
2016-02-09 12:04:13 +01:00
|
|
|
};
|
2008-07-07 13:48:24 +02:00
|
|
|
}
|