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:
16
pkgs/development/tools/misc/automoc4/default.nix
Normal file
16
pkgs/development/tools/misc/automoc4/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user