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

26 lines
610 B
Nix
Raw Normal View History

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