2023-04-12 12:48:02 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, capstone
|
|
|
|
, freetype
|
|
|
|
, glfw
|
|
|
|
, dbus
|
|
|
|
, hicolor-icon-theme
|
|
|
|
, tbb
|
|
|
|
, darwin
|
2022-04-27 09:35:20 +00:00
|
|
|
}:
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
let
|
|
|
|
disableLTO = stdenv.cc.isClang && stdenv.isDarwin; # workaround issue #19098
|
2023-04-12 12:48:02 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2020-06-15 15:56:04 +00:00
|
|
|
pname = "tracy";
|
2023-04-12 12:48:02 +00:00
|
|
|
version = "0.9.1";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wolfpld";
|
|
|
|
repo = "tracy";
|
|
|
|
rev = "v${version}";
|
2023-04-12 12:48:02 +00:00
|
|
|
sha256 = "sha256-K1lQNRS8+ju9HyKNVXtHqslrPWcPgazzTitvwkIO3P4";
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
patches = lib.optionals (stdenv.isDarwin && !(lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11")) [
|
|
|
|
./0001-remove-unifiedtypeidentifiers-framework
|
|
|
|
];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
buildInputs = [
|
|
|
|
capstone
|
|
|
|
freetype
|
|
|
|
glfw
|
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
dbus
|
|
|
|
hicolor-icon-theme
|
|
|
|
tbb
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.AppKit
|
|
|
|
darwin.apple_sdk.frameworks.Carbon
|
|
|
|
] ++ lib.optionals (stdenv.isDarwin && lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11") [
|
|
|
|
darwin.apple_sdk.frameworks.UniformTypeIdentifiers
|
|
|
|
];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString ([ ]
|
2021-09-18 10:52:07 +00:00
|
|
|
# Apple's compiler finds a format string security error on
|
|
|
|
# ../../../server/TracyView.cpp:649:34, preventing building.
|
|
|
|
++ lib.optional stdenv.isDarwin "-Wno-format-security"
|
2020-06-18 07:06:33 +00:00
|
|
|
++ lib.optional stdenv.isLinux "-ltbb"
|
2021-04-08 16:26:57 +00:00
|
|
|
++ lib.optional stdenv.cc.isClang "-faligned-allocation"
|
2023-03-04 12:14:45 +00:00
|
|
|
++ lib.optional disableLTO "-fno-lto");
|
2021-04-08 16:26:57 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
buildPhase = ''
|
2023-04-12 12:48:02 +00:00
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
make -j $NIX_BUILD_CORES -C profiler/build/unix release LEGACY=1
|
2020-06-18 07:06:33 +00:00
|
|
|
make -j $NIX_BUILD_CORES -C import-chrome/build/unix/ release
|
2020-06-15 15:56:04 +00:00
|
|
|
make -j $NIX_BUILD_CORES -C capture/build/unix/ release
|
|
|
|
make -j $NIX_BUILD_CORES -C update/build/unix/ release
|
2023-04-12 12:48:02 +00:00
|
|
|
|
|
|
|
runHook postBuild
|
2020-06-18 07:06:33 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2023-04-12 12:48:02 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
install -D ./profiler/build/unix/Tracy-release $out/bin/Tracy
|
|
|
|
install -D ./import-chrome/build/unix/import-chrome-release $out/bin/import-chrome
|
2020-06-15 15:56:04 +00:00
|
|
|
install -D ./capture/build/unix/capture-release $out/bin/capture
|
|
|
|
install -D ./update/build/unix/update-release $out/bin/update
|
2023-04-12 12:48:02 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2020-06-18 07:06:33 +00:00
|
|
|
'';
|
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
postFixup = lib.optionalString stdenv.isDarwin ''
|
2020-09-25 04:45:31 +00:00
|
|
|
install_name_tool -change libcapstone.4.dylib ${capstone}/lib/libcapstone.4.dylib $out/bin/Tracy
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-10-19 00:13:06 +00:00
|
|
|
description = "A real time, nanosecond resolution, remote telemetry frame profiler for games and other applications";
|
2020-06-18 07:06:33 +00:00
|
|
|
homepage = "https://github.com/wolfpld/tracy";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
license = licenses.bsd3;
|
2020-09-25 04:45:31 +00:00
|
|
|
maintainers = with maintainers; [ mpickering nagisa ];
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
}
|