nixpkgs/pkgs/applications/version-management/git-and-tools/qgit/default.nix

27 lines
614 B
Nix
Raw Normal View History

2018-05-29 11:54:28 +00:00
{ stdenv, fetchFromGitHub, cmake, qtbase }:
stdenv.mkDerivation rec {
2018-05-29 11:54:28 +00:00
name = "qgit-2.8";
2018-05-29 11:54:28 +00:00
src = fetchFromGitHub {
owner = "tibirna";
repo = "qgit";
rev = name;
2018-05-29 11:54:28 +00:00
sha256 = "01l6mz2f333x3zbfr68mizwpsh6sdsnadcavpasidiych1m5ry8f";
};
buildInputs = [ qtbase ];
nativeBuildInputs = [ cmake ];
2016-04-16 23:42:02 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
license = licenses.gpl2;
homepage = http://libre.tibirna.org/projects/qgit/wiki/QGit;
description = "Graphical front-end to Git";
maintainers = with maintainers; [ peterhoeg ];
inherit (qtbase.meta) platforms;
};
}