mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
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 {
|
||||
name = "tracy-${version}";
|
||||
version = "0.6.3";
|
||||
pname = "tracy";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wolfpld";
|
||||
repo = "tracy";
|
||||
rev = "v${version}";
|
||||
sha256 = "0pgq8h5gq141zq1k4cgj6cp74kh4zqbp7h4wh29q4grjb04yy06i";
|
||||
sha256 = "07cmz2w7iv10f9i9q3fhg80s6riy9bxnk9xvc3q4lw47mc150skp";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ glfw ]
|
||||
buildInputs = [ glfw capstone ]
|
||||
++ lib.optionals stdenv.isDarwin [ Carbon AppKit freetype ]
|
||||
++ lib.optionals stdenv.isLinux [ gtk2 tbb ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = []
|
||||
NIX_CFLAGS_COMPILE = [ ]
|
||||
++ lib.optional stdenv.isLinux "-ltbb"
|
||||
++ lib.optional stdenv.cc.isClang "-faligned-allocation";
|
||||
|
||||
buildPhase = ''
|
||||
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 capture/build/unix/ release
|
||||
make -j $NIX_BUILD_CORES -C update/build/unix/ release
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
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 ./capture/build/unix/capture-release $out/bin/capture
|
||||
install -D ./update/build/unix/update-release $out/bin/update
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user