[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
33/86: gnu: Add sysprof.
From: |
guix-commits |
Subject: |
33/86: gnu: Add sysprof. |
Date: |
Sun, 5 Jul 2020 16:16:59 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 400efde217334cff339ab146d1d83570b31b3fb1
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jun 5 22:22:56 2020 -0400
gnu: Add sysprof.
* gnu/packages/gnome.scm (sysprof): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 6bddce1..8300d97 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -261,6 +261,55 @@ Desktop. It is designed to be as simple as possible and
has some unique
features to enable users to create their discs easily and quickly.")
(license license:gpl2+)))
+(define-public sysprof
+ (package
+ (name "sysprof")
+ (version "3.36.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "024i0gzqnm79rpr4gqxdvcj6gvf82xdlcp2p1k9ikcppmi6xnw46"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas.
+ #:configure-flags
+ (list
+ ;; SystemD not required.
+ "-Dsystemdunitdir=/tmp")))
+ (native-inputs
+ `(("desktop-file-utils" ,desktop-file-utils)
+ ("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk+:bin" ,gtk+ "bin")
+ ("itstool" ,itstool)
+ ("pkg-config" ,pkg-config)
+ ("xmllint" ,libxml2)))
+ (inputs
+ `(("libdazzle" ,libdazzle)
+ ("libunwind" ,libunwind)
+ ("pango" ,pango)
+ ("polkit" ,polkit)))
+ (propagated-inputs
+ `(("glib" ,glib)
+ ("gtk+" ,gtk+)))
+ (synopsis "Kernel based performance profiler")
+ (description "Sysprof is a sampling profiler that uses a kernel module to
+generate stacktraces which are then interpreted by the userspace program
+sysprof.")
+ (home-page "https://wiki.gnome.org/Apps/Sysprof")
+ (license
+ (list
+ ;; For newer codes.
+ license:gpl3+
+ ;; For older codes.
+ license:gpl2+))))
+
(define-public gnome-photos
(package
(name "gnome-photos")
- 16/86: gnu: clutter: Update to 1.26.4., (continued)
- 16/86: gnu: clutter: Update to 1.26.4., guix-commits, 2020/07/05
- 19/86: gnu: cogl: Update package definition., guix-commits, 2020/07/05
- 26/86: gnu: Add presage., guix-commits, 2020/07/05
- 28/86: gnu: gcab: Update to 1.4., guix-commits, 2020/07/05
- 29/86: gnu: gcr: Update to 3.36.0., guix-commits, 2020/07/05
- 25/86: gnu: enchant: Update package definition., guix-commits, 2020/07/05
- 31/86: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/07/05
- 22/86: gnu: Add ronn., guix-commits, 2020/07/05
- 23/86: gnu: Add nuspell., guix-commits, 2020/07/05
- 30/86: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/07/05
- 33/86: gnu: Add sysprof.,
guix-commits <=
- 37/86: gnu: graphene: Update package definition., guix-commits, 2020/07/05
- 48/86: gnu: gst-plugins-base: Update package definition., guix-commits, 2020/07/05
- 32/86: gnu: geoclue: Update to 2.5.6., guix-commits, 2020/07/05
- 34/86: gnu: gjs: Update to 1.58.8., guix-commits, 2020/07/05
- 41/86: gnu: glib: Update package definition., guix-commits, 2020/07/05
- 45/86: gnu: gstreamer: Update package definition., guix-commits, 2020/07/05
- 59/86: gnu: Add directfb., guix-commits, 2020/07/05
- 50/86: gnu: Add nanomsg., guix-commits, 2020/07/05
- 14/86: gnu: google-brotli: Update package definition., guix-commits, 2020/07/05
- 44/86: gnu: gobject-introspection: Update package definition., guix-commits, 2020/07/05