Merge pull request #91229 from nagisa/nagisa/tracy-binaries
This commit is contained in:
commit
5d9cb9a0c2
@ -1,34 +1,38 @@
|
|||||||
{ stdenv, lib, darwin, fetchFromGitHub, tbb, gtk2, glfw, pkgconfig, freetype, Carbon, AppKit }:
|
{ stdenv, lib, darwin, fetchFromGitHub, tbb, gtk2, glfw, pkgconfig, freetype, Carbon, AppKit, capstone }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "tracy-${version}";
|
pname = "tracy";
|
||||||
version = "0.6.3";
|
version = "0.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "wolfpld";
|
owner = "wolfpld";
|
||||||
repo = "tracy";
|
repo = "tracy";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0pgq8h5gq141zq1k4cgj6cp74kh4zqbp7h4wh29q4grjb04yy06i";
|
sha256 = "07cmz2w7iv10f9i9q3fhg80s6riy9bxnk9xvc3q4lw47mc150skp";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [ glfw ]
|
buildInputs = [ glfw capstone ]
|
||||||
++ lib.optionals stdenv.isDarwin [ Carbon AppKit freetype ]
|
++ lib.optionals stdenv.isDarwin [ Carbon AppKit freetype ]
|
||||||
++ lib.optionals stdenv.isLinux [ gtk2 tbb ];
|
++ lib.optionals stdenv.isLinux [ gtk2 tbb ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = []
|
NIX_CFLAGS_COMPILE = [ ]
|
||||||
++ lib.optional stdenv.isLinux "-ltbb"
|
++ lib.optional stdenv.isLinux "-ltbb"
|
||||||
++ lib.optional stdenv.cc.isClang "-faligned-allocation";
|
++ lib.optional stdenv.cc.isClang "-faligned-allocation";
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make -j $NIX_BUILD_CORES -C profiler/build/unix release
|
make -j $NIX_BUILD_CORES -C profiler/build/unix release
|
||||||
make -j $NIX_BUILD_CORES -C import-chrome/build/unix/ release
|
make -j $NIX_BUILD_CORES -C import-chrome/build/unix/ release
|
||||||
|
make -j $NIX_BUILD_CORES -C capture/build/unix/ release
|
||||||
|
make -j $NIX_BUILD_CORES -C update/build/unix/ release
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -D ./profiler/build/unix/Tracy-release $out/bin/Tracy
|
install -D ./profiler/build/unix/Tracy-release $out/bin/Tracy
|
||||||
install -D ./import-chrome/build/unix/import-chrome-release $out/bin/import-chrome
|
install -D ./import-chrome/build/unix/import-chrome-release $out/bin/import-chrome
|
||||||
|
install -D ./capture/build/unix/capture-release $out/bin/capture
|
||||||
|
install -D ./update/build/unix/update-release $out/bin/update
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user