2018-05-29 12:54:28 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, qtbase }:
|
2008-07-07 12:48:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-29 12:54:28 +01:00
|
|
|
name = "qgit-2.8";
|
2016-02-09 11:04:13 +00:00
|
|
|
|
2018-05-29 12:54:28 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tibirna";
|
|
|
|
repo = "qgit";
|
2018-02-03 23:58:39 +00:00
|
|
|
rev = name;
|
2018-05-29 12:54:28 +01:00
|
|
|
sha256 = "01l6mz2f333x3zbfr68mizwpsh6sdsnadcavpasidiych1m5ry8f";
|
2008-07-07 12:48:24 +01:00
|
|
|
};
|
2016-02-09 11:04:13 +00:00
|
|
|
|
2017-02-02 01:55:47 +00:00
|
|
|
buildInputs = [ qtbase ];
|
2016-02-09 11:04:13 +00:00
|
|
|
|
2017-02-02 01:55:47 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-04-17 00:42:02 +01:00
|
|
|
|
2018-02-03 23:58:39 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-02-02 01:55:47 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.gpl2;
|
2019-03-31 20:48:30 +01:00
|
|
|
homepage = https://github.com/tibirna/qgit;
|
2016-02-09 11:04:13 +00:00
|
|
|
description = "Graphical front-end to Git";
|
2019-02-09 19:49:24 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg markuskowa ];
|
2017-02-02 01:55:47 +00:00
|
|
|
inherit (qtbase.meta) platforms;
|
2016-02-09 11:04:13 +00:00
|
|
|
};
|
2008-07-07 12:48:24 +01:00
|
|
|
}
|