[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: Add tracy.
From: |
guix-commits |
Subject: |
06/07: gnu: Add tracy. |
Date: |
Tue, 26 Sep 2023 11:33:38 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 031784f9f9ab0782abf646d3c764294516dbcd99
Author: dan <i@dan.games>
AuthorDate: Mon Sep 25 01:14:00 2023 +0800
gnu: Add tracy.
* gnu/packages/profiling.scm (tracy): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/profiling.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/profiling.scm b/gnu/packages/profiling.scm
index 23f989a85c..3615eb417c 100644
--- a/gnu/packages/profiling.scm
+++ b/gnu/packages/profiling.scm
@@ -30,6 +30,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base) ;for "which"
+ #:use-module (gnu packages bash) ;for "which"
#:use-module (gnu packages bison)
#:use-module (gnu packages compression)
#:use-module (gnu packages documentation)
@@ -463,3 +464,18 @@ high-performance computing (HPC) applications.")
"A real time, nanosecond resolution, remote telemetry, hybrid frame and
sampling profiler for games and other applications.")
(license license:bsd-3)))
+
+(define-public tracy
+ (package;xb
+ (inherit tracy-wayland)
+ (name "tracy")
+ (arguments
+ (substitute-keyword-arguments (package-arguments tracy-wayland)
+ ((#:make-flags flags #~'())
+ #~(append #$flags
+ ;; The LEGACY flag indicate we want to build tracy with glfw.
+ (list "LEGACY=1")))))
+ (inputs (modify-inputs (package-inputs tracy-wayland)
+ (delete "libxkbcommon" "wayland")
+ (prepend glfw)))
+ (synopsis "Frame profiler (X11 version)")))
- branch master updated (b2887da40c -> 4d904f2b16), guix-commits, 2023/09/26
- 02/07: gnu: capstone: Update to 5.0.1., guix-commits, 2023/09/26
- 05/07: gnu: Add tracy-wayland., guix-commits, 2023/09/26
- 04/07: gnu: glfw: Patch dlopen calls., guix-commits, 2023/09/26
- 03/07: gnu: imgui: Enable freetype support., guix-commits, 2023/09/26
- 06/07: gnu: Add tracy.,
guix-commits <=
- 01/07: gnu: gtypist: Install the gtypist-mode Emacs major mode., guix-commits, 2023/09/26
- 07/07: gnu: imgui: Update to 1.89.9., guix-commits, 2023/09/26