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

26 lines
611 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase }:
mkDerivation rec {
pname = "qgit";
2022-01-10 18:37:27 +00:00
version = "2.10";
2018-05-29 11:54:28 +00:00
src = fetchFromGitHub {
owner = "tibirna";
repo = "qgit";
rev = "${pname}-${version}";
2022-01-10 18:37:27 +00:00
sha256 = "1cwq43ywvii9zh4m31mgkgisfc9qhiixlz0zlv99skk9vb5v6r38";
};
buildInputs = [ qtbase ];
nativeBuildInputs = [ cmake ];
2016-04-16 23:42:02 +00: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;
};
}