Add guitone.
It compiles. Haven't checked whether it works. svn path=/nixpkgs/trunk/; revision=24566
This commit is contained in:
parent
24d011bfbc
commit
3baea16bc6
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, fetchurl, qt4 }:
|
||||||
|
|
||||||
|
let version = "1.0rc4"; in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "guitone-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "${meta.homepage}/count.php/from=default/${version}/${name}.tgz";
|
||||||
|
sha256 = "08kcyar6p6v5z4dq6q6c1dhyxc2jj49qcd6lj3rdn1rb9hz4n7ms";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ qt4 ];
|
||||||
|
|
||||||
|
prefixKey="PREFIX=";
|
||||||
|
configureScript = "qmake";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Qt4 based GUI for monotone";
|
||||||
|
homepage = http://guitone.thomaskeller.biz;
|
||||||
|
inherit (qt4.meta) platforms;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5739,6 +5739,8 @@ let
|
||||||
python = pythonFull;
|
python = pythonFull;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
guitone = callPackage ../applications/version-management/guitone { };
|
||||||
|
|
||||||
gv = callPackage ../applications/misc/gv { };
|
gv = callPackage ../applications/misc/gv { };
|
||||||
|
|
||||||
hello = callPackage ../applications/misc/hello/ex-2 { };
|
hello = callPackage ../applications/misc/hello/ex-2 { };
|
||||||
|
|
Loading…
Reference in New Issue