nixpkgs/pkgs/applications/version-management/git-and-tools/qgit/default.nix
Peter Hoeg 3d16d69b40 qgit: 2.5 -> 2.6 (#22360)
Also:

 - build the qt5 version by default instead of qt4
 - use cmake
2017-02-02 02:55:47 +01:00

22 lines
584 B
Nix

{ stdenv, fetchurl, cmake, qtbase }:
stdenv.mkDerivation rec {
name = "qgit-2.6";
src = fetchurl {
url = "http://libre.tibirna.org/attachments/download/12/${name}.tar.gz";
sha256 = "1brrhac6s6jrw3djhgailg5d5s0vgrfvr0sczqgzpp3i6pxf8qzl";
};
buildInputs = [ qtbase ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
license = licenses.gpl2;
homepage = http://libre.tibirna.org/projects/qgit/wiki/QGit;
description = "Graphical front-end to Git";
maintainer = with maintainers; [ peterhoeg ];
inherit (qtbase.meta) platforms;
};
}