2017-02-02 01:55:47 +00:00
|
|
|
{ stdenv, fetchurl, cmake, qtbase }:
|
2008-07-07 11:48:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-02 01:55:47 +00:00
|
|
|
name = "qgit-2.6";
|
2016-02-09 11:04:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-02-02 01:55:47 +00:00
|
|
|
url = "http://libre.tibirna.org/attachments/download/12/${name}.tar.gz";
|
|
|
|
sha256 = "1brrhac6s6jrw3djhgailg5d5s0vgrfvr0sczqgzpp3i6pxf8qzl";
|
2008-07-07 11:48:24 +00: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-16 23:42:02 +00:00
|
|
|
|
2017-02-02 01:55:47 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.gpl2;
|
|
|
|
homepage = http://libre.tibirna.org/projects/qgit/wiki/QGit;
|
2016-02-09 11:04:13 +00:00
|
|
|
description = "Graphical front-end to Git";
|
2017-02-02 01:55:47 +00:00
|
|
|
maintainer = with maintainers; [ peterhoeg ];
|
|
|
|
inherit (qtbase.meta) platforms;
|
2016-02-09 11:04:13 +00:00
|
|
|
};
|
2008-07-07 11:48:24 +00:00
|
|
|
}
|