1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00
nixpkgs/pkgs/desktops/kde-4.7/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";
};
};
}