summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/qgit/default.nix
blob: a7e6a62ce5f5eee3e1c1592f8b84a6a2dd824226 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, qt, libXext, libX11}:

stdenv.mkDerivation rec {
  name = "qgit-2.5";
  meta =
  {
    license = stdenv.lib.licenses.gpl2;
    homepage = "http://libre.tibirna.org/projects/qgit/wiki/QGit";
    description = "Graphical front-end to Git";
    inherit (qt.meta) platforms;
  };
  src = fetchurl
  {
    url = "http://libre.tibirna.org/attachments/download/9/${name}.tar.gz";
    sha256 = "25f1ca2860d840d87b9919d34fc3a1b05d4163671ed87d29c3e4a8a09e0b2499";
  };
  buildInputs = [qt libXext libX11];
  configurePhase = "qmake PREFIX=$out";
  installPhase = ''
    install -s -D -m 755 bin/qgit "$out/bin/qgit"
  '';
}