2020-04-24 23:36:52 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase }:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "qgit";
|
2022-01-13 20:06:32 +00:00
|
|
|
version = "2.10";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tibirna";
|
|
|
|
repo = "qgit";
|
|
|
|
rev = "${pname}-${version}";
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-xM0nroWs4WByc2O469zVeAlzKn6LLr+8WDlEdSjtRYI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2021-02-05 17:12:51 +00:00
|
|
|
license = licenses.gpl2Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/tibirna/qgit";
|
|
|
|
description = "Graphical front-end to Git";
|
|
|
|
maintainers = with maintainers; [ peterhoeg markuskowa ];
|
|
|
|
inherit (qtbase.meta) platforms;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "qgit";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|