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

26 lines
606 B
Nix
Raw Normal View History

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