heaptrack: migrate to by-name, move out of top-level

This commit is contained in:
Guy Chronister
2025-10-04 11:29:19 -05:00
parent b1ebcf1a85
commit 4b06014349
2 changed files with 7 additions and 14 deletions
@@ -3,7 +3,6 @@
stdenv,
fetchFromGitLab,
cmake,
extra-cmake-modules,
makeBinaryWrapper,
zlib,
boost,
@@ -11,14 +10,7 @@
elfutils,
sparsehash,
zstd,
qtbase,
wrapQtAppsHook,
kio,
kitemmodels,
threadweaver,
kconfigwidgets,
kcoreaddons,
kdiagram,
kdePackages,
}:
stdenv.mkDerivation {
@@ -35,9 +27,9 @@ stdenv.mkDerivation {
nativeBuildInputs = [
cmake
extra-cmake-modules
kdePackages.extra-cmake-modules
makeBinaryWrapper
wrapQtAppsHook
kdePackages.wrapQtAppsHook
];
buildInputs = [
@@ -46,6 +38,8 @@ stdenv.mkDerivation {
libunwind
sparsehash
zstd
]
++ (with kdePackages; [
qtbase
kio
kitemmodels
@@ -53,7 +47,8 @@ stdenv.mkDerivation {
kconfigwidgets
kcoreaddons
kdiagram
]
])
++ lib.optionals stdenv.hostPlatform.isLinux [
elfutils
];
-2
View File
@@ -3091,8 +3091,6 @@ with pkgs;
threadsafe = true;
};
heaptrack = kdePackages.callPackage ../development/tools/profiling/heaptrack { };
headscale = callPackage ../servers/headscale { };
highlight = callPackage ../tools/text/highlight {