mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
28 lines
655 B
Nix
28 lines
655 B
Nix
{ stdenv, fetchurl, qt4, qmake4Hook, 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 (qt4.meta) platforms;
|
|
};
|
|
|
|
src = fetchurl
|
|
{
|
|
url = "http://libre.tibirna.org/attachments/download/9/${name}.tar.gz";
|
|
sha256 = "25f1ca2860d840d87b9919d34fc3a1b05d4163671ed87d29c3e4a8a09e0b2499";
|
|
};
|
|
|
|
buildInputs = [ qt4 libXext libX11 ];
|
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
installPhase = ''
|
|
install -s -D -m 755 bin/qgit "$out/bin/qgit"
|
|
'';
|
|
}
|