mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
821cb7ccdc
I hope the mirror syntax is right. svn path=/nixpkgs/trunk/; revision=12306
19 lines
461 B
Nix
19 lines
461 B
Nix
{stdenv, fetchurl, qt, libXext, libX11}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qgit-1.5.8";
|
|
meta =
|
|
{
|
|
license = "GPLv2";
|
|
homepage = "http://digilander.libero.it/mcostalba/";
|
|
description = "Graphical front-end to Git";
|
|
};
|
|
src = fetchurl
|
|
{
|
|
url = "mirror://sourceforge/qgit/${name}.tar.bz2";
|
|
sha256 = "0qmgd1cjny5aciljpvn2bczgdvlpgd2f7wzafda24zj4mzqnppsq";
|
|
};
|
|
buildInputs = [qt libXext libX11];
|
|
configureFlags = "CXXFLAGS=-O3";
|
|
}
|