diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-19 00:39:35 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-19 00:43:11 +0200 |
commit | f87860166e050905474cb54be79d6dc203ac5b3e (patch) | |
tree | c60db8d3b6cf44f1a13fd06c0edcd320bfab5b95 | |
parent | 7e9544c352ac53ec8db9f3f14e10ece713e10a0c (diff) | |
download | guix-f87860166e050905474cb54be79d6dc203ac5b3e.tar.gz guix-f87860166e050905474cb54be79d6dc203ac5b3e.zip |
Revert "gnu: Add sysprof."
This reverts commit 4e36c8a07ba419ba1ab95e0dc6cc99bdd920e49e, which had added
a duplicate sysprof variable.
-rw-r--r-- | gnu/packages/gnome.scm | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6d30971b39..9ec869c281 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -730,55 +730,6 @@ services.") (home-page "https://csorianognome.wordpress.com/2015/07/07/cloud-providers/") (license license:lgpl3+))) -(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") |