They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
137 lines
3.9 KiB
Nix
137 lines
3.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
ninja,
|
|
pkg-config,
|
|
wayland-scanner,
|
|
|
|
capstone,
|
|
dbus,
|
|
freetype,
|
|
glfw,
|
|
tbb,
|
|
|
|
withGtkFileSelector ? false,
|
|
gtk3,
|
|
|
|
withWayland ? stdenv.hostPlatform.isLinux,
|
|
libglvnd,
|
|
libxkbcommon,
|
|
wayland,
|
|
wayland-protocols,
|
|
}:
|
|
|
|
assert withGtkFileSelector -> stdenv.hostPlatform.isLinux;
|
|
assert withWayland -> stdenv.hostPlatform.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = if withWayland then "tracy-wayland" else "tracy-glfw";
|
|
version = "0.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wolfpld";
|
|
repo = "tracy";
|
|
rev = "v${version}";
|
|
hash = "sha256-HofqYJT1srDJ6Y1f18h7xtAbI/Gvvz0t9f0wBNnOZK8=";
|
|
};
|
|
|
|
patches = lib.optional (
|
|
stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11"
|
|
) ./dont-use-the-uniformtypeidentifiers-framework.patch;
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
cmake
|
|
ninja
|
|
pkg-config
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ wayland-scanner ]
|
|
++ lib.optionals stdenv.cc.isClang [ stdenv.cc.cc.libllvm ];
|
|
|
|
buildInputs =
|
|
[
|
|
capstone
|
|
freetype
|
|
tbb
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && withGtkFileSelector) [ gtk3 ]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && !withGtkFileSelector) [ dbus ]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && withWayland) [
|
|
libglvnd
|
|
libxkbcommon
|
|
wayland
|
|
wayland-protocols
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin || (stdenv.hostPlatform.isLinux && !withWayland)) [
|
|
glfw
|
|
];
|
|
|
|
cmakeFlags =
|
|
[
|
|
"-DDOWNLOAD_CAPSTONE=off"
|
|
"-DTRACY_STATIC=off"
|
|
]
|
|
++ lib.optional (stdenv.hostPlatform.isLinux && withGtkFileSelector) "-DGTK_FILESELECTOR=ON"
|
|
++ lib.optional (stdenv.hostPlatform.isLinux && !withWayland) "-DLEGACY=on";
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString (
|
|
[ ]
|
|
++ lib.optional stdenv.hostPlatform.isLinux "-ltbb"
|
|
# Workaround for https://github.com/NixOS/nixpkgs/issues/19098
|
|
++ lib.optional (stdenv.cc.isClang && stdenv.hostPlatform.isDarwin) "-fno-lto"
|
|
);
|
|
|
|
dontUseCmakeBuildDir = true;
|
|
|
|
postConfigure = ''
|
|
cmake -B capture/build -S capture $cmakeFlags
|
|
cmake -B csvexport/build -S csvexport $cmakeFlags
|
|
cmake -B import/build -S import $cmakeFlags
|
|
cmake -B profiler/build -S profiler $cmakeFlags
|
|
cmake -B update/build -S update $cmakeFlags
|
|
'';
|
|
|
|
postBuild = ''
|
|
ninja -C capture/build
|
|
ninja -C csvexport/build
|
|
ninja -C import/build
|
|
ninja -C profiler/build
|
|
ninja -C update/build
|
|
'';
|
|
|
|
postInstall =
|
|
''
|
|
install -D -m 0555 capture/build/tracy-capture -t $out/bin
|
|
install -D -m 0555 csvexport/build/tracy-csvexport $out/bin
|
|
install -D -m 0555 import/build/{tracy-import-chrome,tracy-import-fuchsia} -t $out/bin
|
|
install -D -m 0555 profiler/build/tracy-profiler $out/bin/tracy
|
|
install -D -m 0555 update/build/tracy-update -t $out/bin
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
substituteInPlace extra/desktop/tracy.desktop \
|
|
--replace-fail Exec=/usr/bin/tracy Exec=tracy
|
|
|
|
install -D -m 0444 extra/desktop/application-tracy.xml $out/share/mime/packages/application-tracy.xml
|
|
install -D -m 0444 extra/desktop/tracy.desktop $out/share/applications/tracy.desktop
|
|
install -D -m 0444 icon/application-tracy.svg $out/share/icons/hicolor/scalable/apps/application-tracy.svg
|
|
install -D -m 0444 icon/icon.png $out/share/icons/hicolor/256x256/apps/tracy.png
|
|
install -D -m 0444 icon/icon.svg $out/share/icons/hicolor/scalable/apps/tracy.svg
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Real time, nanosecond resolution, remote telemetry frame profiler for games and other applications";
|
|
homepage = "https://github.com/wolfpld/tracy";
|
|
license = licenses.bsd3;
|
|
mainProgram = "tracy";
|
|
maintainers = with maintainers; [
|
|
mpickering
|
|
nagisa
|
|
paveloom
|
|
];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|