nixpkgs/pkgs/desktops/kde-4.5/sdk/kstartperf.nix

16 lines
327 B
Nix
Raw Normal View History

{ kde, cmake, kdelibs, automoc4, libtool }:
kde.package {
buildInputs = [ cmake kdelibs automoc4 libtool ];
meta = {
description = "Measures start up time of a KDE application";
kde = {
name = "kstartperf";
module = "kdesdk";
version = "1.0";
versionFile = "kstartperf.cpp";
};
};
}