new: qgit is a qt-based graphical front-end for git

svn path=/nixpkgs/trunk/; revision=12299
This commit is contained in:
Peter Simons
2008-07-07 11:48:24 +00:00
parent e1c54b9b55
commit 4244407bc9
2 changed files with 23 additions and 0 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl, qt, libXext, libX11}:
stdenv.mkDerivation rec {
name = "qgit-1.5.8";
meta =
{
license = "GPLv2";
homepage = http://git.or.cz;
description = "Graphical front-end to Git";
};
src = fetchurl
{
url = "http://todo/${name}.tar.bz2";
sha256 = "0qmgd1cjny5aciljpvn2bczgdvlpgd2f7wzafda24zj4mzqnppsq";
};
buildInputs = [qt libXext libX11];
}