Move automoc4 out of kde-4.x/

kde-4.x/ is for software that is released with kde releases,
not for anything hosted on *.kde.org or in kde svn/git.

svn path=/nixpkgs/trunk/; revision=26048
This commit is contained in:
Yury G. Kudryashov
2011-02-22 06:19:05 +00:00
parent d89d26cdd2
commit 3b3f50e405
5 changed files with 6 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
{stdenv, fetchurl, cmake, qt4}:
stdenv.mkDerivation rec {
name = "automoc4-0.9.88";
src = fetchurl {
url = "mirror://kde/stable/automoc4/0.9.88/${name}.tar.bz2";
sha256 = "0jackvg0bdjg797qlbbyf9syylm0qjs55mllhn11vqjsq3s1ch93";
};
buildInputs = [ cmake qt4 ];
meta = with stdenv.lib; {
homepage = http://techbase.kde.org/Development/Tools/Automoc4;
description = "KDE Meta Object Compiler";
license = licenses.bsd2;
maintainers = [ maintainers.sander maintainers.urkud ];
};
}