depot/third_party/nixpkgs/pkgs/applications/version-management/qgit/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

26 lines
636 B
Nix

{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase }:
mkDerivation rec {
pname = "qgit";
version = "2.10";
src = fetchFromGitHub {
owner = "tibirna";
repo = "qgit";
rev = "${pname}-${version}";
sha256 = "sha256-xM0nroWs4WByc2O469zVeAlzKn6LLr+8WDlEdSjtRYI=";
};
buildInputs = [ qtbase ];
nativeBuildInputs = [ cmake ];
meta = with lib; {
license = licenses.gpl2Only;
homepage = "https://github.com/tibirna/qgit";
description = "Graphical front-end to Git";
maintainers = with maintainers; [ peterhoeg markuskowa ];
inherit (qtbase.meta) platforms;
mainProgram = "qgit";
};
}