Merge pull request #209274 from r-ryantm/auto-update/hotspot

hotspot: 1.4.0 -> 1.4.1
This commit is contained in:
Weijia Wang 2023-02-10 18:18:43 +01:00 committed by GitHub
commit edf1ed600a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,13 +22,13 @@
mkDerivation rec { mkDerivation rec {
pname = "hotspot"; pname = "hotspot";
version = "1.4.0"; version = "1.4.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "KDAB"; owner = "KDAB";
repo = "hotspot"; repo = "hotspot";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-7GuIe8F3QqosW/XaN3KC1WeWcI7woUiEc9Nw0b+fSk0="; hash = "sha256-DW4R7+rnonmEMbCkNS7TGodw+3mEyHl6OlFK3kbG5HM=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -62,7 +62,7 @@ mkDerivation rec {
mkdir -p 3rdparty/{perfparser,PrefixTickLabels}/.git mkdir -p 3rdparty/{perfparser,PrefixTickLabels}/.git
''; '';
meta = { meta = with lib; {
description = "A GUI for Linux perf"; description = "A GUI for Linux perf";
longDescription = '' longDescription = ''
hotspot is a GUI replacement for `perf report`. hotspot is a GUI replacement for `perf report`.
@ -70,8 +70,9 @@ mkDerivation rec {
then displays the result in a graphical way. then displays the result in a graphical way.
''; '';
homepage = "https://github.com/KDAB/hotspot"; homepage = "https://github.com/KDAB/hotspot";
license = with lib.licenses; [ gpl2Only gpl3Only ]; changelog = "https://github.com/KDAB/hotspot/releases/tag/v${version}";
platforms = lib.platforms.linux; license = with licenses; [ gpl2Only gpl3Only ];
maintainers = with lib.maintainers; [ nh2 ]; platforms = platforms.linux;
maintainers = with maintainers; [ nh2 ];
}; };
} }