Merge pull request #67491 from markuskowa/upd-qgit

gitAndTools.qgit: 2.8 -> 2.9
This commit is contained in:
Peter Hoeg 2019-08-26 23:13:26 +08:00 committed by GitHub
commit 79e71f6b4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +1,21 @@
{ stdenv, fetchFromGitHub, cmake, qtbase }: { mkDerivation, lib, fetchFromGitHub, cmake, qtbase }:
stdenv.mkDerivation rec { mkDerivation rec {
name = "qgit-2.8"; pname = "qgit";
version = "2.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tibirna"; owner = "tibirna";
repo = "qgit"; repo = "qgit";
rev = name; rev = "${pname}-${version}";
sha256 = "01l6mz2f333x3zbfr68mizwpsh6sdsnadcavpasidiych1m5ry8f"; sha256 = "0n4dq9gffm9yd7n5p5qcdfgrmg2kwnfd51hfx10adgj9ibxlnc3z";
}; };
buildInputs = [ qtbase ]; buildInputs = [ qtbase ];
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
enableParallelBuilding = true; meta = with lib; {
meta = with stdenv.lib; {
license = licenses.gpl2; license = licenses.gpl2;
homepage = https://github.com/tibirna/qgit; homepage = https://github.com/tibirna/qgit;
description = "Graphical front-end to Git"; description = "Graphical front-end to Git";