mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
22ab3fe1ab
svn path=/nixpkgs/branches/kde-4.7/; revision=27645
15 lines
335 B
Nix
15 lines
335 B
Nix
{ kde, cmake, kdelibs, automoc4 }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake kdelibs automoc4 ];
|
|
|
|
meta = {
|
|
description = "A macros for profiling using QTime";
|
|
longDescription = "Don't commit any code using kprofilemethod.h to KDE repositories.";
|
|
kde = {
|
|
name = "kprofilemethod";
|
|
module = "kdesdk";
|
|
};
|
|
};
|
|
}
|